Service | Microsoft Docs article | Related commit history on GitHub | Change details |
---|---|---|---|
v1.0 | Administrativeunit Post Members | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/administrativeunit-post-members.md | POST /administrativeUnits/{id}/members In the request body, provide the `id` of a [user](../resources/user.md), [group](../resources/group.md), [device](../resources/device.md), or [directoryObject](../resources/directoryobject.md) to be added. ### Creating a new group-The following table shows the properties of the [group](../resources/group.md) resource to specify when you create a group in the administrative unit. +The following table shows the properties of the [group](../resources/group.md) resource to specify when you create a group in the administrative unit. | Property | Type | Description| |:|:--|:-| The following table shows the properties of the [group](../resources/group.md) r If successful, adding an existing object (using `$ref`) returns `204 No Content` response code. It does not return anything in the response body. -When creating a new group (without `$ref`), this method returns a `201 Created` response code and a [group](../resources/group.md) object in the response body. The response includes only the default properties of the group. +When creating a new group (without `$ref`), this method returns a `201 Created` response code and a [group](../resources/group.md) object in the response body. The response includes only the default properties of the group. You must supply the `"@odata.type" : "#microsoft.graph.group"` line in the request body to explicitly identify the new member as a group. A request body without the correct @odata.type returns a `400 Bad Request` error message. ## Examples ### Example 1: Add an existing user or group HTTP/1.1 204 No Content ``` ### Example 2: Create a new group-The following example creates a new group in the administrative unit. +The following example creates a new group in the administrative unit. You must supply the `"@odata.type" : "#microsoft.graph.group"` line in the request body to explicitly identify the new member as a group. A request body without the correct @odata.type returns a `400 Bad Request` error message. #### Request The following is an example of the request. The following is an example of the request. ``` http POST https://graph.microsoft.com/beta/administrativeUnits/{id}/members Content-type: application/json-Content-length: 244 {- "@odata.type": "#Microsoft.Graph.Group", + "@odata.type": "#microsoft.graph.group", "description": "Self help community for golf", "displayName": "Golf Assist", "groupTypes": [ |
v1.0 | Appcatalogs List Teamsapps | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/appcatalogs-list-teamsapps.md | Namespace: microsoft.graph List [apps](../resources/teamsapp.md) from the Microsoft Teams app catalog. This includes apps from the Microsoft Teams store, as well as 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. -> [!NOTE] -> The `id` of a **teamsApp** resource is generated by the server and is not the same as the `id` specified in a Teams app manifest. The `id` provided by the developer as part of the Teams app manifest is stamped as the `externalId` in the **teamsApp** resource. +> [!NOTE] +> In general, the **id** of a **teamsApp** resource is generated by the server. It is not the same as the **id** specified in a Teams app manifest, unless its **distributionMethod** is `store`. For other cases, the **id** provided by the developer as part of the Teams app manifest is stamped as the **externalId** in the **teamsApp** resource. ## Permissions The following example lists all applications that are specific to your tenant. #### Request +The following is an example of a request. # [HTTP](#tab/http) <!-- { GET https://graph.microsoft.com/beta/appCatalogs/teamsApps?$filter=distributionM #### Response +The following is an example of the response. + <!-- { "blockType": "response", "@odata.type": "microsoft.graph.teamsApp", Content-Type: application/json { "id": "b1c5353a-7aca-41b3-830f-27d5218fe0e5", "externalId": "f31b1263-ba99-435a-a679-911d24850d7c",- "name": "Test App", - "version": "1.0.1", - "distributionMethod": "Organization" + "displayName": "Test App", + "distributionMethod": "organization" } ] } The following example lists applications with a given ID. #### Request +The following is an example of a request. # [HTTP](#tab/http) <!-- { The following example lists applications with a given ID. }--> ```msgraph-interactive-GET https://graph.microsoft.com/beta/appCatalogs/teamsApps?$filter=id%20eq%20'b1c5353a-7aca-41b3-830f-27d5218fe0e5' +GET https://graph.microsoft.com/beta/appCatalogs/teamsApps?$filter=id eq 'b1c5353a-7aca-41b3-830f-27d5218fe0e5' ``` # [C#](#tab/csharp) GET https://graph.microsoft.com/beta/appCatalogs/teamsApps?$filter=id%20eq%20'b1 #### Response +The following is an example of the response. + <!-- { "blockType": "response", "name": "list_teamsapp_filter_id", Content-Type: application/json { "id": "b1c5353a-7aca-41b3-830f-27d5218fe0e5", "externalId": "f31b1263-ba99-435a-a679-911d24850d7c",- "name": "Test App", - "version": "1.0.1", - "distributionMethod": "Organization" + "displayName": "Test App", + "distributionMethod": "organization" } ] } ``` ### Example 3: Find application based on the Teams app manifest ID -The following example lists applications that match the 'id' specified in the Teams app manifest. In the example, the manifest ID of the Teams app is 'cf1ba4c7-f94e-4d80-ba90-5594b641a8ee'. +The following example lists applications that match the **id** specified in the Teams app manifest. In the example, the manifest ID of the Teams app is `cf1ba4c7-f94e-4d80-ba90-5594b641a8ee`. #### Request +The following is an example of a request. # [HTTP](#tab/http) <!-- { GET https://graph.microsoft.com/beta/appCatalogs/teamsApps?$filter=externalId e #### Response +The following is an example of the response. + <!-- { "blockType": "response", "name": "list_teamsapp_filter_externalid", Content-Type: application/json ### Example 4: List applications with a given ID, and return the submission review state -The following example lists applications with a given ID, and expands **appDefinitions** to return the **publishingState**, which reflects the app's submission review state. `Submitted` means the review is pending, `published` means the app was approved by the admin, and `rejected` means the app was rejected by the admin. +The following example lists applications with a given ID, and expands **appDefinitions** to return the **publishingState**, which reflects the submission review state of the app. `Submitted` means the review is pending, `published` means the app was approved by the admin, and `rejected` means the app was rejected by the admin. #### Request +The following is an example of a request. # [HTTP](#tab/http) <!-- { GET https://graph.microsoft.com/beta/appCatalogs/teamsApps?$filter=id eq '876df #### Response +The following is an example of the response. + <!-- { "blockType": "response", "name": "list_teamsapp_with_filter_expand_appdefinitions", Content-Type: application/json { "id": "876df28f-2e78-423b-94a5-44181bd0e225", "externalId": "f31b1263-ba99-435a-a679-911d24850d7c",- "name": "Test App", - "version": "1.0.1", - "distributionMethod": "Organization", + "displayName": "Test App", + "distributionMethod": "organization", "appDefinitions": [ { "id": "NGQyMGNiNDUtZWViYS00ZTEyLWE3YzktMGQ0NDgzYjYxNzU2IyMxLjAuMA==", The following example lists only those apps in the catalog that contain a bot. #### Request +The following is an example of a request. # [HTTP](#tab/http) <!-- { GET https://graph.microsoft.com/beta/appCatalogs/teamsApps?$expand=appDefinitio #### Response +The following is an example of the response. + <!-- { "blockType": "response", "name": "list_teamsapp_with_bots", The following example lists only those apps that can be installed in the persona #### Request +The following is an example of a request. # [HTTP](#tab/http) <!-- { GET https://graph.microsoft.com/beta/appCatalogs/teamsApps?$expand=appDefinitio - #### Response +The following is an example of the response. + <!-- { "blockType": "response", "name": "list_teamsapp_in_personal_scope", |
v1.0 | Application Post Onlinemeetings | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/application-post-onlinemeetings.md | The following is an example of the response. } ``` -<!-- uuid: 8fcb5dbc-d5aa-4681-8e31-b001d5168d79 -2015-10-25 14:57:30 UTC --> -<!-- -{ - "type": "#page.annotation", - "description": "Create onlineMeeting", - "keywords": "", - "section": "documentation", - "tocPath": "", - "suppressions": [ - ] -} >- ### Example 3: Create an online meeting that requires a passcode The following example shows how to add a passcode to a meeting. The passcode is used when you join a meeting with a **joinMeetingId**. For more details, see [joinMeetingIdSettings](../resources/joinmeetingidsettings.md).+ #### Request The following is an example of a request. >**Note:** The passcode is automatically generated and a custom passcode is not supported. ++# [HTTP](#tab/http) +<!-- { + "blockType": "request", + "name": "create-online-meeting-with-passcode" +}--> + ```http POST https://graph.microsoft.com/beta/me/onlineMeetings Content-Type: application/json Content-Type: application/json } ``` +# [C#](#tab/csharp) ++# [JavaScript](#tab/javascript) ++# [Java](#tab/java) ++# [Go](#tab/go) ++# [PowerShell](#tab/powershell) ++# [PHP](#tab/php) ++++ #### Response The following is an example of the response. The following is an example of the response. >**Note:** The response object shown here might be shortened for readability. <!-- {- "blockType": "example", + "blockType": "response", "truncated": true, "@odata.type": "microsoft.graph.onlineMeeting" } --> Content-Type: application/json ### Example 4: Create an online meeting that does not require a passcode When **isPasscodeRequired** is set to `false` or when **joinMeetingIdSettings** is not specified in the request, the generated online meeting will not have a passcode.+ #### Request The following is an example of a request. ++# [HTTP](#tab/http) +<!-- { + "blockType": "request", + "name": "create-online-meeting-without-passcode" +}--> + ```http POST https://graph.microsoft.com/beta/me/onlineMeetings Content-Type: application/json Content-Type: application/json } ``` +# [C#](#tab/csharp) ++# [JavaScript](#tab/javascript) ++# [Java](#tab/java) ++# [Go](#tab/go) ++# [PowerShell](#tab/powershell) ++# [PHP](#tab/php) ++++ or ```http The following is an example of the response. >**Note:** The response object shown here might be shortened for readability. <!-- {- "blockType": "example", + "blockType": "response", "truncated": true, "@odata.type": "microsoft.graph.onlineMeeting" } --> Content-Type: application/json } } ```++<!-- uuid: 8fcb5dbc-d5aa-4681-8e31-b001d5168d79 +2015-10-25 14:57:30 UTC --> +<!-- +{ + "type": "#page.annotation", + "description": "Create onlineMeeting", + "keywords": "", + "section": "documentation", + "tocPath": "", + "suppressions": [ + ] +} +--> |
v1.0 | Attacksimulationroot Create Simulation | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/attacksimulationroot-create-simulation.md | + + Title: "Create simulation" +description: "Create an attack simulation campaign for a tenant." ++ms.localizationpriority: medium +++# Create simulation ++Namespace: microsoft.graph +++Create an attack simulation campaign for a tenant. ++## Permissions ++One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). ++| Permission type | Permissions (from least to most privileged) | +|:|:--| +| Delegated (work or school account) | AttackSimulation.ReadWrite.All | +| Delegated (personal Microsoft account) | Not supported. | +| Application | AttackSimulation.ReadWrite.All | ++## HTTP request +<!-- { + "blockType": "ignored" +} +--> +```http +POST /security/attackSimulation/simulations +``` ++## Request headers ++|Header |Value | +||-| +|Authorization |Bearer {token}. Required.| +|Content-Type |application/json | ++## Request body ++In the request body, supply a JSON representation of a [simulation](../resources/simulation.md) object. ++The following table shows the properties that are required when you create the simulation. ++| Property | Type | Description | +|:-|:|:| +|attackTechnique|[simulationAttackTechnique](../resources/simulation.md#simulationattacktechnique-values)|The social engineering technique used in the attack simulation and training campaign. Supports `$filter` and `$orderby`. Possible values are: `unknown`, `credentialHarvesting`, `attachmentMalware`, `driveByUrl`, `linkInAttachment`, `linkToMalwareFile`, `unknownFutureValue`. For more information on the types of social engineering attack techniques, see [simulations](/microsoft-365/security/office-365-security/attack-simulation-training-get-started?view=o365-worldwide&preserve-view=true#simulations).| +|attackType|[simulationAttackType](../resources/simulation.md#simulationattacktype-values)|Attack type of the attack simulation and training campaign. Supports `$filter` and `$orderby`. Possible values are: `unknown`, `social`, `cloud`, `endpoint`, `unknownFutureValue`.| +|completionDateTime|DateTimeOffset|Date and time of completion of the attack simulation and training campaign. Supports `$filter` and `$orderby`.| +|createdBy|[emailIdentity](../resources/emailidentity.md)|Identity of the user who created the attack simulation and training campaign.| +|createdDateTime|DateTimeOffset|Date and time of creation of the attack simulation and training campaign.| +|displayName|String|Display name of the attack simulation and training campaign. Supports `$filter` and `$orderby`.| +|durationInDays|Int32|Simulation duration in days.| +|includedAccountTarget|[accountTargetContent](../resources/accounttargetcontent.md)|Users targeted in the simulation.| +|lastModifiedBy|[emailIdentity](../resources/emailidentity.md)|Identity of the user who most recently modified the attack simulation and training campaign.| +|launchDateTime|DateTimeOffset|Date and time of the launch/start of the attack simulation and training campaign. Supports `$filter` and `$orderby`.| +|payloadDeliveryPlatform|payloadDeliveryPlatform|Method of delivery of the phishing payload used in the attack simulation and training campaign. Possible values are: `unknown`, `sms`, `email`, `teams`, `unknownFutureValue`.| +|status|[simulationStatus](../resources/simulation.md#simulationstatus-values)|Status of the attack simulation and training campaign. Supports `$filter` and `$orderby`. Possible values are: `unknown`, `draft`, `running`, `scheduled`, `succeeded`, `failed`, `cancelled`, `excluded`, `unknownFutureValue`.| ++## Response ++If successful, this method returns a `202 Accepted` response code and a tracking header named `location` in the response. ++## Examples ++### Request ++The following is an example of a request. ++<!-- { + "blockType": "request", + "name": "create_simulation" +} +--> +```http +POST https://graph.microsoft.com/beta/security/attackSimulation/simulations +Content-type: application/json ++{ + "displayName": "Graph Simulation", + "payloadDeliveryPlatform": "email", + "payload@odata.bind":"https://graph.microsoft.com/beta/security/attacksimulation/payloads/12345678-9abc-def0-123456789a", + "durationInDays": 7, + "attackTechnique": "credentialHarvesting", + "attackType": "social", + "status": "scheduled", + "completionDateTime": "2022-09-16T06:13:08.4297612Z", + "launchDateTime": "2022-09-05T06:13:08.4297612Z", + "includedAccountTarget": { + "@odata.type": "#microsoft.graph.addressBookAccountTargetContent", + "type" : "addressBook", + "accountTargetEmails" : [ + "john@contoso.com" + ] + }, +} +``` ++### Response ++The following is an example of the response. ++> **Note**: The response object shown here might be shortened for readability. ++<!-- { + "blockType": "response", + "truncated": true +} +--> ++```http +HTTP/1.1 202 Accepted +``` |
v1.0 | Attacksimulationroot Delete Simulation | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/attacksimulationroot-delete-simulation.md | + + Title: "Delete simulation" +description: "Delete an attack simulation campaign for a tenant." ++ms.localizationpriority: medium +++# Delete simulation ++Namespace: microsoft.graph +++Delete an attack simulation campaign for a tenant. ++## Permissions ++One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). ++| Permission type | Permissions (from least to most privileged) | +|:|:--| +| Delegated (work or school account) | AttackSimulation.ReadWrite.All | +| Delegated (personal Microsoft account) | Not supported. | +| Application | AttackSimulation.ReadWrite.All | ++## HTTP request +<!-- { + "blockType": "ignored" +} +--> +```http +DELETE /security/attackSimulation/simulations/{simulationId} +``` ++## Request headers ++|Header |Value | +||-| +|Authorization |Bearer {token}. Required.| ++## Request body ++Do not supply a request body for this method. ++## Response ++If successful, this method returns a `204 No Content` response code in the response. ++## Examples ++### Request ++The following is an example of a request. ++<!-- { + "blockType": "request", + "name": "delete_simulation", + "sampleKeys": ["2f5548d1-0dd8-4cc8-9de0-e0d6ec7ea3dc"] +} +--> +```http +DELETE https://graph.microsoft.com/beta/security/attackSimulation/simulations/2f5548d1-0dd8-4cc8-9de0-e0d6ec7ea3dc +``` ++### Response ++The following is an example of the response. ++<!-- { + "blockType": "response", + "truncated": true +} +--> +``` http +HTTP/1.1 204 No Content +``` |
v1.0 | Attacksimulationroot Get Excludedaccounttarget | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/attacksimulationroot-get-excludedaccounttarget.md | + + Title: "Get excludedAccountTarget" +description: "Get excluded account targets (users) for an attack simulation campaign for a tenant." ++ms.localizationpriority: medium +++# Get excludedAccountTarget ++Namespace: microsoft.graph +++Get excluded account targets (users) for an attack simulation campaign for a tenant. ++## Permissions ++One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). ++| Permission type | Permissions (from least to most privileged) | +|:|:--| +| Delegated (work or school account) | AttackSimulation.Read.All | +| Delegated (personal Microsoft account) | Not supported. | +| Application | AttackSimulation.Read.All | ++## HTTP request ++<!-- { + "blockType": "ignored" +} +--> +``` http +GET /security/attackSimulation/simulations/{simulationId}/excludedaccounttarget +``` ++## Request headers ++|Name|Description| +|:|:| +|Authorization|Bearer {token}. Required.| ++## Request body ++Do not supply a request body for this method. ++## Response ++If successful, this method returns a `200 OK` response code and an [accountTargetContent](../resources/accounttargetcontent.md) object in the response body. ++## Examples ++### Request ++The following is an example of a request. ++<!-- { + "blockType": "request", + "name": "get_excludedaccounttarget", + "sampleKeys": ["f1b13829-3829-f1b1-2938-b1f12938b1a"] +} +--> +``` http +GET https://graph.microsoft.com/beta/security/attackSimulation/simulations/f1b13829-3829-f1b1-2938-b1f12938b1a/excludedAccountTarget +``` ++### Response ++The following is an example of the response. ++>**Note:** The response object shown here might be shortened for readability. +<!-- { + "blockType": "response", + "truncated": true, + "@odata.type": "microsoft.graph.accountTargetContent" +} +--> +``` http +HTTP/1.1 200 OK +Content-Type: application/json ++{ + "@odata.type": "#microsoft.graph.addressbookaccounttargetcontent", + "type" : "addressBook", + "accountTargetEmails" : [ + "john@contoso.com" + ] +} +``` |
v1.0 | Attacksimulationroot Get Includedaccounttarget | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/attacksimulationroot-get-includedaccounttarget.md | + + Title: "Get includedAccountTarget" +description: "Get included account targets (users) for an attack simulation campaign for a tenant." ++ms.localizationpriority: medium +++# Get includedAccountTarget ++Namespace: microsoft.graph +++Get included account targets (users) for an attack simulation campaign for a tenant. ++## Permissions ++One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). ++| Permission type | Permissions (from least to most privileged) | +|:|:--| +| Delegated (work or school account) | AttackSimulation.Read.All | +| Delegated (personal Microsoft account) | Not supported. | +| Application | AttackSimulation.Read.All | ++## HTTP request ++<!-- { + "blockType": "ignored" +} +--> +``` http +GET /security/attackSimulation/simulations/{simulationId}/includedaccounttarget +``` ++## Request headers ++|Name|Description| +|:|:| +|Authorization|Bearer {token}. Required.| ++## Request body ++Do not supply a request body for this method. ++## Response ++If successful, this method returns a `200 OK` response code and an [accountTargetContent](../resources/accounttargetcontent.md) object in the response body. ++## Examples ++### Request ++The following is an example of a request. ++<!-- { + "blockType": "request", + "name": "get_includedaccounttarget", + "sampleKeys": ["f1b13829-3829-f1b1-2938-b1f12938b1a"] +} +--> +``` http +GET https://graph.microsoft.com/beta/security/attackSimulation/simulations/f1b13829-3829-f1b1-2938-b1f12938b1a/includedAccountTarget +``` ++### Response ++The following is an example of the response. ++>**Note:** The response object shown here might be shortened for readability. +<!-- { + "blockType": "response", + "truncated": true, + "@odata.type": "microsoft.graph.accountTargetContent" +} +--> +``` http +HTTP/1.1 200 OK +Content-Type: application/json ++{ + "@odata.type": "#microsoft.graph.addressbookaccounttargetcontent", + "type" : "addressBook", + "accountTargetEmails" : [ + "john@contoso.com" + ] +} +``` |
v1.0 | Attacksimulationroot Get Operation | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/attacksimulationroot-get-operation.md | + + Title: "Get attackSimulationOperation" +description: "Get an attack simulation operation to track a long-running operation request for a tenant." ++ms.localizationpriority: medium +++# Get attackSimulationOperation ++Namespace: microsoft.graph +++Get an attack simulation operation to track a long-running operation request for a tenant. ++## Permissions ++One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). ++| Permission type | Permissions (from least to most privileged) | +|:|:--| +| Delegated (work or school account) | AttackSimulation.Read.All | +| Delegated (personal Microsoft account) | Not supported. | +| Application | AttackSimulation.Read.All | ++## HTTP request ++<!-- { + "blockType": "ignored" +} +--> +``` http +GET /security/attackSimulation/operations/{operationsId} +``` ++## Request headers ++|Name|Description| +|:|:| +|Authorization|Bearer {token}. Required.| ++## Request body ++Do not supply a request body for this method. ++## Response ++If successful, this method returns a `200 OK` response code and an [attackSimulationOperation](../resources/attacksimulationoperation.md) object in the response body. ++## Examples ++### Request ++The following is an example of a request. ++<!-- { + "blockType": "request", + "name": "get_attackSimulationOperation", + "sampleKeys": ["f1b13829-3829-f1b1-2938-b1f12938b1a"] +} +--> +``` http +GET https://graph.microsoft.com/beta/security/attackSimulation/operations/f1b13829-3829-f1b1-2938-b1f12938b1a +``` ++### Response ++The following is an example of the response. ++>**Note:** The response object shown here might be shortened for readability. +<!-- { + "blockType": "response", + "truncated": true, + "@odata.type": "microsoft.graph.attackSimulationOperation" +} +--> +``` http +HTTP/1.1 200 OK +Content-Type: application/json ++{ + "id": "2f5548d1-0dd8-4cc8-9de0-e0d6ec7ea3dc", + "tenantId": "2f5548d1-0dd8-4cc8-9de0-e0d6ec7ea3ss", + "statusDetail": "Creating new simulation", + "createdDateTime": "2022-01-12T05:27:18.7957961Z", + "lastActionDateTime": "2022-01-12T05:27:18.7957961Z", + "type": "createSimulation", + "status": "notStarted", + "percentageCompleted": 0 +} +``` |
v1.0 | Attacksimulationroot Get Payload | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/attacksimulationroot-get-payload.md | + + Title: "Get payload" +description: "Get an attack simulation campaign payload for a tenant." ++ms.localizationpriority: medium +++# Get payload ++Namespace: microsoft.graph +++Get an attack simulation campaign payload for a tenant. ++## Permissions ++One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). ++| Permission type | Permissions (from least to most privileged) | +|:|:--| +| Delegated (work or school account) | AttackSimulation.Read.All | +| Delegated (personal Microsoft account) | Not supported. | +| Application | AttackSimulation.Read.All | ++## HTTP request ++<!-- { + "blockType": "ignored" +} +--> +``` http +GET /security/attackSimulation/payloads/{payloadId} +``` ++## Optional query parameters ++This method supports the `$count`, `$filter`, `$orderby`, `$skipToken`, `$top`, and `$select` [OData query parameters](/graph/query-parameters) to help customize the response. You can use the `$filter` and `$orderby` query parameters on the **attackTechnique**, **attackType**, **completionDateTime**, **displayName**, **isAutomated**, **launchDateTime**, and **status** properties. ++If the result set spans multiple pages, the response body contains an `@odata.nextLink` that you can use to page through the result set. ++The following are examples of their use: ++<!-- { + "blockType": "ignored" +} +--> +``` http +GET /security/attackSimulation/payloads/{payloadId}?$count=true +GET /security/attackSimulation/payloads/{payloadId}?$filter={property} eq '{property-value}' +GET /security/attackSimulation/payloads/{payloadId}?$filter={property} eq '{property-value}'&$top=5 +GET /security/attackSimulation/payloads/{payloadId}?$orderby={property} +GET /security/attackSimulation/payloads/{payloadId}?$skipToken={skipToken} +GET /security/attackSimulation/payloads/{payloadId}?$top=1 +GET /security/attackSimulation/payloads/{payloadId}?$select={property} +``` ++## Request headers ++|Name|Description| +|:|:| +|Authorization|Bearer {token}. Required.| ++## Request body ++Do not supply a request body for this method. ++## Response ++If successful, this method returns a `200 OK` response code and a [payload](../resources/payload.md) object in the response body. ++## Examples ++### Request ++The following is an example of a request. ++<!-- { + "blockType": "request", + "name": "get_payload", + "sampleKeys": ["f1b13829-3829-f1b1-2938-b1f12938b1a"] +} +--> +``` http +GET https://graph.microsoft.com/beta/security/attackSimulation/payload/f1b13829-3829-f1b1-2938-b1f12938b1a +``` ++### Response ++The following is an example of the response. ++>**Note:** The response object shown here might be shortened for readability. +<!-- { + "blockType": "response", + "truncated": true, + "@odata.type": "microsoft.graph.payload" +} +--> +``` http +HTTP/1.1 200 OK +Content-Type: application/json ++{ + "@odata.context": "https://graph.microsoft.com/beta/$metadata#security/attackSimulation/payloads/2f5548d1-0dd8-4cc8-9de0-e0d6ec7ea3dc", + "id": "2f5548d1-0dd8-4cc8-9de0-e0d6ec7ea3dc", + "name": "AttackSimTest Payload", + "description": "AttackSim Test Payload", + "simulationAttackType": "social", + "platform": "email", + "isAutomated": null, + "status": "draft", + "source": "tenant", + "language": "en", + "predictedCompromiseRate": 20.0, + "complexity": "medium", + "attackTechnique": "credentialHarvesting", + "createdBy": { + "email": "faiza@contoso.com", + "id": "121212", + "displayName": "Faiza" + }, + "createdDateTime": "2022-01-12T03:15:01.5906699Z", + "lastModifiedBy": { + "email": "faiza@contoso.com", + "id": "121212", + "displayName": "Faiza" + }, + "lastModifiedDateTime": "2021-10-07T12:23:18.8157586Z", + "theme": "personalizedOffer", + "brand": "microsoft", + "industry": "IT", + "isCurrentEvent": false, + "isControversial": false, + "detail" : null, + "payloadTags": [] +} +``` |
v1.0 | Attacksimulationroot Get Payloadsdetails | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/attacksimulationroot-get-payloadsdetails.md | + + Title: "Get payloadDetail" +description: "Get an attack simulation campaign payload detail for a tenant." ++ms.localizationpriority: medium +++# Get payloadDetail ++Namespace: microsoft.graph +++Get an attack simulation campaign payload detail for a tenant. ++## Permissions ++One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). ++| Permission type | Permissions (from least to most privileged) | +|:|:--| +| Delegated (work or school account) | AttackSimulation.Read.All | +| Delegated (personal Microsoft account) | Not supported. | +| Application | AttackSimulation.Read.All | ++## HTTP request ++<!-- { + "blockType": "ignored" +} +--> +``` http +GET /security/attackSimulation/payloads/{payloadId}/detail +``` ++## Optional query parameters ++This method supports the `$count`, `$filter`, `$orderby`, `$skipToken`, `$top`, and `$select` [OData query parameters](/graph/query-parameters) to help customize the response. You can use the `$filter` and `$orderby` query parameters on the **attackTechnique**, **attackType**, **completionDateTime**, **displayName**, **isAutomated**, **launchDateTime**, and **status** properties. ++If the result set spans multiple pages, the response body contains an `@odata.nextLink` that you can use to page through the result set. ++The following are examples of their use: ++<!-- { + "blockType": "ignored" +} +--> +``` http +GET /security/attackSimulation/payloads/{payloadId}/detail?$count=true +GET /security/attackSimulation/payloads/{payloadId}/detail?$filter={property} eq '{property-value}' +GET /security/attackSimulation/payloads/{payloadId}/detail?$filter={property} eq '{property-value}'&$top=5 +GET /security/attackSimulation/payloads/{payloadId}/detail?$orderby={property} +GET /security/attackSimulation/payloads/{payloadId}/detail?$skipToken={skipToken} +GET /security/attackSimulation/payloads/{payloadId}/detail?$top=1 +GET /security/attackSimulation/payloads/{payloadId}/detail?$select={property} +``` ++## Request headers ++|Name|Description| +|:|:| +|Authorization|Bearer {token}. Required.| ++## Request body ++Do not supply a request body for this method. ++## Response ++If successful, this method returns a `200 OK` response code and a [payloadDetail](../resources/payloaddetail.md) object in the response body. ++## Examples ++### Request ++The following is an example of a request. ++<!-- { + "blockType": "request", + "name": "get_payloadDetail", + "sampleKeys": ["f1b13829-3829-f1b1-2938-b1f12938b1a"] +} +--> +``` http +GET https://graph.microsoft.com/beta/security/attackSimulation/payload/f1b13829-3829-f1b1-2938-b1f12938b1a/detail +``` ++### Response ++The following is an example of the response. ++>**Note:** The response object shown here might be shortened for readability. +<!-- { + "blockType": "response", + "truncated": true, + "@odata.type": "microsoft.graph.payloadDetail" +} +--> +``` http +HTTP/1.1 200 OK +Content-Type: application/json ++{ + "@odata.context": "https://graph.microsoft.com/beta/$metadata#security/attackSimulation/payloads/2f5548d1-0dd8-4cc8-9de0-e0d6ec7ea3dc/detail", + "fromName": "faiza", + "fromEmail": "faiza@contoso.com", + "addIsExternalSender": false, + "subject": "Payload Detail", + "content": "<meta http-equiv=\"Content-Type\" content=\"text/html>\">", + "phishingUrl": "http://www.widgetsinc10+.com", + "coachMarks": [ + { + "indicator": "URL hyperlinking", + "description": "URL hyperlinking hides the true URL behind text; the text can also look like another link", + "language": "en", + "order": "0", + "isValid": true, + "coachmarkLocation": { + "offset": 144, + "length": 6, + "type": "messageBody" + } + } + ] +} +``` |
v1.0 | Attacksimulationroot List Payloads | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/attacksimulationroot-list-payloads.md | + + Title: "List payloads" +description: "Get a list of payloads for attack simulation campaigns." ++ms.localizationpriority: medium +++# List payloads ++Namespace: microsoft.graph +++Get a list of payloads for attack simulation campaigns. This operation expects the mandatory parameter **source** to filter and query the respective data source. ++## Permissions ++One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). ++| Permission type | Permissions (from least to most privileged) | +|:|:--| +| Delegated (work or school account) | AttackSimulation.Read.All | +| Delegated (personal Microsoft account) | Not supported. | +| Application | AttackSimulation.Read.All | ++## HTTP request ++<!-- { + "blockType": "ignored" +} +--> +``` http +GET /security/attackSimulation/payloads?$filter=source eq 'Tenant' +``` ++## Optional query parameters ++This method supports the `$count`, `$filter`, `$orderby`, `$skipToken`, `$top`, and `$select` [OData query parameters](/graph/query-parameters) to help customize the response. You can use the `$filter` and `$orderby` query parameters on the **attackTechnique**, **attackType**, **completionDateTime**, **displayName**, **isAutomated**, **launchDateTime**, and **status** properties. ++If the result set spans multiple pages, the response body contains an `@odata.nextLink` that you can use to page through the result set. ++The following are examples of their use: ++<!-- { + "blockType": "ignored" +} +--> +``` http +GET /security/attackSimulation/payloads?$filter=source eq 'Tenant' and $count=true +GET /security/attackSimulation/payloads?$filter=source eq 'Tenant' and $filter={property} eq '{property-value}' +GET /security/attackSimulation/payloads?$filter=source eq 'Tenant' and $filter={property} eq '{property-value}'&$top=5 +GET /security/attackSimulation/payloads?$filter=source eq 'Tenant' and $orderby={property} +GET /security/attackSimulation/payloads?$filter=source eq 'Tenant' and $skipToken={skipToken} +GET /security/attackSimulation/payloads?$filter=source eq 'Tenant' and $top=1 +GET /security/attackSimulation/payloads?$filter=source eq 'Tenant' and $select={property} +``` ++## Request headers ++|Name|Description| +|:|:| +|Authorization|Bearer {token}. Required.| ++## Request body ++Do not supply a request body for this method. ++## Response ++If successful, this method returns a `200 OK` response code and a collection of [payload](../resources/payload.md) objects in the response body. ++## Examples ++### Request ++The following is an example of a request. ++<!-- { + "blockType": "request", + "name": "list_payload" +} +--> +``` http +GET https://graph.microsoft.com/beta/security/attackSimulation/payloads?$filter=source eq 'Tenant' +``` ++### Response ++The following is an example of a response. ++>**Note:** The response object shown here might be shortened for readability. +<!-- { + "blockType": "response", + "truncated": true, + "@odata.type": "Collection(microsoft.graph.payload)" +} +--> +``` http +HTTP/1.1 200 OK +Content-Type: application/json ++{ + "@odata.context": "https://graph.microsoft.com/beta/$metadata#security/attackSimulation/payloads?$filter=source eq 'Tenant'", + "@odata.nextLink": "https://graph.microsoft.com/beta/security/attackSimulation/payloads?$filter=source+eq+%27Tenant%27&$skiptoken=MyZRVkZCUVVGQlFVRXZMeTh2THk4dkx5OHZPSGxCUVVGQk4yZDZMMFZwZFRjcmF6WjJURk14TWtKVk9WYzNaejA5", + "value": [ + { + "id": "2f5548d1-0dd8-4cc8-9de0-e0d6ec7ea3dc", + "name": "AttackSimTest Payload", + "description": "AttackSim Test Payload", + "attackType": "social", + "platform": "email", + "isAutomated": null, + "status": "draft", + "source": "tenant", + "language": "en", + "predictedCompromiseRate": 20.0, + "complexity": "medium", + "attackTechnique": "credentialHarvesting", + "createdBy": { + "email": "faiza@contoso.com", + "id": "121212", + "displayName": "Faiza" + }, + "createdDateTime": "2022-01-12T03:15:01.5906699Z", + "lastModifiedBy": { + "email": "faiza@contoso.com", + "id": "121212", + "displayName": "Faiza" + }, + "lastModifiedDateTime": "2021-10-07T12:23:18.8157586Z", + "theme": "personalizedOffer", + "Brand": "microsoft", + "payloadIndustry": "IT", + "isCurrentEvent": false, + "isControversial": false, + "payloadTags": [], + "detail" : null + } + ] +} +``` |
v1.0 | Attacksimulationroot List Simulations | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/attacksimulationroot-list-simulations.md | Content-Type: application/json }, "launchDateTime": "2021-01-01T02:01:01.01Z", "completionDateTime": "2021-01-07T01:01:01.01Z",+ "durationInDays": 4, "isAutomated": false, "automationId": "f1b13829-3829-f1b1-2938-b1f12938b1ab", "payloadDeliveryPlatform": "email" |
v1.0 | Attacksimulationroot Update Simulation | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/attacksimulationroot-update-simulation.md | + + Title: "Update simulation" +description: "Update an attack simulation campaign for a tenant." ++ms.localizationpriority: medium +++# Update simulation ++Namespace: microsoft.graph +++Update an attack simulation campaign for a tenant. ++## Permissions ++One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). ++| Permission type | Permissions (from least to most privileged) | +|:|:--| +| Delegated (work or school account) | AttackSimulation.ReadWrite.All | +| Delegated (personal Microsoft account) | Not supported. | +| Application | AttackSimulation.ReadWrite.All | ++## HTTP request +<!-- { + "blockType": "ignored" +} +--> +```http +PATCH /security/attackSimulation/simulations/{simulationId} +``` ++## Request headers ++|Header |Value | +||-| +|Authorization |Bearer {token}. Required.| +|Content-Type |application/json | ++## Request body +++|Property|Type|Description| +|:|:|:| +|attackTechnique|[simulationAttackTechnique](../resources/simulation.md#simulationattacktechnique-values)|The social engineering technique used in the attack simulation and training campaign. Supports `$filter` and `$orderby`. Possible values are: `unknown`, `credentialHarvesting`, `attachmentMalware`, `driveByUrl`, `linkInAttachment`, `linkToMalwareFile`, `unknownFutureValue`. For more information on the types of social engineering attack techniques, see [simulations](/microsoft-365/security/office-365-security/attack-simulation-training-get-started?view=o365-worldwide&preserve-view=true#simulations).| +|attackType|[simulationAttackType](../resources/simulation.md#simulationattacktype-values)|Attack type of the attack simulation and training campaign. Supports `$filter` and `$orderby`. Possible values are: `unknown`, `social`, `cloud`, `endpoint`, `unknownFutureValue`.| +|completionDateTime|DateTimeOffset|Date and time of completion of the attack simulation and training campaign. Supports `$filter` and `$orderby`.| +|description|String|Description of the attack simulation and training campaign.| +|displayName|String|Display name of the attack simulation and training campaign. Supports `$filter` and `$orderby`.| +|durationInDays|Int32|Simulation duration in days.| +|excludedAccountTarget|[accountTargetContent](../resources/accounttargetcontent.md)|Users excluded from the simulation.| +|includedAccountTarget|[accountTargetContent](../resources/accounttargetcontent.md)|Users targeted in the simulation.| +|lastModifiedBy|[emailIdentity](../resources/emailidentity.md)|Identity of the user who most recently modified the attack simulation and training campaign.| +|lastModifiedDateTime|DateTimeOffset|Date and time of the most recent modification of the attack simulation and training campaign.| +|launchDateTime|DateTimeOffset|Date and time of the launch/start of the attack simulation and training campaign. Supports `$filter` and `$orderby`.| +|payloadDeliveryPlatform|payloadDeliveryPlatform|Method of delivery of the phishing payload used in the attack simulation and training campaign. Possible values are: `unknown`, `sms`, `email`, `teams`, `unknownFutureValue`.| +|status|[simulationStatus](../resources/simulation.md#simulationstatus-values)|Status of the attack simulation and training campaign. Supports `$filter` and `$orderby`. Possible values are: `unknown`, `draft`, `running`, `scheduled`, `succeeded`, `failed`, `cancelled`, `excluded`, `unknownFutureValue`.| ++## Response ++If successful, this method returns a `202 Accepted` response code and a tracking header named `location` in the response. ++## Examples ++### Request ++The following is an example of a request. ++<!-- { + "blockType": "request", + "name": "update_simulation", + "sampleKeys": ["2f5548d1-0dd8-4cc8-9de0-e0d6ec7ea3dc"] +} +--> +```http +PATCH https://graph.microsoft.com/beta/security/attackSimulation/simulations/2f5548d1-0dd8-4cc8-9de0-e0d6ec7ea3dc +Content-type: application/json ++{ + "id": "2f5548d1-0dd8-4cc8-9de0-e0d6ec7ea3dc", + "displayName": "Graph Simulation", + "description": "Test simulation created using postman", + "payloadDeliveryPlatform": "email", + "payload@odata.bind":"https://graph.microsoft.com/beta/security/attacksimulation/payloads/12345678-9abc-def0-123456789a", + "durationInDays": 7, + "attackTechnique": "credentialHarvesting", + "attackType": "social", + "status": "scheduled", + "completionDateTime": "2022-09-16T06:13:08.4297612Z", + "launchDateTime": "2022-09-05T06:13:08.4297612Z", + "includedAccountTarget": { + "@odata.type": "#microsoft.graph.addressBookAccountTargetContent", + "type" : "addressBook", + "accountTargetEmails" : [ + "faiza@contoso.com" + ] + }, + "excludedAccountTarget": { + "@odata.type": "#microsoft.graph.addressBookAccountTargetContent", + "type" : "addressBook", + "accountTargetEmails" : [ + "sam@contoso.com" + ] + } +} +``` ++### Response ++The following is an example of the response. ++> **Note**: The response object shown here might be shortened for readability. ++<!-- { + "blockType": "response", + "truncated": true +} +--> ++```http +HTTP/1.1 202 Accepted +``` |
v1.0 | Authentication List Methods | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/authentication-list-methods.md | Title: "List methods" -description: "Retrieve a list of authentication method objects." +description: "Retrieve a list of authentication methods registered to a user." ms.localizationpriority: medium ms.prod: "identity-and-sign-in" Namespace: microsoft.graph [!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] -Retrieve a list of [authenticationMethod](../resources/authenticationmethod.md) objects. This API returns only authentication methods supported on this API version. See [Azure AD authentication methods API overview](../resources/authenticationmethods-overview.md) for a list of currently supported methods. -+Retrieve a list of authentication methods registered to a user. The authentication methods are defined by the types derived from the [authenticationMethod](../resources/authenticationmethod.md) resource type, and only the methods supported on this API version. See [Azure AD authentication methods API overview](../resources/authenticationmethods-overview.md) for a list of currently supported methods. ## Permissions |
v1.0 | Businessscenario Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/businessscenario-delete.md | + + Title: "Delete businessScenario" +description: "Delete a businessScenario object." ++ms.localizationpriority: medium +++# Delete businessScenario ++Namespace: microsoft.graph +++Delete a [businessScenario](../resources/businessscenario.md) object. The deletion of a scenario causes all data associated with the scenario to be deleted. ++## Permissions ++One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). ++|Permission type|Permissions (from least to most privileged)| +|:|:| +|Delegated (work or school account)|BusinessScenarioConfig.ReadWrite.OwnedBy, BusinessScenarioConfig.ReadWrite.All| +|Delegated (personal Microsoft account)|Not supported.| +|Application| BusinessScenarioConfig.ReadWrite.OwnedBy| ++## HTTP request ++<!-- { + "blockType": "ignored" +} +--> +``` http +DELETE /solutions/businessScenarios/{businessScenarioId} +``` ++## Request headers ++|Name|Description| +|:|:| +|Authorization|Bearer {token}. Required.| ++## Request body ++Do not supply a request body for this method. ++## Response ++If successful, this method returns a `204 No Content` response code. ++## Examples ++### Request ++The following is an example of a request. ++# [HTTP](#tab/http) +<!-- { + "blockType": "request", + "name": "delete_businessscenario", + "sampleKeys": ["c5d514e6c6864911ac46c720affb6e4d"] +} +--> +``` http +DELETE https://graph.microsoft.com/beta/solutions/businessScenarios/c5d514e6c6864911ac46c720affb6e4d +``` ++# [C#](#tab/csharp) ++# [JavaScript](#tab/javascript) ++# [Java](#tab/java) ++# [Go](#tab/go) ++# [PowerShell](#tab/powershell) ++# [PHP](#tab/php) +++++### Response ++The following is an example of the response. +<!-- { + "blockType": "response", + "truncated": true +} +--> +``` http +HTTP/1.1 204 No Content +``` |
v1.0 | Businessscenario Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/businessscenario-get.md | + + Title: "Get businessScenario" +description: "Read the properties and relationships of a businessScenario object." ++ms.localizationpriority: medium +++# Get businessScenario ++Namespace: microsoft.graph +++Read the properties and relationships of a [businessScenario](../resources/businessscenario.md) object. ++## Permissions ++One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). ++|Permission type|Permissions (from least to most privileged)| +|:|:| +|Delegated (work or school account)|BusinessScenarioConfig.Read.OwnedBy, BusinessScenarioConfig.ReadWrite.OwnedBy, BusinessScenarioConfig.Read.All, BusinessScenarioConfig.ReadWrite.All| +|Delegated (personal Microsoft account)|Not supported.| +|Application|BusinessScenarioConfig.Read.OwnedBy, BusinessScenarioConfig.ReadWrite.OwnedBy| ++## HTTP request ++<!-- { + "blockType": "ignored" +} +--> ++For a specific business scenario based on its ID (primary key): ++``` http +GET /solutions/businessScenarios/{businessScenarioId} +``` ++For a specific business scenario based on its unique name: ++``` http +GET /solutions/businessScenarios(uniqueName='{uniqueName}') +``` ++## Optional query parameters ++This method supports some of the OData query parameters to help customize the response. For general information, see [OData query parameters](/graph/query-parameters). ++## Request headers ++|Name|Description| +|:|:| +|Authorization|Bearer {token}. Required.| ++## Request body ++Do not supply a request body for this method. ++## Response ++If successful, this method returns a `200 OK` response code and a [businessScenario](../resources/businessscenario.md) object in the response body. ++## Examples ++### Request ++The following is an example of a request. ++# [HTTP](#tab/http) +<!-- { + "blockType": "request", + "name": "get_businessscenario", + "sampleKeys": ["c5d514e6c6864911ac46c720affb6e4d"] +} +--> +``` http +GET https://graph.microsoft.com/beta/solutions/businessScenarios/c5d514e6c6864911ac46c720affb6e4d +``` ++# [C#](#tab/csharp) ++# [JavaScript](#tab/javascript) ++# [Java](#tab/java) ++# [Go](#tab/go) ++# [PowerShell](#tab/powershell) ++# [PHP](#tab/php) +++++### Response ++The following is an example of the response. +>**Note:** The response object shown here might be shortened for readability. +<!-- { + "blockType": "response", + "truncated": true, + "@odata.type": "microsoft.graph.businessScenario" +} +--> +``` http +HTTP/1.1 200 OK +Content-Type: application/json ++{ + "@odata.type": "#microsoft.graph.businessScenario", + "id": "c5d514e6c6864911ac46c720affb6e4d", + "displayName": "Contoso Order Tracking", + "uniqueName": "com.contoso.apps.ordertracking", + "ownerAppIds": [ + "44109254-4b2b-7a33-76ee-c890a167b295" + ] +} +``` |
v1.0 | Businessscenario Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/businessscenario-update.md | + + Title: "Update businessScenario" +description: "Update the properties of a businessScenario object." ++ms.localizationpriority: medium +++# Update businessScenario ++Namespace: microsoft.graph +++Update the properties of a [businessScenario](../resources/businessscenario.md) object. ++## Permissions ++One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). ++|Permission type|Permissions (from least to most privileged)| +|:|:| +|Delegated (work or school account)|BusinessScenarioConfig.ReadWrite.OwnedBy, BusinessScenarioConfig.ReadWrite.All| +|Delegated (personal Microsoft account)|Not supported.| +|Application|BusinessScenarioConfig.ReadWrite.OwnedBy| ++## HTTP request ++<!-- { + "blockType": "ignored" +} +--> ++For a specific business scenario based on its ID (primary key): ++``` http +PATCH /solutions/businessScenarios/{businessScenarioId} +``` ++For a specific business scenario based on its unique name: ++``` http +PATCH /solutions/businessScenarios(uniqueName='{uniqueName}') +``` ++## Request headers ++|Name|Description| +|:|:| +|Authorization|Bearer {token}. Required.| +|Content-Type|application/json. Required.| ++## Request body +++|Property|Type|Description| +|:|:|:| +|displayName|String|Display name of the scenario. Required.| +|ownerAppIds|String collection|Identifiers of applications that are authorized to work with this scenario. The application that creates the scenario will be automatically added to the list. Optional.| ++## Response ++If successful, this method returns a `200 OK` response code and an updated [businessScenario](../resources/businessscenario.md) object in the response body. ++## Examples ++### Request ++The following is an example of a request. ++# [HTTP](#tab/http) +<!-- { + "blockType": "request", + "name": "update_businessscenario", + "sampleKeys": ["c5d514e6c6864911ac46c720affb6e4d"] +} +--> +``` http +PATCH https://graph.microsoft.com/beta/solutions/businessScenarios/c5d514e6c6864911ac46c720affb6e4d +Content-Type: application/json ++{ + "ownerAppIds": [ + "44109254-4b2b-7a33-76ee-c890a167b295", "13eb9d8b-1d63-4153-9417-3a69ab200a78" + ] +} +``` ++# [C#](#tab/csharp) ++# [JavaScript](#tab/javascript) ++# [Java](#tab/java) ++# [Go](#tab/go) ++# [PowerShell](#tab/powershell) ++# [PHP](#tab/php) +++++### Response ++The following is an example of the response. +>**Note:** The response object shown here might be shortened for readability. +<!-- { + "blockType": "response", + "truncated": true, + "@odata.type": "microsoft.graph.businessScenario" +} +--> +``` http +HTTP/1.1 200 OK +Content-Type: application/json ++{ + "@odata.type": "#microsoft.graph.businessScenario", + "id": "c5d514e6c6864911ac46c720affb6e4d", + "displayName": "Contoso Order Tracking", + "uniqueName": "com.contoso.apps.ordertracking", + "ownerAppIds": [ + "44109254-4b2b-7a33-76ee-c890a167b295", "13eb9d8b-1d63-4153-9417-3a69ab200a78" + ] +} +``` |
v1.0 | Businessscenarioplanner Delete Tasks | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/businessscenarioplanner-delete-tasks.md | + + Title: "Delete businessScenarioTask" +description: "Delete a businessScenarioTask object." ++ms.localizationpriority: medium +++# Delete businessScenarioTask ++Namespace: microsoft.graph +++Delete a [businessScenarioTask](../resources/businessscenariotask.md) object. ++## Permissions ++One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). ++|Permission type|Permissions (from least to most privileged)| +|:|:| +|Delegated (work or school account)|BusinessScenarioData.ReadWrite.OwnedBy| +|Delegated (personal Microsoft account)|Not supported.| +|Application| BusinessScenarioData.ReadWrite.OwnedBy| ++## HTTP request ++<!-- { + "blockType": "ignored" +} +--> +``` http +DELETE /solutions/businessScenarios/{businessScenarioId}/planner/tasks/{businessScenarioTaskId} +``` ++## Request headers ++|Name|Description| +|:|:| +|Authorization|Bearer {token}. Required.| ++## Request body ++Do not supply a request body for this method. ++## Response ++If successful, this method returns a `204 No Content` response code. ++## Examples ++### Request ++The following is an example of a request. ++# [HTTP](#tab/http) +<!-- { + "blockType": "request", + "name": "delete_businessscenariotask", + "sampleKeys": ["c5d514e6c6864911ac46c720affb6e4d", "pmc1rS1Io0C3rXQhyXIsNmUAOeIi"] +} +--> +``` http +DELETE https://graph.microsoft.com/beta/solutions/businessScenarios/c5d514e6c6864911ac46c720affb6e4d/planner/tasks/pmc1rS1Io0C3rXQhyXIsNmUAOeIi +``` ++# [C#](#tab/csharp) ++# [JavaScript](#tab/javascript) ++# [Java](#tab/java) ++# [Go](#tab/go) ++# [PowerShell](#tab/powershell) ++# [PHP](#tab/php) +++++### Response ++The following is an example of the response. +<!-- { + "blockType": "response", + "truncated": true +} +--> +``` http +HTTP/1.1 204 No Content +``` |
v1.0 | Businessscenarioplanner Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/businessscenarioplanner-get.md | + + Title: "Get businessScenarioPlanner" +description: "Read the properties and relationships of a businessScenarioPlanner object." ++ms.localizationpriority: medium +++# Get businessScenarioPlanner ++Namespace: microsoft.graph +++Read the properties and relationships of a [businessScenarioPlanner](../resources/businessscenarioplanner.md) object. ++## Permissions ++One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). ++|Permission type|Permissions (from least to most privileged)| +|:|:| +|Delegated (work or school account)|BusinessScenarioConfig.Read.OwnedBy, BusinessScenarioConfig.ReadWrite.OwnedBy, BusinessScenarioConfig.Read.All, BusinessScenarioConfig.ReadWrite.All| +|Delegated (personal Microsoft account)|Not supported.| +|Application|BusinessScenarioConfig.Read.OwnedBy, BusinessScenarioConfig.ReadWrite.OwnedBy| ++## HTTP request ++<!-- { + "blockType": "ignored" +} +--> +``` http +GET /solutions/businessScenarios/{businessScenarioId}/planner +``` ++## Optional query parameters ++This method supports some of the OData query parameters to help customize the response. For general information, see [OData query parameters](/graph/query-parameters). ++## Request headers ++|Name|Description| +|:|:| +|Authorization|Bearer {token}. Required.| ++## Request body ++Do not supply a request body for this method. ++## Response ++If successful, this method returns a `200 OK` response code and a [businessScenarioPlanner](../resources/businessscenarioplanner.md) object in the response body. ++## Examples ++### Request ++The following is an example of a request. ++# [HTTP](#tab/http) +<!-- { + "blockType": "request", + "name": "get_businessscenarioplanner", + "sampleKeys": ["c5d514e6c6864911ac46c720affb6e4d"] +} +--> +``` http +GET https://graph.microsoft.com/beta/solutions/businessScenarios/c5d514e6c6864911ac46c720affb6e4d/planner +``` ++# [C#](#tab/csharp) ++# [JavaScript](#tab/javascript) ++# [Java](#tab/java) ++# [Go](#tab/go) ++# [PowerShell](#tab/powershell) ++# [PHP](#tab/php) +++++### Response ++The following is an example of the response. +>**Note:** The response object shown here might be shortened for readability. +<!-- { + "blockType": "response", + "truncated": true, + "@odata.type": "microsoft.graph.businessScenarioPlanner" +} +--> +``` http +HTTP/1.1 200 OK +Content-Type: application/json ++{ + "@odata.type": "#microsoft.graph.businessScenarioPlanner", + "id": "54379e10-f935-5776-7a30-445837f15655" +} +``` |
v1.0 | Businessscenarioplanner Getplan | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/businessscenarioplanner-getplan.md | + + Title: "businessScenarioPlanner: getPlan" +description: "Get information about the plannerPlan mapped to a given target." ++ms.localizationpriority: medium +++# businessScenarioPlanner: getPlan ++Namespace: microsoft.graph +++Get information about the [plannerPlan](../resources/plannerplan.md) mapped to a given target. If a **plannerPlan** doesn't exist for the specified target at the time of the request, a new plan will be created for the [businessScenario](../resources/businessscenario.md). ++## Permissions ++One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). ++|Permission type|Permissions (from least to most privileged)| +|:|:| +|Delegated (work or school account)|BusinessScenarioData.Read.OwnedBy, BusinessScenarioData.ReadWrite.OwnedBy| +|Delegated (personal Microsoft account)|Not supported.| +|Application|BusinessScenarioData.Read.OwnedBy, BusinessScenarioData.ReadWrite.OwnedBy| ++## HTTP request ++<!-- { + "blockType": "ignored" +} +--> +``` http +POST /solutions/businessScenarios/{businessScenarioId}/planner/getPlan +``` ++## Request headers +|Name|Description| +|:|:| +|Authorization|Bearer {token}. Required.| +|Content-Type|application/json. Required.| ++## Request body +In the request body, supply a JSON representation of the parameters. ++The following table shows the parameter that can be used with this action. ++|Parameter|Type|Description| +|:|:|:| +|target|[businessScenarioTaskTargetBase](../resources/businessscenariotasktargetbase.md)|Target for which to get the plan information.| ++## Response ++If successful, this action returns a `200 OK` response code and a [businessScenarioPlanReference](../resources/businessscenarioplanreference.md) object in the response body. ++## Examples ++### Request ++The following is an example of a request. ++# [HTTP](#tab/http) +<!-- { + "blockType": "request", + "name": "businessscenarioplannerthis.getplan", + "sampleKeys": ["c5d514e6c6864911ac46c720affb6e4d"] +} +--> +``` http +POST https://graph.microsoft.com/beta/solutions/businessScenarios/c5d514e6c6864911ac46c720affb6e4d/planner/getPlan +Content-Type: application/json ++{ + "target": { + "@odata.type": "microsoft.graph.businessScenarioGroupTarget", + "taskTargetKind": "group", + "groupId": "7a339254-4b2b-4410-b295-c890a16776ee" + } +} +``` ++# [C#](#tab/csharp) ++# [JavaScript](#tab/javascript) ++# [Java](#tab/java) ++# [Go](#tab/go) ++# [PowerShell](#tab/powershell) ++# [PHP](#tab/php) +++++### Response ++The following is an example of the response. +>**Note:** The response object shown here might be shortened for readability. +<!-- { + "blockType": "response", + "truncated": true, + "@odata.type": "microsoft.graph.businessScenarioPlanReference" +} +--> +``` http +HTTP/1.1 200 OK +Content-Type: application/json ++{ + "@odata.type": "#microsoft.graph.businessScenarioPlanReference", + "id": "pmc1rS1Io0C3rXQhyXIsNmUAOeIi", + "title": "Order Tracking" +} +``` |
v1.0 | Businessscenarioplanner List Tasks | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/businessscenarioplanner-list-tasks.md | + + Title: "List businessScenarioTasks" +description: "Get a list of the businessScenarioTask objects and their properties." ++ms.localizationpriority: medium +++# List businessScenarioTasks +Namespace: microsoft.graph +++Get a list of the [businessScenarioTask](../resources/businessscenariotask.md) objects and their properties. ++## Permissions +One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). ++|Permission type|Permissions (from least to most privileged)| +|:|:| +|Delegated (work or school account)|BusinessScenarioData.Read.OwnedBy, BusinessScenarioData.ReadWrite.OwnedBy| +|Delegated (personal Microsoft account)|Not supported.| +|Application|BusinessScenarioData.Read.OwnedBy, BusinessScenarioData.ReadWrite.OwnedBy| ++## HTTP request ++<!-- { + "blockType": "ignored" +} +--> +``` http +GET /solutions/businessScenarios/{businessScenarioId}/planner/tasks +``` ++## Optional query parameters ++This method supports some of the OData query parameters to help customize the response. For general information, see [OData query parameters](/graph/query-parameters). You can query tasks with their context ID or location as filters. ++## Request headers ++|Name|Description| +|:|:| +|Authorization|Bearer {token}. Required.| ++## Request body ++Do not supply a request body for this method. ++## Response ++If successful, this method returns a `200 OK` response code and a collection of [businessScenarioTask](../resources/businessscenariotask.md) objects in the response body. ++## Examples ++### Example 1: Get all tasks for a scenario ++The following example shows a request that gets all tasks related to a scenario. ++#### Request ++The following is an example of a request. ++# [HTTP](#tab/http) +<!-- { + "blockType": "request", + "name": "list_businessscenariotask", + "sampleKeys": ["c5d514e6c6864911ac46c720affb6e4d"] +} +--> +``` http +GET https://graph.microsoft.com/beta/solutions/businessScenarios/c5d514e6c6864911ac46c720affb6e4d/planner/tasks +``` ++# [Go](#tab/go) ++# [PowerShell](#tab/powershell) ++# [PHP](#tab/php) +++++#### Response ++The following is an example of the response. +>**Note:** The response object shown here might be shortened for readability. +<!-- { + "blockType": "response", + "truncated": true, + "@odata.type": "Collection(microsoft.graph.businessScenarioTask)" +} +--> +``` http +HTTP/1.1 200 OK +Content-Type: application/json ++{ + "value": [ + { + "@odata.type": "#microsoft.graph.businessScenarioTask", + "title": "Customer order #12010", + "percentComplete": 0, + "priority": 5, + "id": "pmc1rS1Io0C3rXQhyXIsNmUAOeIi", + "target": { + "@odata.type": "microsoft.graph.businessScenarioGroupTarget", + "taskTargetKind": "group", + "groupId": "7a339254-4b2b-4410-b295-c890a16776ee" + }, + "businessScenarioProperties": { + "externalObjectId": "Order#12010", + "externalContextId": "Warehouse-CA-36", + "externalObjectVersion": "000001", + "webUrl": "https://ordertracking.contoso.com/view?id=12010", + "externalBucketId": "deliveryBucket" + } + } + ] +} +``` ++### Example 2: Get tasks associated with a specific externalContextId ++The following example shows a request that gets all tasks associated with a specific context. ++#### Request ++The following is an example of a request. ++# [HTTP](#tab/http) +<!-- { + "blockType": "request", + "name": "list_businessscenariotask", + "sampleKeys": ["c5d514e6c6864911ac46c720affb6e4d"] +} +--> +``` http +GET https://graph.microsoft.com/beta/solutions/businessScenarios/c5d514e6c6864911ac46c720affb6e4d/planner/tasks?$filter=businessScenarioProperties/externalContextId eq 'Warehouse-CA-36' +``` ++# [Go](#tab/go) ++# [PowerShell](#tab/powershell) ++# [PHP](#tab/php) +++++#### Response ++The following is an example of the response. +>**Note:** The response object shown here might be shortened for readability. +<!-- { + "blockType": "response", + "truncated": true, + "@odata.type": "Collection(microsoft.graph.businessScenarioTask)" +} +--> +``` http +HTTP/1.1 200 OK +Content-Type: application/json ++{ + "value": [ + { + "@odata.type": "#microsoft.graph.businessScenarioTask", + "title": "Customer order #12010", + "percentComplete": 0, + "priority": 5, + "id": "pmc1rS1Io0C3rXQhyXIsNmUAOeIi", + "target": { + "@odata.type": "microsoft.graph.businessScenarioGroupTarget", + "taskTargetKind": "group", + "groupId": "7a339254-4b2b-4410-b295-c890a16776ee" + }, + "businessScenarioProperties": { + "externalObjectId": "Order#12010", + "externalContextId": "Warehouse-CA-36", + "externalObjectVersion": "000001", + "webUrl": "https://ordertracking.contoso.com/view?id=12010", + "externalBucketId": "deliveryBucket" + } + } + ] +} +``` ++### Example 3: Get scenario tasks created in a specific group ++The following example shows a request that gets all tasks created in a specific [group](../resources/group.md). ++#### Request ++The following is an example of a request. ++# [HTTP](#tab/http) +<!-- { + "blockType": "request", + "name": "list_businessscenariotask", + "sampleKeys": ["c5d514e6c6864911ac46c720affb6e4d"] +} +--> +``` http +GET https://graph.microsoft.com/beta/solutions/businessScenarios/c5d514e6c6864911ac46c720affb6e4d/planner/tasks?$filter=location/microsoft.graph.businessScenarioGroupTarget/groupId eq '7a339254-4b2b-4410-b295-c890a16776ee' +``` ++# [Go](#tab/go) ++# [PowerShell](#tab/powershell) ++# [PHP](#tab/php) +++++#### Response ++The following is an example of the response. +>**Note:** The response object shown here might be shortened for readability. +<!-- { + "blockType": "response", + "truncated": true, + "@odata.type": "Collection(microsoft.graph.businessScenarioTask)" +} +--> +``` http +HTTP/1.1 200 OK +Content-Type: application/json ++{ + "value": [ + { + "@odata.type": "#microsoft.graph.businessScenarioTask", + "title": "Customer order #12010", + "percentComplete": 0, + "priority": 5, + "id": "pmc1rS1Io0C3rXQhyXIsNmUAOeIi", + "target": { + "@odata.type": "microsoft.graph.businessScenarioGroupTarget", + "taskTargetKind": "group", + "groupId": "7a339254-4b2b-4410-b295-c890a16776ee" + }, + "businessScenarioProperties": { + "externalObjectId": "Order#12010", + "externalContextId": "Warehouse-CA-36", + "externalObjectVersion": "000001", + "webUrl": "https://ordertracking.contoso.com/view?id=12010", + "externalBucketId": "deliveryBucket" + } + } + ] +} +``` |
v1.0 | Businessscenarioplanner Post Tasks | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/businessscenarioplanner-post-tasks.md | + + Title: "Create businessScenarioTask" +description: "Create a new businessScenarioTask object." ++ms.localizationpriority: medium +++# Create businessScenarioTask ++Namespace: microsoft.graph +++Create a new [businessScenarioTask](../resources/businessscenariotask.md) object. ++## Permissions ++One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). ++|Permission type|Permissions (from least to most privileged)| +|:|:| +|Delegated (work or school account)|BusinessScenarioData.ReadWrite.OwnedBy| +|Delegated (personal Microsoft account)|Not supported.| +|Application| BusinessScenarioData.ReadWrite.OwnedBy| ++## HTTP request ++<!-- { + "blockType": "ignored" +} +--> +``` http +POST /solutions/businessScenarios/{businessScenarioId}/planner/tasks +``` ++## Request headers ++|Name|Description| +|:|:| +|Authorization|Bearer {token}. Required.| +|Content-Type|application/json. Required.| ++## Request body ++In the request body, supply a JSON representation of the [businessScenarioTask](../resources/businessscenariotask.md) object. ++You can specify the following properties when you create a **businessScenarioTask**. ++|Property|Type|Description| +|:|:|:| +|appliedCategories|[plannerAppliedCategories](../resources/plannerappliedcategories.md)|The categories to which the task has been applied. For possible values, see [plannerAppliedCategories](../resources/plannerappliedcategories.md). Inherited from [plannerTask](../resources/plannertask.md).| +|assigneePriority|String|Hint used to order items of this type in a list view. For details about the supported format, see [Using order hints in Planner](../resources/planner-order-hint-format.md). Inherited from [plannerTask](../resources/plannertask.md).| +|assignments|[plannerAssignments](../resources/plannerassignments.md)|The set of assignees the task is assigned to. Inherited from [plannerTask](../resources/plannertask.md).| +|bucketId|String|Bucket ID to which the task belongs. The bucket needs to be in the plan that the task is in. It is 28 characters long and case-sensitive. The [format validation](../resources/tasks-identifiers-disclaimer.md) is done on the service. Inherited from [plannerTask](../resources/plannertask.md).| +|businessScenarioProperties|[businessScenarioProperties](../resources/businessscenarioproperties.md)|Scenario-specific properties of the task. **externalObjectId** and **externalBucketId** properties must be specified when creating a task. Required.| +|conversationThreadId|String|Thread ID of the conversation on the task. This is the ID of the conversation thread object created in the **group**. Inherited from [plannerTask](../resources/plannertask.md).| +|dueDateTime|DateTimeOffset|Date and time at which the task is due. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is `2014-01-01T00:00:00Z`. Inherited from [plannerTask](../resources/plannertask.md).| +|orderHint|String|Hint used to order items of this type in a list view. For details about the supported format, see [Using order hints in Planner](../resources/planner-order-hint-format.md). Inherited from [plannerTask](../resources/plannertask.md).| +|percentComplete|Int32|Percentage of task completion. When set to `100`, the task is considered completed. Inherited from [plannerTask](../resources/plannertask.md).| +|planId|String|Identifier of the plan to which the task belongs. Inherited from [plannerTask](../resources/plannertask.md).| +|priority|Int32|Priority of the task. Valid range of values is between `0` and `10` (inclusive), with increasing value being lower priority (`0` has the highest priority and `10` has the lowest priority). Currently, Planner interprets values `0` and `1` as "urgent", `2`, `3`, and `4` as "important", `5`, `6`, and `7` as "medium", and `8`, `9`, and `10` as "low". Currently, Planner sets the value `1` for "urgent", `3` for "important", `5` for "medium", and `9` for "low". Inherited from [plannerTask](../resources/plannertask.md).| +|startDateTime|DateTimeOffset|Date and time at which the task starts. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is `2014-01-01T00:00:00Z`. Inherited from [plannerTask](../resources/plannertask.md).| +|target|[businessScenarioTaskTargetBase](../resources/businessscenariotasktargetbase.md)|Target of the task that specifies where the task should be placed. Required.| +|title|String|Title of the task. Inherited from [plannerTask](../resources/plannertask.md).| ++## Response ++If successful, this method returns a `201 Created` response code and a [businessScenarioTask](../resources/businessscenariotask.md) object in the response body. ++## Examples ++### Request ++The following is an example of a request. ++# [HTTP](#tab/http) +<!-- { + "blockType": "request", + "name": "create_businessscenariotask_from_", + "sampleKeys": ["c5d514e6c6864911ac46c720affb6e4d"] +} +--> +``` http +POST https://graph.microsoft.com/beta/solutions/businessScenarios/c5d514e6c6864911ac46c720affb6e4d/planner/tasks +Content-Type: application/json ++{ + "@odata.type": "#microsoft.graph.businessScenarioTask", + "title": "Customer order #12010", + "percentComplete": 0, + "priority": 5, + "target": { + "@odata.type": "microsoft.graph.businessScenarioGroupTarget", + "taskTargetKind": "group", + "groupId": "7a339254-4b2b-4410-b295-c890a16776ee" + }, + "businessScenarioProperties": { + "externalObjectId": "Order#12010", + "externalContextId": "Warehouse-CA-36", + "externalObjectVersion": "000001", + "webUrl": "https://ordertracking.contoso.com/view?id=12010", + "externalBucketId": "deliveryBucket" + } +} +``` ++# [C#](#tab/csharp) ++# [JavaScript](#tab/javascript) ++# [Java](#tab/java) ++# [Go](#tab/go) ++# [PowerShell](#tab/powershell) ++# [PHP](#tab/php) +++++### Response ++The following is an example of the response. +>**Note:** The response object shown here might be shortened for readability. +<!-- { + "blockType": "response", + "truncated": true, + "@odata.type": "microsoft.graph.businessScenarioTask" +} +--> +``` http +HTTP/1.1 201 Created +Content-Type: application/json ++{ + "@odata.type": "#microsoft.graph.businessScenarioTask", + "title": "Customer order #12010", + "percentComplete": 0, + "priority": 5, + "id": "pmc1rS1Io0C3rXQhyXIsNmUAOeIi", + "target": { + "@odata.type": "microsoft.graph.businessScenarioGroupTarget", + "taskTargetKind": "group", + "groupId": "7a339254-4b2b-4410-b295-c890a16776ee" + }, + "businessScenarioProperties": { + "externalObjectId": "Order#12010", + "externalContextId": "Warehouse-CA-36", + "externalObjectVersion": "000001", + "webUrl": "https://ordertracking.contoso.com/view?id=12010", + "externalBucketId": "deliveryBucket" + } +} +``` |
v1.0 | Businessscenariotask Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/businessscenariotask-get.md | + + Title: "Get businessScenarioTask" +description: "Read the properties and relationships of a businessScenarioTask object." ++ms.localizationpriority: medium +++# Get businessScenarioTask ++Namespace: microsoft.graph +++Read the properties and relationships of a [businessScenarioTask](../resources/businessscenariotask.md) object. ++## Permissions ++One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). ++|Permission type|Permissions (from least to most privileged)| +|:|:| +|Delegated (work or school account)|BusinessScenarioData.Read.OwnedBy, BusinessScenarioData.ReadWrite.OwnedBy| +|Delegated (personal Microsoft account)|Not supported.| +|Application|BusinessScenarioData.Read.OwnedBy, BusinessScenarioData.ReadWrite.OwnedBy| ++## HTTP request ++<!-- { + "blockType": "ignored" +} +--> +``` http +GET /solutions/businessScenarios/{businessScenarioId}/planner/tasks/{businessScenarioTaskId} +``` ++## Optional query parameters ++This method supports some of the OData query parameters to help customize the response. For general information, see [OData query parameters](/graph/query-parameters). ++## Request headers ++|Name|Description| +|:|:| +|Authorization|Bearer {token}. Required.| ++## Request body ++Do not supply a request body for this method. ++## Response ++If successful, this method returns a `200 OK` response code and a [businessScenarioTask](../resources/businessscenariotask.md) object in the response body. ++## Examples ++### Request ++The following is an example of a request. ++# [HTTP](#tab/http) +<!-- { + "blockType": "request", + "name": "get_businessscenariotask", + "sampleKeys": ["c5d514e6c6864911ac46c720affb6e4d", "pmc1rS1Io0C3rXQhyXIsNmUAOeIi"] +} +--> +``` http +GET https://graph.microsoft.com/beta/solutions/businessScenarios/c5d514e6c6864911ac46c720affb6e4d/planner/tasks/pmc1rS1Io0C3rXQhyXIsNmUAOeIi +``` ++# [C#](#tab/csharp) ++# [JavaScript](#tab/javascript) ++# [Java](#tab/java) ++# [Go](#tab/go) ++# [PowerShell](#tab/powershell) ++# [PHP](#tab/php) +++++### Response ++The following is an example of the response. +>**Note:** The response object shown here might be shortened for readability. +<!-- { + "blockType": "response", + "truncated": true, + "@odata.type": "microsoft.graph.businessScenarioTask" +} +--> +``` http +HTTP/1.1 200 OK +Content-Type: application/json ++{ + "title": "Customer order #12010", + "percentComplete": 0, + "priority": 5, + "id": "pmc1rS1Io0C3rXQhyXIsNmUAOeIi", + "target": { + "@odata.type": "microsoft.graph.businessScenarioGroupTarget", + "taskTargetKind": "group", + "groupId": "7a339254-4b2b-4410-b295-c890a16776ee" + }, + "businessScenarioProperties": { + "externalObjectId": "Order#12010", + "externalContextId": "Warehouse-CA-36", + "externalObjectVersion": "000001", + "webUrl": "https://ordertracking.contoso.com/view?id=12010", + "externalBucketId": "deliveryBucket" + } +} +``` |
v1.0 | Businessscenariotask Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/businessscenariotask-update.md | + + Title: "Update businessScenarioTask" +description: "Update the properties of a businessScenarioTask object." ++ms.localizationpriority: medium +++# Update businessScenarioTask ++Namespace: microsoft.graph +++Update the properties of a [businessScenarioTask](../resources/businessscenariotask.md) object. ++## Permissions ++One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). ++|Permission type|Permissions (from least to most privileged)| +|:|:| +|Delegated (work or school account)|BusinessScenarioData.ReadWrite.OwnedBy| +|Delegated (personal Microsoft account)|Not supported.| +|Application| BusinessScenarioData.ReadWrite.OwnedBy| ++## HTTP request ++<!-- { + "blockType": "ignored" +} +--> +``` http +PATCH /solutions/businessScenarios/{businessScenarioId}/planner/tasks/{businessScenarioTaskId} +``` ++## Request headers ++|Name|Description| +|:|:| +|Authorization|Bearer {token}. Required.| +|Content-Type|application/json. Required.| ++## Request body +++|Property|Type|Description| +|:|:|:| +|appliedCategories|[plannerAppliedCategories](../resources/plannerappliedcategories.md)|The categories to which the task has been applied. For possible values, see [plannerAppliedCategories](../resources/plannerappliedcategories.md). Inherited from [plannerTask](../resources/plannertask.md).| +|assigneePriority|String|Hint used to order items of this type in a list view. For details about the supported format, see [Using order hints in Planner](../resources/planner-order-hint-format.md). Inherited from [plannerTask](../resources/plannertask.md).| +|assignments|[plannerAssignments](../resources/plannerassignments.md)|The set of assignees the task is assigned to. Inherited from [plannerTask](../resources/plannertask.md).| +|bucketId|String|Bucket ID to which the task belongs. The bucket needs to be in the plan that the task is in. It is 28 characters long and case-sensitive. The [format validation](../resources/tasks-identifiers-disclaimer.md) is done on the service. Inherited from [plannerTask](../resources/plannertask.md). | +|businessScenarioProperties|[businessScenarioProperties](../resources/businessscenarioproperties.md)|Scenario-specific properties of the task. Optional.| +|conversationThreadId|String|Thread ID of the conversation on the task. This is the ID of the conversation thread object created in the **group**. Inherited from [plannerTask](../resources/plannertask.md).| +|dueDateTime|DateTimeOffset|Date and time at which the task is due. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is `2014-01-01T00:00:00Z`. Inherited from [plannerTask](../resources/plannertask.md).| +|orderHint|String|Hint used to order items of this type in a list view. For details about the supported format, see [Using order hints in Planner](../resources/planner-order-hint-format.md). Inherited from [plannerTask](../resources/plannertask.md).| +|percentComplete|Int32|Percentage of task completion. When set to `100`, the task is considered completed. Inherited from [plannerTask](../resources/plannertask.md). | +|planId|String|Identifier of the plan to which the task belongs. Inherited from [plannerTask](../resources/plannertask.md).| +|priority|Int32|Priority of the task. Valid range of values is between `0` and `10` (inclusive), with increasing value being lower priority (`0` has the highest priority and `10` has the lowest priority). Currently, Planner interprets values `0` and `1` as "urgent", `2`, `3`, and `4` as "important", `5`, `6`, and `7` as "medium", and `8`, `9`, and `10` as "low". Currently, Planner sets the value `1` for "urgent", `3` for "important", `5` for "medium", and `9` for "low". Inherited from [plannerTask](../resources/plannertask.md).| +|startDateTime|DateTimeOffset|Date and time at which the task starts. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is `2014-01-01T00:00:00Z`. Inherited from [plannerTask](../resources/plannertask.md).| +|target|[businessScenarioTaskTargetBase](../resources/businessscenariotasktargetbase.md)|Target of the task that specifies where the task should be placed. Optional.| +|title|String|Title of the task. Inherited from [plannerTask](../resources/plannertask.md).| ++## Response ++If successful, this method returns a `200 OK` response code and an updated [businessScenarioTask](../resources/businessscenariotask.md) object in the response body. ++## Examples ++### Request ++The following is an example of a request. ++# [HTTP](#tab/http) +<!-- { + "blockType": "request", + "name": "update_businessscenariotask", + "sampleKeys": ["c5d514e6c6864911ac46c720affb6e4d", "pmc1rS1Io0C3rXQhyXIsNmUAOeIi"] +} +--> +``` http +PATCH https://graph.microsoft.com/beta/solutions/businessScenarios/c5d514e6c6864911ac46c720affb6e4d/planner/tasks/pmc1rS1Io0C3rXQhyXIsNmUAOeIi +Content-Type: application/json ++{ + "@odata.type": "#microsoft.graph.businessScenarioTask", + "title": "Customer order #12010", + "percentComplete": 20, + "priority": 1, + "businessScenarioProperties": { + "externalObjectVersion": "000003" + } +} +``` ++# [C#](#tab/csharp) ++# [JavaScript](#tab/javascript) ++# [Java](#tab/java) ++# [Go](#tab/go) ++# [PowerShell](#tab/powershell) ++# [PHP](#tab/php) +++++### Response ++The following is an example of the response. +>**Note:** The response object shown here might be shortened for readability. +<!-- { + "blockType": "response", + "truncated": true, + "@odata.type": "microsoft.graph.businessScenarioTask" +} +--> +``` http +HTTP/1.1 200 OK +Content-Type: application/json ++{ + "@odata.type": "#microsoft.graph.businessScenarioTask", + "title": "Customer order #12010", + "percentComplete": 20, + "priority": 1, + "id": "pmc1rS1Io0C3rXQhyXIsNmUAOeIi", + "target": { + "@odata.type": "microsoft.graph.businessScenarioGroupTarget", + "taskTargetKind": "group", + "groupId": "7a339254-4b2b-4410-b295-c890a16776ee" + }, + "businessScenarioProperties": { + "externalObjectId": "Order#12010", + "externalContextId": "Warehouse-CA-36", + "externalObjectVersion": "000003", + "webUrl": "https://ordertracking.contoso.com/view?id=12010", + "externalBucketId": "deliveryBucket" + } +} +``` ++## See also ++* [Update the task details associated with a scenario task](plannertaskdetails-update.md). |
v1.0 | Certificatebasedauthconfiguration Post Certificatebasedauthconfiguration | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/certificatebasedauthconfiguration-post-certificatebasedauthconfiguration.md | One of the following permissions is required to call this API. To learn more, in | Delegated (personal Microsoft account) | Not supported. | | Application | Organization.ReadWrite.All | +For delegated scenarios, the calling user must have the *Global Administrator* [Azure AD role](/azure/active-directory/users-groups-roles/directory-assign-admin-roles#available-roles). + ## HTTP request <!-- { "blockType": "ignored" } --> |
v1.0 | Channel Get Filesfolder | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/channel-get-filesfolder.md | Namespace: microsoft.graph Get the metadata for the location where the files of a [channel](../resources/channel.md) are stored. +> [!NOTE] +> Some special characters in the channel name will cause this API to return an error. For details, see [Known issues](/graph/known-issues#create-channel). + ## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |
v1.0 | Channel Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/channel-get.md | GET /teams/{team-id}/channels/{channel-id} ## Optional query parameters -This method supports the `$filter`, `$select`, and `$expand` [OData query parameters](/graph/query-parameters) to help customize the response. +This method supports the `$filter` and `$select` [OData query parameters](/graph/query-parameters) to help customize the response. ## Request headers |
v1.0 | Channel List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/channel-list.md | Namespace: microsoft.graph Retrieve the list of [channels](../resources/channel.md) in this [team](../resources/team.md). -This method supports federation. Any shared channel that the request initiator belongs to will be included in the response. +>**Note:** Guest users can't see private or shared channels that they aren't members of in the response for this API. + ## Permissions GET /teams/{team-id}/channels ``` ## Optional query parameters-This method supports the `$filter`, `$select`, and `$expand` [OData query parameters](/graph/query-parameters) to help customize the response. +This method supports the `$filter` and `$select` [OData query parameters](/graph/query-parameters) to help customize the response. ### Use $select for better performance Populating the **email** and **moderationSettings** properties for a channel is an expensive operation that results in slow performance. Use `$select` to exclude the **email** and **moderationSettings** properties to improve performance. |
v1.0 | Channel Post Messages | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/channel-post-messages.md | One of the following permissions is required to call this API. To learn more, in |:|:--| | Delegated (work or school account) | ChannelMessage.Send, Group.ReadWrite.All** | | Delegated (personal Microsoft account) | Not supported. |-| Application | Teamwork.Migrate.All, ChannelMessage.ReadWrite.All | +| Application | Teamwork.Migrate.All | > **Note**: Permissions marked with ** are supported only for backward compatibility. We recommend that you update your solutions to use an alternative permission listed in the previous table and avoid using these permissions going forward. |
v1.0 | Channel Post | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/channel-post.md | Namespace: microsoft.graph [!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] -Create a new [channel](../resources/channel.md) in a team, as specified in the request body. -> **Note:** You can add a maximum of 200 members when you create a private channel. +Create a new [channel](../resources/channel.md) in a team, as specified in the request body. When you create a channel, the maximum length of the channel's `displayName` is 50 characters. This is the name that appears to the user in Microsoft Teams. ++You can add a maximum of 200 members when you create a private channel. ++> [!NOTE] +> Some special characters in the channel name will cause the [Get filesFolder](/graph/api/channel-get-filesfolder) API to return an error. For details, see [Known issues](/graph/known-issues#create-channel). ## Permissions |
v1.0 | Chatmessage Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/chatmessage-update.md | specifying only the **policyViolation** property. ## Response body For applications that use delegated permissions:-If successful, this method returns a `204 NoContent` response. +If successful, this method returns a `204 No Content` response. For applications that use application permissions: If successful, this method returns a `200 OK` response. -## Example for updating policyViolation by using application permissions +## Examples ++### Example 1: Update policyViolation using application permissions #### Request HTTP/1.1 200 OK }--> -## Example for updating any property of a message by using delegated permissions +### Example 2: Update any property of a message using delegated permissions #### Request Here is an example of the response. HTTP/1.1 204 NoContent ``` -### Request to update the mentions of a message by using delegated permissions +### Example 3: Update the mentions of a message using delegated permissions +#### Request The following is an example of the request to update the mentions on a Microsoft Teams channel message by using delegated permissions. Here is an example of the response. HTTP/1.1 204 NoContent ``` -### Request to update the content with attachments of a message by using delegated permissions +### Example 4: Update the content with attachments of a message using delegated permissions +#### Request The following is an example of the request to update the attachments on a Microsoft Teams channel message by using delegated permissions. Here is an example of the response. HTTP/1.1 204 NoContent ``` -### Request to update the reactions in a message by using delegated permissions +### Example 5: Update the reactions in a message using delegated permissions +#### Request The following is an example of the request to update the reactions property on a Microsoft Teams channel message by using delegated permissions. |
v1.0 | Cloudpc Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/cloudpc-get.md | One of the following permissions is required to call this API. To learn more, in To get the [cloudPC](../resources/cloudpc.md) of the specified user (who is the signed-in user) in the organization using delegated permission: ``` http-GET /me/cloudPCs{id} +GET /me/cloudPCs/{id} GET /users/{userId}/cloudPCs/{id} ``` |
v1.0 | Cloudpc Getsupportedcloudpcremoteactions | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/cloudpc-getsupportedcloudpcremoteactions.md | + + Title: "cloudPC: getSupportedCloudPcRemoteActions" +description: "Get a list of supported Cloud PC remote actions for a specific Cloud PC device, including the action names and capabilities." ++ms.localizationpriority: medium +++# cloudPC: getSupportedCloudPcRemoteActions ++Namespace: microsoft.graph +++Get a list of supported Cloud PC remote actions for a specific Cloud PC device, including the action names and capabilities. ++## Permissions ++One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). ++| Permission type | Permissions (from least to most privileged) | +|:|:--| +| Delegated (work or school account) | CloudPC.Read.All | +| Delegated (personal Microsoft account) | Not supported. | +| Application | CloudPC.ReadWrite.All | ++## HTTP request ++<!-- { + "blockType": "ignored" +} +--> ++``` http +GET /deviceManagement/virtualEndpoint/cloudPCs/{id}/getSupportedCloudPcRemoteActions +``` ++## Request headers ++|Name|Description| +|:|:| +|Authorization|Bearer {token}. Required.| ++## Request body ++Do not supply a request body for this method. ++## Response ++If successful, this method returns a `200 OK` response code and a collection of [cloudPcRemoteActionCapability](../resources/cloudpcremoteactioncapability.md) objects in the response body. ++## Examples ++### Request ++The following is an example of a request. ++<!-- { + "blockType": "request", + "name": "cloudpc_getsupportedcloudpcremoteactions" +} +--> ++``` http +GET https://graph.microsoft.com/beta/deviceManagement/virtualEndpoint/cloudPCs/831dd62e-cfa1-4d49-a3b4-58d4e9920f8e/getSupportedCloudPcRemoteActions +``` ++### Response ++The following is an example of the response. ++<!-- { + "blockType": "response", + "@odata.type": "Collection(microsoft.graph.cloudPcRemoteActionCapability)", + "truncated": true +} +--> ++``` http +HTTP/1.1 200 OK +Content-Type: application/json ++{ + "@odata.context": "https://graph.microsoft.com/beta/$metadata#Collection(microsoft.graph.cloudPcRemoteActionCapability)", + "value": [ + { + "actionName": "Restart", + "actionCapability": "disabled" + }, + { + "actionName": "Restore", + "actionCapability": "disabled" + }, + { + "actionName": "Reprovision", + "actionCapability": "enabled" + }, + { + "actionName": "Resize", + "actionCapability": "disabled" + }, + { + "actionName": "PlaceUnderReview", + "actionCapability": "disabled" + } + ] +} +``` |
v1.0 | Cloudpc Retrypartneragentinstallation | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/cloudpc-retrypartneragentinstallation.md | The following is an example of a request. ``` http POST https://graph.microsoft.com/beta/deviceManagement/virtualEndpoint/cloudPCs/831dd62e-cfa1-4d49-a3b4-58d4e9920f8e/retryPartnerAgentInstallation ```++# [C#](#tab/csharp) ++# [JavaScript](#tab/javascript) ++# [Java](#tab/java) ++# [Go](#tab/go) ++# [PowerShell](#tab/powershell) ++# [PHP](#tab/php) +++ |
v1.0 | Cloudpconpremisesconnection Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/cloudpconpremisesconnection-get.md | Content-Type: application/json "resourceGroupId": "/subscriptions/0ac520ee-14c0-480f-b6c9-0a90c585ffff/resourceGroups/ExampleRG", "virtualNetworkId": "/subscriptions/0ac520ee-14c0-480f-b6c9-0a90c58ffff/resourceGroups/ExampleRG/providers/Microsoft.Network/virtualNetworks/ExampleVNet", "subnetId": "/subscriptions/0ac520ee-14c0-480f-b6c9-0a90c585ffff/resourceGroups/ExampleRG/providers/Microsoft.Network/virtualNetworks/ExampleVNet/subnets/default",- "healthCheckStatus": "running" + "healthCheckStatus": "running", + "virtualNetworkLocation": "westus2" } ``` |
v1.0 | Cloudpconpremisesconnection Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/cloudpconpremisesconnection-update.md | Content-Type: application/json "resourceGroupId": "/subscriptions/0ac520ee-14c0-480f-b6c9-0a90c585ffff/resourceGroups/ExampleRG", "virtualNetworkId": "/subscriptions/0ac520ee-14c0-480f-b6c9-0a90c58ffff/resourceGroups/ExampleRG/providers/Microsoft.Network/virtualNetworks/ExampleVNet", "subnetId": "/subscriptions/0ac520ee-14c0-480f-b6c9-0a90c585ffff/resourceGroups/ExampleRG/providers/Microsoft.Network/virtualNetworks/ExampleVNet/subnets/default",- "healthCheckStatus": "running" + "healthCheckStatus": "running", + "virtualNetworkLocation": "westus2" } ``` |
v1.0 | Cloudpcreports Getshareduselicenseusagereport | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/cloudpcreports-getshareduselicenseusagereport.md | + + Title: "cloudPcReports: getSharedUseLicenseUsageReport" +description: "Get the shared use license usage reports, such as servicePlanId, licenseCount, and claimedLicenseCount, for real-time, 7 days, or 28 days trend." ++ms.localizationpriority: medium +++# cloudPcReports: getSharedUseLicenseUsageReport ++Namespace: microsoft.graph +++Get the shared use license usage reports, such as **servicePlanId**, **licenseCount**, and **claimedLicenseCount**, for real-time, 7 days, or 28 days trend. ++## Permissions ++One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). ++| Permission type | Permissions (from least to most privileged) | +| :- | : | +| Delegated (work or school account) | CloudPC.Read.All, CloudPC.ReadWrite.All | +| Delegated (personal Microsoft account) | Not supported. | +| Application | CloudPC.Read.All, CloudPC.ReadWrite.All | ++## HTTP request ++<!-- { + "blockType": "ignored" +} +--> +``` http +POST /deviceManagement/virtualEndpoint/reports/getSharedUseLicenseUsageReport +``` ++## Request headers ++| Name | Description | +| : | :-- | +| Authorization | Bearer {token}. Required. | +| Content-Type | application/json. Required. | ++## Request body ++In the request body, supply a JSON representation of the parameters. ++The following table shows the parameters that can be used with this action. ++| Parameter | Type | Description | +| : | :- | :- | +| reportName | String | Specifies the report name. | +| filter | String | OData filter syntax. Supported filters include `and`, `or`, `lt`, `le`, `gt`, `ge`, and `eq`. | +| select | String collection | OData select syntax. Represents the selected columns of the reports. | +| search | String | Specifies a string to search. | +| groupBy | String collection | Specifies how to group the reports. If used, must have the same content as the **select** parameter. | +| orderBy | String collection | Specifies how to sort the reports. | +| skip | Int32 | The number of records to skip. | +| top | Int32 | The number of top records to return. | ++## Response ++If successful, this action returns a `200 OK` response code and a Stream in the response body. ++## Examples ++### Request ++The following is an example of a request. +++# [HTTP](#tab/http) +<!-- { + "blockType": "request", + "name": "cloudpcreportsthis.getSharedUseLicenseUsageReport" +} +--> +``` http +POST https://graph.microsoft.com/beta/deviceManagement/virtualEndpoint/reports/getSharedUseLicenseUsageReport +Content-Type: application/json +Content-length: 199 ++{ + "reportName": "SharedUseLicenseUsageReport", + "filter": "ServicePlanId eq '2d1d344e-d10c-41bb-953b-b3a47521dca0' and DateTimeUTC gt datetime'2022-11-30'", + "select":["ServicePlanId", "LicenseCount", "ClaimedLicenseCount", "DateTimeUTC"], + "skip": 0, + "top": 100 +} +``` ++# [C#](#tab/csharp) ++# [JavaScript](#tab/javascript) ++# [Java](#tab/java) ++# [Go](#tab/go) ++# [PowerShell](#tab/powershell) ++# [PHP](#tab/php) +++++### Response ++The following is an example of the response ++>**Note:** The response object shown here might be shortened for readability. +<!-- { + "blockType": "response", + "truncated": true, + "@odata.type": "Edm.Stream" +} +--> +``` http +HTTP/1.1 200 OK +Content-Type: application/octet-stream ++{ + "TotalRowCount": 2, + "Schema": [ + { + "name": "ServicePlanId", + "type": "String" + }, + { + "name": "LicenseCount", + "type": "Int32" + }, + { + "name": "ClaimedLicenseCount", + "type": "Int32" + }, + { + "name": "DateTimeUTC", + "type": "DateTime" + } + ], + "Values": [ + [ + "2d1d344e-d10c-41bb-953b-b3a47521dca0", 100, 10, "2022-12-02T00:00:00" + ], + [ + "2d1d344e-d10c-41bb-953b-b3a47521dca0", 100, 11, "2022-12-01T00:00:00" + ] + ] +} +``` |
v1.0 | Device Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/device-update.md | HTTP/1.1 204 No Content #### Request --# [HTTP](#tab/http) <!-- { "blockType": "request", "name": "update_device_extensionAttributes" Content-type: application/json } ``` -# [C#](#tab/csharp) --# [JavaScript](#tab/javascript) --# [Java](#tab/java) --# [Go](#tab/go) --# [PowerShell](#tab/powershell) --# [PHP](#tab/php) ---- #### Response <!-- { |
v1.0 | Devicemanagement Alertrecord Getportalnotifications | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/devicemanagement-alertrecord-getportalnotifications.md | Namespace: microsoft.graph.deviceManagement [!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] -Get a list of all portal notifications that one or more users can access. +Get a list of all notifications that one or more users can access, from the Microsoft Endpoint Manager admin center. ## Permissions |
v1.0 | Devicemanagement Alertrecord Setportalnotificationassent | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/devicemanagement-alertrecord-setportalnotificationassent.md | Namespace: microsoft.graph.deviceManagement [!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] -Set a single portal notification status to published by modifying the **isPortalNotificationSent** property to `true` for the user specified in the request. +Set the status of the notification associated with the specified [alertRecord](../resources/devicemanagement-alertrecord.md) on the Microsoft EndPoint Manager admin center as sent, by setting the **isPortalNotificationSent** property of the [portal notification](../resources/devicemanagement-portalnotification.md) to `true`. ## Permissions |
v1.0 | Directorysetting Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/directorysetting-update.md | In the request body, supply the values for relevant fields that should be update ## Response -If successful, this method returns a `204 OK` response code. +If successful, this method returns a `204 No Content` response code. ## Example ### Request Content-type: application/json "blockType": "response" } --> ```http-HTTP/1.1 204 OK +HTTP/1.1 204 No Content ``` <!-- uuid: 8fcb5dbc-d5aa-4681-8e31-b001d5168d79 |
v1.0 | Domain Post Federationconfiguration | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/domain-post-federationconfiguration.md | Title: "Create federationConfiguration" description: "Create a new internalDomainFederation object."-+ ms.localizationpriority: medium ms.prod: "identity-and-sign-in" doc_type: apiPageType |
v1.0 | Dynamics Customer Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/dynamics-customer-delete.md | Title: Delete customers -description: Deletes a customers object from Dynamics 365 Business Central. -+ Title: "Delete customers" +description: "Delete a customers object from Dynamics 365 Business Central." + documentationcenter: ''-+ ms.localizationpriority: medium ms.prod: "dynamics-365-business-central" doc_type: apiPageType This method supports the [OData Query Parameters](/graph/query-parameters) to he Do not supply a request body for this method. ## Response-If successful, this method returns ```204 No Content``` response code. It does not return anything in the response body. +If successful, this method returns a `204 No Content` response code. It does not return anything in the response body. ## Example -**Request** +### Request -Here is an example of the request. +The following is an example of the request. ```http DELETE https://graph.microsoft.com/beta/financials/companies/{id}/customers/{id} ``` -**Response** +### Response -Here is an example of the response. +The following is an example of the response. ```http HTTP/1.1 204 No Content ```--- |
v1.0 | Ediscovery Case List Operations | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/ediscovery-case-list-operations.md | GET https://graph.microsoft.com/beta/compliance/ediscovery/cases/061b9a92-8926-4 [!INCLUDE [sample-code](../includes/snippets/go/list-caseoperation-for-caseid-go-snippets.md)] [!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)] -# [PowerShell](#tab/powershell) - # [PHP](#tab/php) [!INCLUDE [sample-code](../includes/snippets/php/list-caseoperation-for-caseid-php-snippets.md)] [!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)] |
v1.0 | Educationassignment Delete Rubric | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/educationassignment-delete-rubric.md | Namespace: microsoft.graph [!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] Delete an [educationRubric](../resources/educationrubric.md) from an [educationAssignment](../resources/educationassignment.md).-This method does not delete the rubric itself. ++This method does not delete the rubric itself and can only be performed by teachers. ## Permissions |
v1.0 | Educationassignment Get Rubric | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/educationassignment-get-rubric.md | Namespace: microsoft.graph [!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] -Get the [educationRubric](../resources/educationrubric.md) object attached to an [educationAssignment](../resources/educationassignment.md), if one exists. +Get the [educationRubric](../resources/educationrubric.md) object attached to an [educationAssignment](../resources/educationassignment.md), if one exists. Only teachers, students, and applications with application permissions can perform this operation. ## Permissions |
v1.0 | Educationassignment Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/educationassignment-get.md | Namespace: microsoft.graph [!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] -Get the properties and relationships of an [assignment](../resources/educationassignment.md). +Get the properties and relationships of an [assignment](../resources/educationassignment.md). Only teachers, students, and applications with application permissions can perform this operation. Students can only see assignments assigned to them; teachers and applications with application permissions can see all assignments in a class. |
v1.0 | Educationassignment List Categories | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/educationassignment-list-categories.md | Namespace: microsoft.graph [!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] -List all the categories associated with an [assignment](../resources/educationassignment.md). +List all the categories associated with an [assignment](../resources/educationassignment.md). Only teachers, students, and applications with application permissions can perform this operation. ## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |
v1.0 | Educationassignment List Resources | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/educationassignment-list-resources.md | Namespace: microsoft.graph [!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] -Get all the [educationAssignmentResource](../resources/educationassignmentresource.md) objects associated with an [assignment](../resources/educationassignment.md). +Get all the [educationAssignmentResource](../resources/educationassignmentresource.md) objects associated with an [assignment](../resources/educationassignment.md). Only teachers, students, and applications with application permissions can perform this operation. ## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |
v1.0 | Educationassignment List Submissions | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/educationassignment-list-submissions.md | Namespace: microsoft.graph [!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] -List all the [submissions](../resources/educationsubmission.md) associated with an [assignment](../resources/educationassignment.md). +List all the [submissions](../resources/educationsubmission.md) associated with an [assignment](../resources/educationassignment.md). Only teachers, students, and applications with application permissions can perform this operation. A teacher or an application with application permissions can get all the **submissions**, a student can only get **submissions** that they are associated with. |
v1.0 | Educationassignment Post Categories | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/educationassignment-post-categories.md | Namespace: microsoft.graph [!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] -Add one or more existing [educationCategory](../resources/educationcategory.md) objects to this [educationAssignment](../resources/educationassignment.md). +Add one or more existing [educationCategory](../resources/educationcategory.md) objects to this [educationAssignment](../resources/educationassignment.md). Only teachers and students can perform this operation. ## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |
v1.0 | Educationassignment Post Resources | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/educationassignment-post-resources.md | Namespace: microsoft.graph [!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] -Create an [assignment resource](../resources/educationassignmentresource.md). You can create the following types of assignment resources: +Create an [assignment resource](../resources/educationassignmentresource.md). Only teachers can perform this operation. ++You can create the following types of assignment resources: - [educationFileResource](../resources/educationfileresource.md) - [educationExcelResource](../resources/educationexcelresource.md) Create an [assignment resource](../resources/educationassignmentresource.md). Yo - [educationMediaResource](../resources/educationmediaresource.md) - [educationTeamsAppResource](../resources/educationteamsappresource.md) -Every resource has an @odata.type property to indicate which type of resource is being created. +Every resource has an **@odata.type** property to indicate which type of resource is being created. > [!IMPORTANT] > Before you can upload an assignment resource, you must [set up the resources folder](../api/educationassignment-setupresourcesfolder.md) for the [educationAssignment](../resources/educationassignment.md) to upload the files to. The following is an example of the response. <!-- { "blockType": "response", "truncated": true,- "@odata.type": "microsoft.graph.educationMediaResource" + "@odata.type": "microsoft.graph.educationTeamsAppResource" } --> ```http HTTP/1.1 201 Created |
v1.0 | Educationassignment Put Rubric | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/educationassignment-put-rubric.md | Namespace: microsoft.graph [!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] -Attach an existing [educationRubric](../resources/educationrubric.md) object to an [educationAssignment](../resources/educationassignment.md). +Attach an existing [educationRubric](../resources/educationrubric.md) object to an [educationAssignment](../resources/educationassignment.md). Only teachers can perform this operation. ## Permissions |
v1.0 | Educationassignment Remove Category | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/educationassignment-remove-category.md | Namespace: microsoft.graph [!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] -Remove an [educationCategory](../resources/educationcategory.md) from an [educationAssignment](../resources/educationassignment.md). +Remove an [educationCategory](../resources/educationcategory.md) from an [educationAssignment](../resources/educationassignment.md). Only teachers can perform this operation. ## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |
v1.0 | Educationassignment Setupfeedbackresourcesfolder | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/educationassignment-setupfeedbackresourcesfolder.md | Namespace: microsoft.graph [!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] -Create a SharePoint folder to upload feedback files for a given [educationSubmission](../resources/educationsubmission.md). +Create a SharePoint folder to upload feedback files for a given [educationSubmission](../resources/educationsubmission.md). Only teachers can perform this operation. The teacher determines the resources to upload in the feedback resources folder of a submission. |
v1.0 | Educationassignment Setupresourcesfolder | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/educationassignment-setupresourcesfolder.md | Namespace: microsoft.graph [!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] -Create a SharePoint folder to upload files for a given [educationAssignment](../resources/educationassignment.md). +Create a SharePoint folder to upload files for a given [educationAssignment](../resources/educationassignment.md). Only teachers can perform this operation. -The teacher determines the resources to upload in the assignment's folder. +The teacher determines the resources to upload in the assignment's folder. ## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |
v1.0 | Educationassignmentdefaults Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/educationassignmentdefaults-get.md | Namespace: microsoft.graph Read the properties and relationships of an [educationAssignmentDefaults](../resources/educationassignmentdefaults.md) object. -These are the class-level assignment defaults respected by new [assignments](../resources/educationassignment.md) created in the class. Callers can continue to specify custom values on each **assignment** creation if they don't want the default behaviors. +These are the class-level assignment defaults respected by new [assignments](../resources/educationassignment.md) created in the class. Callers can continue to specify custom values on each **assignment** creation if they don't want the default behaviors. Only teachers can perform this operation. ## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |
v1.0 | Educationassignmentresource Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/educationassignmentresource-get.md | Namespace: microsoft.graph [!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] -Get the properties of an [education assignment resource](../resources/educationassignmentresource.md) associated with an [assignment](../resources/educationassignment.md). +Get the properties of an [education assignment resource](../resources/educationassignmentresource.md) associated with an [assignment](../resources/educationassignment.md). Only teachers, students, and applications with application permissions can perform this operation. ## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |
v1.0 | Educationassignmentsettings Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/educationassignmentsettings-get.md | Namespace: microsoft.graph [!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] -Read the properties and relationships of an [educationAssignmentSettings](../resources/educationassignmentsettings.md) object. +Read the properties and relationships of an [educationAssignmentSettings](../resources/educationassignmentsettings.md) object. Only teachers can perform this operation. ## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |
v1.0 | Educationcategory Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/educationcategory-delete.md | Namespace: microsoft.graph [!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] -Delete an existing category. +Delete an existing category. Only teachers can perform this operation. ## Permissions |
v1.0 | Educationcategory Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/educationcategory-get.md | Namespace: microsoft.graph [!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] -Retrieve an [educationCategory](../resources/educationcategory.md) object. +Retrieve an [educationCategory](../resources/educationcategory.md) object. Only teachers, students, and applications with application permissions can perform this operation. ## Permissions |
v1.0 | Educationclass List Assignments | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/educationclass-list-assignments.md | Namespace: microsoft.graph [!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] -Retrieve a list of assignment objects. +Retrieve a list of assignment objects. Only teachers, students, and applications with application permissions can perform this operation. A teacher or an application executing with application permissions can see all assignment objects for the class. Students can only see assignments that are assigned to them. |
v1.0 | Educationclass List Categories | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/educationclass-list-categories.md | Namespace: microsoft.graph [!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] -Retrieve a list of [educationCategory](../resources/educationcategory.md) objects. +Retrieve a list of [educationCategory](../resources/educationcategory.md) objects. Only teachers can perform this operation. ## Permissions |
v1.0 | Educationclass Post Assignments | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/educationclass-post-assignments.md | Namespace: microsoft.graph [!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] -Create a new assignment. +Create a new assignment. Only teachers in a class can create an assignment. Assignments start in the Draft state, which means that students will not see the assignment until publication. |
v1.0 | Educationclass Post Category | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/educationclass-post-category.md | Namespace: microsoft.graph [!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] -Creates a new [educationCategory](../resources/educationcategory.md) on an [educationClass](../resources/educationclass.md). +Creates a new [educationCategory](../resources/educationcategory.md) on an [educationClass](../resources/educationclass.md). Only teachers can perform this operation. ## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |
v1.0 | Educationoutcome Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/educationoutcome-update.md | Namespace: microsoft.graph [!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] -Update the properties of an [educationOutcome](../resources/educationoutcome.md) object. +Update the properties of an [educationOutcome](../resources/educationoutcome.md) object. Only teachers can perform this operation. ## Permissions |
v1.0 | Educationrubric Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/educationrubric-delete.md | Namespace: microsoft.graph [!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] -Delete an [educationRubric](../resources/educationrubric.md) object. +Delete an [educationRubric](../resources/educationrubric.md) object. Only teachers can perform this operation. ## Permissions |
v1.0 | Educationrubric Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/educationrubric-get.md | Namespace: microsoft.graph [!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] -Retrieve the properties and relationships of an [educationRubric](../resources/educationrubric.md) object. +Retrieve the properties and relationships of an [educationRubric](../resources/educationrubric.md) object. Only teachers and students can perform this operation. ## Permissions |
v1.0 | Educationrubric Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/educationrubric-update.md | Namespace: microsoft.graph [!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] -Update the properties of an [educationRubric](../resources/educationrubric.md) object. +Update the properties of an [educationRubric](../resources/educationrubric.md) object. Only teachers can perform this operation. Updating a rubric attached to an assignment (`PATCH /education/classes/{id}/assignments/{id}/rubric`) is only possible before the assignment is published, and what is updated is actually the original rubric that exists under `/education/users/{id}/rubrics`. After the assignment is published, an immutable copy of the rubric is made that is attached to that specific assignment. That rubric can be retrieved using [GET /education/classes/{id}/assignments/{id}/rubric](educationrubric-get.md), but it cannot be updated. |
v1.0 | Educationsubmission Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/educationsubmission-get.md | Namespace: microsoft.graph [!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] -Retrieve a particular [submission](../resources/educationsubmission.md). +Retrieve a particular [submission](../resources/educationsubmission.md). Only teachers, students, and applications with application permissions can perform this operation. A **submission** object represents a student's work for an [assignment](../resources/educationassignment.md). Resources associated with the **submission** represent this work. |
v1.0 | Educationsubmission List Outcomes | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/educationsubmission-list-outcomes.md | Namespace: microsoft.graph [!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] -Retrieve a list of [educationOutcome](../resources/educationoutcome.md) objects. There are four types of outcomes: **educationPointsOutcome**, **educationFeedbackOutcome**, **educationRubricOutcome**, and **educationFeedbackResourceOutcome**. +Retrieve a list of [educationOutcome](../resources/educationoutcome.md) objects. There are four types of outcomes: **educationPointsOutcome**, **educationFeedbackOutcome**, **educationRubricOutcome**, and **educationFeedbackResourceOutcome**. Only teachers, students, and applications with application permissions can perform this operation. A submission for a credit assignment (one that has no point value and no rubric) will have an [educationFeedbackOutcome](../resources/educationpointsoutcome.md). (It might also return an [educationPointsOutcome](../resources/educationpointsoutcome.md), but that outcome is ignored.) |
v1.0 | Educationsubmission List Resources | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/educationsubmission-list-resources.md | Namespace: microsoft.graph [!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] -List the resources associated with a submission. +List the resources associated with a submission. Only teachers, students, and applications with application permissions can perform this operation. The [educationSubmissionResource](../resources/educationsubmissionresource.md) object is a wrapper around the actual resource object the student is working on. The wrapper also includes a pointer to the resources on the assignment if this was copied from the assignment during the assign process. These resources are the working copy of the assignment. The **submittedResources** are the resources that have officially been submitted to be graded. |
v1.0 | Educationsubmission List Submittedresources | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/educationsubmission-list-submittedresources.md | Namespace: microsoft.graph [!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] -List the [educationSubmissionResource](../resources/educationsubmissionresource.md) objects that have officially been submitted for grading. The student who owns the submission cannot change the submitted list without resubmitting the assignment. This is a wrapper around the real resource and can contain a pointer back to the actual assignment resource if this resource was copied from the assignment. +List the [educationSubmissionResource](../resources/educationsubmissionresource.md) objects that have officially been submitted for grading. Only teachers, students, and applications with application permissions can perform this operation. ++The student who owns the submission cannot change the submitted list without resubmitting the assignment. This is a wrapper around the real resource and can contain a pointer back to the actual assignment resource if this resource was copied from the assignment. ## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |
v1.0 | Educationsubmission Post Resources | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/educationsubmission-post-resources.md | Namespace: microsoft.graph Add a [educationSubmissionResource](../resources/educationsubmissionresource.md) to a submission resource list. -Only the student assigned to the submission can perform this operation. +Only teachers and students can perform this operation. -The operation will not succeed if the **allowStudentsToAddResources** flag is not set to `true`. +The operation will not succeed if the **allowStudentsToAddResources** flag is not set to `true`. To create a new file-based resource, upload the file to the resources folder associated with the submission. If the file doesn't exist or is not in that folder, the POST request will fail. |
v1.0 | Educationsubmission Setupresourcesfolder | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/educationsubmission-setupresourcesfolder.md | Namespace: microsoft.graph [!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] -Trigger the creation of the SharePoint resource folder where all file-based resources (Word, Excel, and so on) should be uploaded for a given submission. +Trigger the creation of the SharePoint resource folder where all file-based resources (Word, Excel, and so on) should be uploaded for a given submission. Only teachers and students can perform this operation. Note that files must be located in this folder in order to be added as resources. Only a student in the class can determine what files to upload in a given submission-level resource folder. |
v1.0 | Educationsubmission Submit | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/educationsubmission-submit.md | Namespace: microsoft.graph [!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] -Indicate that a student is done with the work and is ready to hand in the assignment. +Indicate that a student is done with the work and is ready to hand in the assignment. Only teachers, students, and applications with application permissions can perform this operation. This method changes the status of the submission from `working` to `submitted`. During the submit process, all the resources are copied to the **submittedResources** bucket. The teacher will be looking at the submitted resources list for grading. |
v1.0 | Educationsubmission Unsubmit | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/educationsubmission-unsubmit.md | Namespace: microsoft.graph [!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] -Indicate that a student wants to work on the submitted assignment after it was turned in. +Indicate that a student wants to work on the submitted assignment after it was turned in. Only teachers, students, and applications with application permissions can perform this operation. This method changes the status of the submission from `submitted` to `working`. During the submit process, all the resources are copied from **submittedResources** to **workingResources**. The teacher will be looking at the working resources list for grading. |
v1.0 | Educationsubmissionresource Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/educationsubmissionresource-delete.md | Namespace: microsoft.graph [!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] -Deletes an [educationSubmissionResource](../resources/educationsubmissionresource.md) from the submission. This can only be done by the student. If the resource was copied from the assignment, a new copy of the resource will be created after the current copy is deleted. This allows you to "reset" the resource to its original state. If the resource was not copied from the assignment but was added from the student, the resource is simply deleted. +Delete an [educationSubmissionResource](../resources/educationsubmissionresource.md) from the submission. Only teachers and students can perform this operation. ++If the resource was copied from the assignment, a new copy of the resource will be created after the current copy is deleted. This allows you to "reset" the resource to its original state. If the resource was not copied from the assignment but was added from the student, the resource is simply deleted. ## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |
v1.0 | Educationsubmissionresource Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/educationsubmissionresource-get.md | Namespace: microsoft.graph [!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] -Retrieve the properties of a specific resource associated with a [submission](../resources/educationsubmissionresource.md). +Retrieve the properties of a specific resource associated with a [submission](../resources/educationsubmissionresource.md). Only teachers, students, and applications with application permissions can perform this operation. This resource is in the "working" resource list and should be considered work in process by a student. This resource is wrapped with a possible pointer back to the assignment resource if it was copied from the assignment. |
v1.0 | Educationsubmittedsubmissionresource Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/educationsubmittedsubmissionresource-get.md | Namespace: microsoft.graph [!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] -Retrieve a [submitted resource](../resources/educationsubmissionresource.md). +Retrieve a [submitted resource](../resources/educationsubmissionresource.md). Only teachers, students, and applications with application permissions can perform this operation. Resources will be available to a teacher or an application with application permissions after a student submits it, and will be available to the student after the teacher releases the submission. Note that teachers can leave notes in some resources. |
v1.0 | Educationuser List Assignments | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/educationuser-list-assignments.md | Namespace: microsoft.graph [!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] -Returns a list of assignments assigned to a user for all classes. +Returns a list of assignments assigned to a user for all classes. Only teachers, students, and applications with application permissions can perform this operation. This utility namespace allows a caller to find all the assignments belonging to a student or a teacher in a single call rather than having to request assignments from each class. The assignment list contains what is needed to get the detailed information for the assignment from within the class namespace. All other operations on the assignment should use the class namespace. |
v1.0 | Emailauthenticationmethodconfiguration Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/emailauthenticationmethodconfiguration-delete.md | Title: "Delete emailAuthenticationMethodConfiguration" description: "Deletes an emailAuthenticationMethodConfiguration object."-+ ms.localizationpriority: medium ms.prod: "identity-and-sign-in" doc_type: "apiPageType" |
v1.0 | Emailauthenticationmethodconfiguration Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/emailauthenticationmethodconfiguration-get.md | Title: "Get emailAuthenticationMethodConfiguration" description: "Read the properties and relationships of an emailAuthenticationMethodConfiguration object."-+ ms.localizationpriority: medium ms.prod: "identity-and-sign-in" doc_type: "apiPageType" Content-Type: application/json "id": "Email", "state": "enabled", "allowExternalIdToUseEmailOtp": "default",- "includeTargets": [] + "includeTargets": [], + "excludeTargets": [] } ``` |
v1.0 | Emailauthenticationmethodconfiguration Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/emailauthenticationmethodconfiguration-update.md | Title: "Update emailAuthenticationMethodConfiguration" description: "Update the properties of an emailAuthenticationMethodConfiguration object."-+ ms.localizationpriority: medium ms.prod: "identity-and-sign-in" doc_type: "apiPageType" |
v1.0 | Entitlementmanagement Post Accesspackageassignmentpolicies | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/entitlementmanagement-post-accesspackageassignmentpolicies.md | Content-type: application/json #### Request -In the following example, the pre-defined **customAccessPackageWorkflowExtension** object is triggered when an access package assigned request is created and when it's granted. +In the following example, the pre-defined **customAccessPackageWorkflowExtension** object is triggered when an access package assigned request is created and when it's granted. The identifier provided within the **customExtension** field is the **customAccessPackageWorkflowExtension** object's ID. # [HTTP](#tab/http) Content-type: application/json { "stage": "assignmentRequestCreated", "customExtension": {- "id": "219f57b6-7983-45a1-be01-2c228b7a43f8" //customAccessPackageWorkflowExtension.id + "id": "219f57b6-7983-45a1-be01-2c228b7a43f8" } }, { Content-type: application/json [!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)] # [Go](#tab/go) [!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)] # [PowerShell](#tab/powershell) [!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)] # [PHP](#tab/php) [!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)] |
v1.0 | Fido2authenticationmethodconfiguration Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/fido2authenticationmethodconfiguration-delete.md | Title: "Delete fido2AuthenticationMethodConfiguration" description: "Delete a fido2AuthenticationMethodConfiguration object."-+ ms.localizationpriority: medium ms.prod: "identity-and-sign-in" doc_type: "apiPageType" |
v1.0 | Fido2authenticationmethodconfiguration Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/fido2authenticationmethodconfiguration-get.md | Title: "Get fido2AuthenticationMethodConfiguration" description: "Read the properties and relationships of a fido2AuthenticationMethodConfiguration object."-+ ms.localizationpriority: medium ms.prod: "identity-and-sign-in" doc_type: "apiPageType" Content-type: application/json "id": "all_users", "isRegistrationRequired": false }- ] + ], + "excludeTargets": [] } ``` |
v1.0 | Fido2authenticationmethodconfiguration Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/fido2authenticationmethodconfiguration-update.md | Title: "Update fido2AuthenticationMethodConfiguration" description: "Update the properties of a fido2AuthenticationMethodConfiguration object."-+ ms.localizationpriority: medium ms.prod: "identity-and-sign-in" doc_type: "apiPageType" |
v1.0 | Group List Members | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/group-list-members.md | Get a list of the group's direct members. A group can have users, contacts, devi When a group contains more than 100 members, Microsoft Graph returns a `@odata.nextLink` property in the response that contains a URL to the next page of results. If that property is present, continue making additional 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](/graph/paging). +An attempt to filter by an OData cast that represents an unsupported member type returns a `400 Bad Request` error with the `Request_UnsupportedQuery` code. + ## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). Do not supply a request body for this method. If successful, this method returns a `200 OK` response code and collection of [directoryObject](../resources/directoryobject.md) objects in the response body. +An attempt to filter by an OData cast that represents an unsupported member type returns a `400 Bad Request` error with the `Request_UnsupportedQuery` code. For example, `/groups/{id}}/members/microsoft.graph.group` when the group is a Microsoft 365 group will return this error, because Microsoft 365 groups cannot have other groups as members. + ## Examples ### Example 1: Get the direct membership in a group |
v1.0 | Group List Transitivemembers | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/group-list-transitivemembers.md | Namespace: microsoft.graph [!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] -Get a list of the group's members. A group can have users, contacts, devices, service principals, and other groups as members. This operation is transitive and will also return a flat list of all nested members. +Get a list of the group's members. A group can different object types as members. For more information about supported member types for different groups, see [Group membership](../resources/groups-overview.md#group-membership). ++This operation is transitive and returns a flat list of all nested members. An attempt to filter by an OData cast that represents an unsupported member type returns a `400 Bad Request` error with the `Request_UnsupportedQuery` code. ## Permissions Do not supply a request body for this method. If successful, this method returns a `200 OK` response code and collection of [directoryObject](../resources/directoryobject.md) objects in the response body. + An attempt to filter by an OData cast that represents an unsupported member type returns a `400 Bad Request` error with the `Request_UnsupportedQuery` code. For example, `/groups/{id}}/transitiveMembers/microsoft.graph.group` when the group is a Microsoft 365 group will return this error, because Microsoft 365 groups cannot have other groups as members. + ## Examples ### Example 1: Get the transitive membership of a group Content-type: application/json The following is an example of the request. -# [HTTP](#tab/http) - <!-- { "blockType": "ignored", "name": "get_group_transitivemembers_count" GET https://graph.microsoft.com/beta/groups/{id}/transitiveMembers/$count ConsistencyLevel: eventual ``` -# [C#](#tab/csharp) ---# [JavaScript](#tab/javascript) ---# [Objective-C](#tab/objc) ---# [Java](#tab/java) ----- #### Response The following is an example of the response. <!-- {- "blockType": "response", + "blockType": "response" } -->- ```http HTTP/1.1 200 OK Content-type: text/plain |
v1.0 | Group Post Groups | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/group-post-groups.md | Content-type: application/json The following is an example of the request. The calling user must be assigned the _RoleManagement.ReadWrite.Directory_ permission to set the **isAssignableToRole** property or update the membership of such groups. -**NOTE:** A group with **isAssignableToRole** property set to `true` cannot be of dynamic membership type. For more information, see [Using a group to manage Azure AD role assignments](https://go.microsoft.com/fwlink/?linkid=2103037). +A group with **isAssignableToRole** property set to `true` cannot be of dynamic membership type, its **securityEnabled** must be set to `true`, and **visibility** can only be `Private`. # [HTTP](#tab/http) |
v1.0 | Group Post Members | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/group-post-members.md | Namespace: microsoft.graph Add a member to a security or Microsoft 365 group through the **members** navigation property. -The following table shows the types of members that can be added to either security groups or Microsoft 365 groups. --| Object type | Member of security group | Member of Microsoft 365 group | -|-|-|-| -| User | ![Can be group member][Yes] | ![Can be group member][Yes] | -| Security group | ![Can be group member][Yes] | ![Cannot be group member][No] | -| Microsoft 365 group | ![Cannot be group member][No] | ![Cannot be group member][No] | -| Device | ![Can be group member][Yes] | ![Cannot be group member][No] | -| Service principal | ![Can be group member][Yes] | ![Cannot be group member][No] | -| Organizational contact | ![Can be group member][Yes] | ![Cannot be group member][No] | - ## Permissions |
v1.0 | Horizontalsection Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/horizontalsection-get.md | GET https://graph.microsoft.com/beta/sites/{sitesId}/pages/{sitePageId}/canvasLa [!INCLUDE [sample-code](../includes/snippets/jav)] [!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)] +# [Go](#tab/go) ++# [PowerShell](#tab/powershell) ++# [PHP](#tab/php) + GET https://graph.microsoft.com/beta/sites/{sitesId}/pages/{sitePageId}/canvasLa [!INCLUDE [sample-code](../includes/snippets/jav)] [!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)] +# [Go](#tab/go) ++# [PowerShell](#tab/powershell) ++# [PHP](#tab/php) + |
v1.0 | Horizontalsection List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/horizontalsection-list.md | GET https://graph.microsoft.com/beta/sites/{sitesId}/pages/{sitePageId}/canvasLa [!INCLUDE [sample-code](../includes/snippets/jav)] [!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)] +# [Go](#tab/go) ++# [PowerShell](#tab/powershell) ++# [PHP](#tab/php) + |
v1.0 | Horizontalsectioncolumn Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/horizontalsectioncolumn-get.md | GET https://graph.microsoft.com/beta/sites/{sitesId}/pages/{sitePageId}/canvasLa [!INCLUDE [sample-code](../includes/snippets/jav)] [!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)] +# [Go](#tab/go) ++# [PowerShell](#tab/powershell) ++# [PHP](#tab/php) + GET https://graph.microsoft.com/beta/sites/{sitesId}/pages/{sitePageId}/canvasLa [!INCLUDE [sample-code](../includes/snippets/jav)] [!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)] +# [Go](#tab/go) ++# [PowerShell](#tab/powershell) ++# [PHP](#tab/php) + |
v1.0 | Horizontalsectioncolumn List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/horizontalsectioncolumn-list.md | GET https://graph.microsoft.com/beta/sites/{sitesId}/pages/{sitePageId}/canvasLa [!INCLUDE [sample-code](../includes/snippets/jav)] [!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)] +# [Go](#tab/go) ++# [PowerShell](#tab/powershell) ++# [PHP](#tab/php) + |
v1.0 | Identitygovernance Lifecycleworkflowscontainer Post Customtaskextensions | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/identitygovernance-lifecycleworkflowscontainer-post-customtaskextensions.md | You can specify the following properties when creating a **customTaskExtension** |authenticationConfiguration|[microsoft.graph.customExtensionAuthenticationConfiguration](../resources/customextensionauthenticationconfiguration.md)|The authentication configuration for the `customTaskExtension`.| |clientConfiguration|[microsoft.graph.customExtensionClientConfiguration](../resources/customextensionclientconfiguration.md)|The client configuration for a custom extension.| |description|String|The description of the `customTaskExtension`.|-|displayName|String|The display name of the `customTaskExtension`.| +|displayName|String|A unique string that identifies the `customTaskExtension`.| |endpointConfiguration|[microsoft.graph.customExtensionEndpointConfiguration](../resources/customextensionendpointconfiguration.md)|The endpoint configuration for a custom extension. Optional.| |callbackConfiguration|[microsoft.graph.identityGovernance.customTaskExtensionCallbackConfiguration](../resources/identitygovernance-customtaskextensioncallbackconfiguration.md)|The callback configuration for a custom extension. Optional.| |
v1.0 | Identityprotectionroot List Serviceprincipalriskdetections | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/identityprotectionroot-list-serviceprincipalriskdetections.md | GET https://graph.microsoft.com/beta/identityProtection/servicePrincipalRiskDete [!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)] # [PowerShell](#tab/powershell) [!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)] # [PHP](#tab/php) |
v1.0 | Internaldomainfederation Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/internaldomainfederation-delete.md | Title: "Delete internalDomainFederation" description: "Deletes an internalDomainFederation object."-+ ms.localizationpriority: medium ms.prod: "identity-and-sign-in" doc_type: apiPageType |
v1.0 | Internaldomainfederation Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/internaldomainfederation-get.md | Title: "Get internalDomainFederation" description: "Read the properties and relationships of an internalDomainFederation object."-+ ms.localizationpriority: medium ms.prod: "identity-and-sign-in" doc_type: apiPageType |
v1.0 | Internaldomainfederation Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/internaldomainfederation-update.md | Title: "Update internalDomainFederation" description: "Update the properties of an internalDomainFederation object."-+ ms.localizationpriority: medium ms.prod: "identity-and-sign-in" doc_type: apiPageType |
v1.0 | Intune Androidforwork Androiddeviceownerenrollmentprofile Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidforwork-androiddeviceownerenrollmentprofile-create.md | Title: "Create androidDeviceOwnerEnrollmentProfile" description: "Create a new androidDeviceOwnerEnrollmentProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [androidDeviceOwnerEnrollmentProfile](../resources/intune-androidforwork-androiddeviceownerenrollmentprofile.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| The following table shows the properties that are required when you create the a |wifiPassword|String|String that contains the wi-fi login password| |wifiSecurityType|[aospWifiSecurityType](../resources/intune-androidforwork-aospwifisecuritytype.md)|String that contains the wi-fi security type. Possible values are: `none`, `wpa`, `wep`.| |wifiHidden|Boolean|Boolean that indicates if hidden wifi networks are enabled|+|isTeamsDeviceProfile|Boolean|Boolean indicating if this profile is an Android AOSP for Teams device profile.| Here is an example of the request. ``` http POST https://graph.microsoft.com/beta/deviceManagement/androidDeviceOwnerEnrollmentProfiles Content-type: application/json-Content-length: 948 +Content-length: 981 { "@odata.type": "#microsoft.graph.androidDeviceOwnerEnrollmentProfile", Content-length: 948 "wifiSsid": "Wifi Ssid value", "wifiPassword": "Wifi Password value", "wifiSecurityType": "wpa",- "wifiHidden": true + "wifiHidden": true, + "isTeamsDeviceProfile": true } ``` Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 201 Created Content-Type: application/json-Content-Length: 1120 +Content-Length: 1153 { "@odata.type": "#microsoft.graph.androidDeviceOwnerEnrollmentProfile", Content-Length: 1120 "wifiSsid": "Wifi Ssid value", "wifiPassword": "Wifi Password value", "wifiSecurityType": "wpa",- "wifiHidden": true + "wifiHidden": true, + "isTeamsDeviceProfile": true } ```----- |
v1.0 | Intune Androidforwork Androiddeviceownerenrollmentprofile Createtoken | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidforwork-androiddeviceownerenrollmentprofile-createtoken.md | Title: "createToken action" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Not yet documented -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Androidforwork Androiddeviceownerenrollmentprofile Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidforwork-androiddeviceownerenrollmentprofile-delete.md | Title: "Delete androidDeviceOwnerEnrollmentProfile" description: "Deletes a androidDeviceOwnerEnrollmentProfile."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [androidDeviceOwnerEnrollmentProfile](../resources/intune-androidforwork-androiddeviceownerenrollmentprofile.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Androidforwork Androiddeviceownerenrollmentprofile Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidforwork-androiddeviceownerenrollmentprofile-get.md | Title: "Get androidDeviceOwnerEnrollmentProfile" description: "Read properties and relationships of the androidDeviceOwnerEnrollmentProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [androidDeviceOwnerEnrollmentProfile](../resources/intune-androidforwork-androiddeviceownerenrollmentprofile.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 200 OK Content-Type: application/json-Content-Length: 1195 +Content-Length: 1230 { "value": { Content-Length: 1195 "wifiSsid": "Wifi Ssid value", "wifiPassword": "Wifi Password value", "wifiSecurityType": "wpa",- "wifiHidden": true + "wifiHidden": true, + "isTeamsDeviceProfile": true } } ```----- |
v1.0 | Intune Androidforwork Androiddeviceownerenrollmentprofile List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidforwork-androiddeviceownerenrollmentprofile-list.md | Title: "List androidDeviceOwnerEnrollmentProfiles" description: "List properties and relationships of the androidDeviceOwnerEnrollmentProfile objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [androidDeviceOwnerEnrollmentProfile](../resources/intune-androidforwork-androiddeviceownerenrollmentprofile.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 200 OK Content-Type: application/json-Content-Length: 1265 +Content-Length: 1302 { "value": [ Content-Length: 1265 "wifiSsid": "Wifi Ssid value", "wifiPassword": "Wifi Password value", "wifiSecurityType": "wpa",- "wifiHidden": true + "wifiHidden": true, + "isTeamsDeviceProfile": true } ] } ```----- |
v1.0 | Intune Androidforwork Androiddeviceownerenrollmentprofile Revoketoken | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidforwork-androiddeviceownerenrollmentprofile-revoketoken.md | Title: "revokeToken action" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Not yet documented -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Androidforwork Androiddeviceownerenrollmentprofile Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidforwork-androiddeviceownerenrollmentprofile-update.md | Title: "Update androidDeviceOwnerEnrollmentProfile" description: "Update the properties of a androidDeviceOwnerEnrollmentProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [androidDeviceOwnerEnrollmentProfile](../resources/intune-androidforwork-androiddeviceownerenrollmentprofile.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| The following table shows the properties that are required when you create the [ |wifiPassword|String|String that contains the wi-fi login password| |wifiSecurityType|[aospWifiSecurityType](../resources/intune-androidforwork-aospwifisecuritytype.md)|String that contains the wi-fi security type. Possible values are: `none`, `wpa`, `wep`.| |wifiHidden|Boolean|Boolean that indicates if hidden wifi networks are enabled|+|isTeamsDeviceProfile|Boolean|Boolean indicating if this profile is an Android AOSP for Teams device profile.| Here is an example of the request. ``` http PATCH https://graph.microsoft.com/beta/deviceManagement/androidDeviceOwnerEnrollmentProfiles/{androidDeviceOwnerEnrollmentProfileId} Content-type: application/json-Content-length: 948 +Content-length: 981 { "@odata.type": "#microsoft.graph.androidDeviceOwnerEnrollmentProfile", Content-length: 948 "wifiSsid": "Wifi Ssid value", "wifiPassword": "Wifi Password value", "wifiSecurityType": "wpa",- "wifiHidden": true + "wifiHidden": true, + "isTeamsDeviceProfile": true } ``` Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 200 OK Content-Type: application/json-Content-Length: 1120 +Content-Length: 1153 { "@odata.type": "#microsoft.graph.androidDeviceOwnerEnrollmentProfile", Content-Length: 1120 "wifiSsid": "Wifi Ssid value", "wifiPassword": "Wifi Password value", "wifiSecurityType": "wpa",- "wifiHidden": true + "wifiHidden": true, + "isTeamsDeviceProfile": true } ```----- |
v1.0 | Intune Androidforwork Androidforworkappconfigurationschema Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidforwork-androidforworkappconfigurationschema-create.md | Title: "Create androidForWorkAppConfigurationSchema" description: "Create a new androidForWorkAppConfigurationSchema object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [androidForWorkAppConfigurationSchema](../resources/intune-androidforwork-androidforworkappconfigurationschema.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 844 ] } ```----- |
v1.0 | Intune Androidforwork Androidforworkappconfigurationschema Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidforwork-androidforworkappconfigurationschema-delete.md | Title: "Delete androidForWorkAppConfigurationSchema" description: "Deletes a androidForWorkAppConfigurationSchema."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [androidForWorkAppConfigurationSchema](../resources/intune-androidforwork-androidforworkappconfigurationschema.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Androidforwork Androidforworkappconfigurationschema Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidforwork-androidforworkappconfigurationschema-get.md | Title: "Get androidForWorkAppConfigurationSchema" description: "Read properties and relationships of the androidForWorkAppConfigurationSchema object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [androidForWorkAppConfigurationSchema](../resources/intune-androidforwork-androidforworkappconfigurationschema.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 913 } } ```----- |
v1.0 | Intune Androidforwork Androidforworkappconfigurationschema List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidforwork-androidforworkappconfigurationschema-list.md | Title: "List androidForWorkAppConfigurationSchemas" description: "List properties and relationships of the androidForWorkAppConfigurationSchema objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [androidForWorkAppConfigurationSchema](../resources/intune-androidforwork-androidforworkappconfigurationschema.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 977 ] } ```----- |
v1.0 | Intune Androidforwork Androidforworkappconfigurationschema Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidforwork-androidforworkappconfigurationschema-update.md | Title: "Update androidForWorkAppConfigurationSchema" description: "Update the properties of a androidForWorkAppConfigurationSchema object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [androidForWorkAppConfigurationSchema](../resources/intune-androidforwork-androidforworkappconfigurationschema.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 844 ] } ```----- |
v1.0 | Intune Androidforwork Androidforworkenrollmentprofile Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidforwork-androidforworkenrollmentprofile-create.md | Title: "Create androidForWorkEnrollmentProfile" description: "Create a new androidForWorkEnrollmentProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [androidForWorkEnrollmentProfile](../resources/intune-androidforwork-androidforworkenrollmentprofile.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 668 } } ```----- |
v1.0 | Intune Androidforwork Androidforworkenrollmentprofile Createtoken | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidforwork-androidforworkenrollmentprofile-createtoken.md | Title: "createToken action" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Not yet documented -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Androidforwork Androidforworkenrollmentprofile Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidforwork-androidforworkenrollmentprofile-delete.md | Title: "Delete androidForWorkEnrollmentProfile" description: "Deletes a androidForWorkEnrollmentProfile."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [androidForWorkEnrollmentProfile](../resources/intune-androidforwork-androidforworkenrollmentprofile.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Androidforwork Androidforworkenrollmentprofile Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidforwork-androidforworkenrollmentprofile-get.md | Title: "Get androidForWorkEnrollmentProfile" description: "Read properties and relationships of the androidForWorkEnrollmentProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [androidForWorkEnrollmentProfile](../resources/intune-androidforwork-androidforworkenrollmentprofile.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 719 } } ```----- |
v1.0 | Intune Androidforwork Androidforworkenrollmentprofile List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidforwork-androidforworkenrollmentprofile-list.md | Title: "List androidForWorkEnrollmentProfiles" description: "List properties and relationships of the androidForWorkEnrollmentProfile objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [androidForWorkEnrollmentProfile](../resources/intune-androidforwork-androidforworkenrollmentprofile.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 765 ] } ```----- |
v1.0 | Intune Androidforwork Androidforworkenrollmentprofile Revoketoken | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidforwork-androidforworkenrollmentprofile-revoketoken.md | Title: "revokeToken action" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Not yet documented -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Androidforwork Androidforworkenrollmentprofile Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidforwork-androidforworkenrollmentprofile-update.md | Title: "Update androidForWorkEnrollmentProfile" description: "Update the properties of a androidForWorkEnrollmentProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [androidForWorkEnrollmentProfile](../resources/intune-androidforwork-androidforworkenrollmentprofile.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 668 } } ```----- |
v1.0 | Intune Androidforwork Androidforworksettings Completesignup | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidforwork-androidforworksettings-completesignup.md | Title: "completeSignup action" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Not yet documented -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Androidforwork Androidforworksettings Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidforwork-androidforworksettings-get.md | Title: "Get androidForWorkSettings" description: "Read properties and relationships of the androidForWorkSettings object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [androidForWorkSettings](../resources/intune-androidforwork-androidforworksettings.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 613 } } ```----- |
v1.0 | Intune Androidforwork Androidforworksettings Requestsignupurl | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidforwork-androidforworksettings-requestsignupurl.md | Title: "requestSignupUrl action" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Not yet documented -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 56 "value": "https://example.com/requestSignupUrl/" } ```----- |
v1.0 | Intune Androidforwork Androidforworksettings Syncapps | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidforwork-androidforworksettings-syncapps.md | Title: "syncApps action" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Not yet documented -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Androidforwork Androidforworksettings Unbind | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidforwork-androidforworksettings-unbind.md | Title: "unbind action" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Not yet documented -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Androidforwork Androidforworksettings Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidforwork-androidforworksettings-update.md | Title: "Update androidForWorkSettings" description: "Update the properties of a androidForWorkSettings object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [androidForWorkSettings](../resources/intune-androidforwork-androidforworksettings.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 568 "deviceOwnerManagementEnabled": true } ```----- |
v1.0 | Intune Androidforwork Androidmanagedstoreaccountenterprisesettings Approveapps | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidforwork-androidmanagedstoreaccountenterprisesettings-approveapps.md | Title: "approveApps action" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Not yet documented -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Androidforwork Androidmanagedstoreaccountenterprisesettings Completesignup | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidforwork-androidmanagedstoreaccountenterprisesettings-completesignup.md | Title: "completeSignup action" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Not yet documented -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Androidforwork Androidmanagedstoreaccountenterprisesettings Creategoogleplaywebtoken | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidforwork-androidmanagedstoreaccountenterprisesettings-creategoogleplaywebtoken.md | Title: "createGooglePlayWebToken action" description: "Generates a web token that is used in an embeddable component."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Generates a web token that is used in an embeddable component. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 53 "value": "Create Google Play Web Token value" } ```----- |
v1.0 | Intune Androidforwork Androidmanagedstoreaccountenterprisesettings Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidforwork-androidmanagedstoreaccountenterprisesettings-get.md | Title: "Get androidManagedStoreAccountEnterpriseSettings" description: "Read properties and relationships of the androidManagedStoreAccountEnterpriseSettings object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [androidManagedStoreAccountEnterpriseSettings](../resources/intune-androidforwork-androidmanagedstoreaccountenterprisesettings.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1192 } } ```----- |
v1.0 | Intune Androidforwork Androidmanagedstoreaccountenterprisesettings Requestsignupurl | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidforwork-androidmanagedstoreaccountenterprisesettings-requestsignupurl.md | Title: "requestSignupUrl action" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Not yet documented -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 56 "value": "https://example.com/requestSignupUrl/" } ```----- |
v1.0 | Intune Androidforwork Androidmanagedstoreaccountenterprisesettings Setandroiddeviceownerfullymanagedenrollmentstate | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidforwork-androidmanagedstoreaccountenterprisesettings-setandroiddeviceownerfullymanagedenrollmentstate.md | Title: "setAndroidDeviceOwnerFullyManagedEnrollmentState action" description: "Sets the AndroidManagedStoreAccountEnterpriseSettings AndroidDeviceOwnerFullyManagedEnrollmentEnabled to the given value."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Sets the AndroidManagedStoreAccountEnterpriseSettings AndroidDeviceOwnerFullyManagedEnrollmentEnabled to the given value. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Androidforwork Androidmanagedstoreaccountenterprisesettings Syncapps | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidforwork-androidmanagedstoreaccountenterprisesettings-syncapps.md | Title: "syncApps action" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Not yet documented -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Androidforwork Androidmanagedstoreaccountenterprisesettings Unbind | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidforwork-androidmanagedstoreaccountenterprisesettings-unbind.md | Title: "unbind action" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Not yet documented -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Androidforwork Androidmanagedstoreaccountenterprisesettings Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidforwork-androidmanagedstoreaccountenterprisesettings-update.md | Title: "Update androidManagedStoreAccountEnterpriseSettings" description: "Update the properties of a androidManagedStoreAccountEnterpriseSettings object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [androidManagedStoreAccountEnterpriseSettings](../resources/intune-androidforwork-androidmanagedstoreaccountenterprisesettings.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1115 ] } ```----- |
v1.0 | Intune Androidforwork Androidmanagedstoreappconfigurationschema Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidforwork-androidmanagedstoreappconfigurationschema-create.md | Title: "Create androidManagedStoreAppConfigurationSchema" description: "Create a new androidManagedStoreAppConfigurationSchema object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [androidManagedStoreAppConfigurationSchema](../resources/intune-androidforwork-androidmanagedstoreappconfigurationschema.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1634 ] } ```----- |
v1.0 | Intune Androidforwork Androidmanagedstoreappconfigurationschema Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidforwork-androidmanagedstoreappconfigurationschema-delete.md | Title: "Delete androidManagedStoreAppConfigurationSchema" description: "Deletes a androidManagedStoreAppConfigurationSchema."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [androidManagedStoreAppConfigurationSchema](../resources/intune-androidforwork-androidmanagedstoreappconfigurationschema.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Androidforwork Androidmanagedstoreappconfigurationschema Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidforwork-androidmanagedstoreappconfigurationschema-get.md | Title: "Get androidManagedStoreAppConfigurationSchema" description: "Read properties and relationships of the androidManagedStoreAppConfigurationSchema object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [androidManagedStoreAppConfigurationSchema](../resources/intune-androidforwork-androidmanagedstoreappconfigurationschema.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1755 } } ```----- |
v1.0 | Intune Androidforwork Androidmanagedstoreappconfigurationschema List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidforwork-androidmanagedstoreappconfigurationschema-list.md | Title: "List androidManagedStoreAppConfigurationSchemas" description: "List properties and relationships of the androidManagedStoreAppConfigurationSchema objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [androidManagedStoreAppConfigurationSchema](../resources/intune-androidforwork-androidmanagedstoreappconfigurationschema.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1871 ] } ```----- |
v1.0 | Intune Androidforwork Androidmanagedstoreappconfigurationschema Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidforwork-androidmanagedstoreappconfigurationschema-update.md | Title: "Update androidManagedStoreAppConfigurationSchema" description: "Update the properties of a androidManagedStoreAppConfigurationSchema object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [androidManagedStoreAppConfigurationSchema](../resources/intune-androidforwork-androidmanagedstoreappconfigurationschema.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1634 ] } ```----- |
v1.0 | Intune Androidfotaservice Devicemanagementreports Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidfotaservice-devicemanagementreports-get.md | Title: "Get deviceManagementReports" description: "Read properties and relationships of the deviceManagementReports object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [deviceManagementReports](../resources/intune-androidfotaservice-devicemanagementreports.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 86 } } ```----- |
v1.0 | Intune Androidfotaservice Devicemanagementreports Getzebrafotadeploymentreport | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidfotaservice-devicemanagementreports-getzebrafotadeploymentreport.md | Title: "getZebraFotaDeploymentReport action" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Not yet documented -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 95 "value": "Z2V0WmVicmFGb3RhRGVwbG95bWVudFJlcG9ydCBJbnR1bmUgRG9jIFNhbXBsZSAyMDcxMDQ2MzM5" } ```----- |
v1.0 | Intune Androidfotaservice Devicemanagementreports Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidfotaservice-devicemanagementreports-update.md | Title: "Update deviceManagementReports" description: "Update the properties of a deviceManagementReports object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [deviceManagementReports](../resources/intune-androidfotaservice-devicemanagementreports.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 65 "@odata.type": "#microsoft.graph.deviceManagementReports" } ```----- |
v1.0 | Intune Androidfotaservice Zebrafotaartifact Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidfotaservice-zebrafotaartifact-create.md | Title: "Create zebraFotaArtifact" description: "Create a new zebraFotaArtifact object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [zebraFotaArtifact](../resources/intune-androidfotaservice-zebrafotaartifact.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 399 "description": "Description value" } ```----- |
v1.0 | Intune Androidfotaservice Zebrafotaartifact Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidfotaservice-zebrafotaartifact-delete.md | Title: "Delete zebraFotaArtifact" description: "Deletes a zebraFotaArtifact."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [zebraFotaArtifact](../resources/intune-androidfotaservice-zebrafotaartifact.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Androidfotaservice Zebrafotaartifact Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidfotaservice-zebrafotaartifact-get.md | Title: "Get zebraFotaArtifact" description: "Read properties and relationships of the zebraFotaArtifact object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [zebraFotaArtifact](../resources/intune-androidfotaservice-zebrafotaartifact.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 434 } } ```----- |
v1.0 | Intune Androidfotaservice Zebrafotaartifact List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidfotaservice-zebrafotaartifact-list.md | Title: "List zebraFotaArtifacts" description: "List properties and relationships of the zebraFotaArtifact objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [zebraFotaArtifact](../resources/intune-androidfotaservice-zebrafotaartifact.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 464 ] } ```----- |
v1.0 | Intune Androidfotaservice Zebrafotaartifact Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidfotaservice-zebrafotaartifact-update.md | Title: "Update zebraFotaArtifact" description: "Update the properties of a zebraFotaArtifact object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [zebraFotaArtifact](../resources/intune-androidfotaservice-zebrafotaartifact.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 399 "description": "Description value" } ```----- |
v1.0 | Intune Androidfotaservice Zebrafotaconnector Approvefotaapps | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidfotaservice-zebrafotaconnector-approvefotaapps.md | Title: "approveFotaApps action" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Not yet documented -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 21 "value": true } ```----- |
v1.0 | Intune Androidfotaservice Zebrafotaconnector Connect | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidfotaservice-zebrafotaconnector-connect.md | Title: "connect action" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Not yet documented -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 21 "value": true } ```----- |
v1.0 | Intune Androidfotaservice Zebrafotaconnector Disconnect | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidfotaservice-zebrafotaconnector-disconnect.md | Title: "disconnect action" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Not yet documented -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 21 "value": true } ```----- |
v1.0 | Intune Androidfotaservice Zebrafotaconnector Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidfotaservice-zebrafotaconnector-get.md | Title: "Get zebraFotaConnector" description: "Read properties and relationships of the zebraFotaConnector object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [zebraFotaConnector](../resources/intune-androidfotaservice-zebrafotaconnector.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 388 } } ```----- |
v1.0 | Intune Androidfotaservice Zebrafotaconnector Hasactivedeployments | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidfotaservice-zebrafotaconnector-hasactivedeployments.md | Title: "hasActiveDeployments action" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Not yet documented -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 21 "value": true } ```----- |
v1.0 | Intune Androidfotaservice Zebrafotaconnector Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidfotaservice-zebrafotaconnector-update.md | Title: "Update zebraFotaConnector" description: "Update the properties of a zebraFotaConnector object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [zebraFotaConnector](../resources/intune-androidfotaservice-zebrafotaconnector.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 355 "fotaAppsApproved": true } ```----- |
v1.0 | Intune Androidfotaservice Zebrafotadeployment Cancel | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidfotaservice-zebrafotadeployment-cancel.md | Title: "cancel action" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Not yet documented -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 21 "value": true } ```----- |
v1.0 | Intune Androidfotaservice Zebrafotadeployment Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidfotaservice-zebrafotadeployment-create.md | Title: "Create zebraFotaDeployment" description: "Create a new zebraFotaDeployment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [zebraFotaDeployment](../resources/intune-androidfotaservice-zebrafotadeployment.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 2073 } } ```----- |
v1.0 | Intune Androidfotaservice Zebrafotadeployment Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidfotaservice-zebrafotadeployment-delete.md | Title: "Delete zebraFotaDeployment" description: "Deletes a zebraFotaDeployment."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [zebraFotaDeployment](../resources/intune-androidfotaservice-zebrafotadeployment.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Androidfotaservice Zebrafotadeployment Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidfotaservice-zebrafotadeployment-get.md | Title: "Get zebraFotaDeployment" description: "Read properties and relationships of the zebraFotaDeployment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [zebraFotaDeployment](../resources/intune-androidfotaservice-zebrafotadeployment.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 2194 } } ```----- |
v1.0 | Intune Androidfotaservice Zebrafotadeployment List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidfotaservice-zebrafotadeployment-list.md | Title: "List zebraFotaDeployments" description: "List properties and relationships of the zebraFotaDeployment objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [zebraFotaDeployment](../resources/intune-androidfotaservice-zebrafotadeployment.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 2310 ] } ```----- |
v1.0 | Intune Androidfotaservice Zebrafotadeployment Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-androidfotaservice-zebrafotadeployment-update.md | Title: "Update zebraFotaDeployment" description: "Update the properties of a zebraFotaDeployment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [zebraFotaDeployment](../resources/intune-androidfotaservice-zebrafotadeployment.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 2073 } } ```----- |
v1.0 | Intune Apps Androidforworkapp Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-androidforworkapp-create.md | Title: "Create androidForWorkApp" description: "Create a new androidForWorkApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [androidForWorkApp](../resources/intune-apps-androidforworkapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1132 "appStoreUrl": "https://example.com/appStoreUrl/" } ```----- |
v1.0 | Intune Apps Androidforworkapp Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-androidforworkapp-delete.md | Title: "Delete androidForWorkApp" description: "Deletes a androidForWorkApp."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [androidForWorkApp](../resources/intune-apps-androidforworkapp.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Androidforworkapp Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-androidforworkapp-get.md | Title: "Get androidForWorkApp" description: "Read properties and relationships of the androidForWorkApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [androidForWorkApp](../resources/intune-apps-androidforworkapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1215 } } ```----- |
v1.0 | Intune Apps Androidforworkapp List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-androidforworkapp-list.md | Title: "List androidForWorkApps" description: "List properties and relationships of the androidForWorkApp objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [androidForWorkApp](../resources/intune-apps-androidforworkapp.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1293 ] } ```----- |
v1.0 | Intune Apps Androidforworkapp Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-androidforworkapp-update.md | Title: "Update androidForWorkApp" description: "Update the properties of a androidForWorkApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [androidForWorkApp](../resources/intune-apps-androidforworkapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1132 "appStoreUrl": "https://example.com/appStoreUrl/" } ```----- |
v1.0 | Intune Apps Androidforworkmobileappconfiguration Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-androidforworkmobileappconfiguration-create.md | Title: "Create androidForWorkMobileAppConfiguration" description: "Create a new androidForWorkMobileAppConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [androidForWorkMobileAppConfiguration](../resources/intune-apps-androidforworkmobileappconfiguration.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 814 "connectedAppsEnabled": true } ```----- |
v1.0 | Intune Apps Androidforworkmobileappconfiguration Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-androidforworkmobileappconfiguration-delete.md | Title: "Delete androidForWorkMobileAppConfiguration" description: "Deletes a androidForWorkMobileAppConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [androidForWorkMobileAppConfiguration](../resources/intune-apps-androidforworkmobileappconfiguration.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Androidforworkmobileappconfiguration Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-androidforworkmobileappconfiguration-get.md | Title: "Get androidForWorkMobileAppConfiguration" description: "Read properties and relationships of the androidForWorkMobileAppConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [androidForWorkMobileAppConfiguration](../resources/intune-apps-androidforworkmobileappconfiguration.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 881 } } ```----- |
v1.0 | Intune Apps Androidforworkmobileappconfiguration List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-androidforworkmobileappconfiguration-list.md | Title: "List androidForWorkMobileAppConfigurations" description: "List properties and relationships of the androidForWorkMobileAppConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [androidForWorkMobileAppConfiguration](../resources/intune-apps-androidforworkmobileappconfiguration.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 943 ] } ```----- |
v1.0 | Intune Apps Androidforworkmobileappconfiguration Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-androidforworkmobileappconfiguration-update.md | Title: "Update androidForWorkMobileAppConfiguration" description: "Update the properties of a androidForWorkMobileAppConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [androidForWorkMobileAppConfiguration](../resources/intune-apps-androidforworkmobileappconfiguration.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 814 "connectedAppsEnabled": true } ```----- |
v1.0 | Intune Apps Androidlobapp Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-androidlobapp-create.md | Title: "Create androidLobApp" description: "Create a new androidLobApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [androidLobApp](../resources/intune-apps-androidlobapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1682 "identityVersion": "Identity Version value" } ```----- |
v1.0 | Intune Apps Androidlobapp Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-androidlobapp-delete.md | Title: "Delete androidLobApp" description: "Deletes a androidLobApp."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [androidLobApp](../resources/intune-apps-androidlobapp.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Androidlobapp Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-androidlobapp-get.md | Title: "Get androidLobApp" description: "Read properties and relationships of the androidLobApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [androidLobApp](../resources/intune-apps-androidlobapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1809 } } ```----- |
v1.0 | Intune Apps Androidlobapp List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-androidlobapp-list.md | Title: "List androidLobApps" description: "List properties and relationships of the androidLobApp objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [androidLobApp](../resources/intune-apps-androidlobapp.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1931 ] } ```----- |
v1.0 | Intune Apps Androidlobapp Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-androidlobapp-update.md | Title: "Update androidLobApp" description: "Update the properties of a androidLobApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [androidLobApp](../resources/intune-apps-androidlobapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1682 "identityVersion": "Identity Version value" } ```----- |
v1.0 | Intune Apps Androidmanagedstoreapp Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-androidmanagedstoreapp-create.md | Title: "Create androidManagedStoreApp" description: "Create a new androidManagedStoreApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [androidManagedStoreApp](../resources/intune-apps-androidmanagedstoreapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1397 "supportsOemConfig": true } ```----- |
v1.0 | Intune Apps Androidmanagedstoreapp Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-androidmanagedstoreapp-delete.md | Title: "Delete androidManagedStoreApp" description: "Deletes a androidManagedStoreApp."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [androidManagedStoreApp](../resources/intune-apps-androidmanagedstoreapp.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Androidmanagedstoreapp Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-androidmanagedstoreapp-get.md | Title: "Get androidManagedStoreApp" description: "Read properties and relationships of the androidManagedStoreApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [androidManagedStoreApp](../resources/intune-apps-androidmanagedstoreapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1500 } } ```----- |
v1.0 | Intune Apps Androidmanagedstoreapp List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-androidmanagedstoreapp-list.md | Title: "List androidManagedStoreApps" description: "List properties and relationships of the androidManagedStoreApp objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [androidManagedStoreApp](../resources/intune-apps-androidmanagedstoreapp.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1598 ] } ```----- |
v1.0 | Intune Apps Androidmanagedstoreapp Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-androidmanagedstoreapp-update.md | Title: "Update androidManagedStoreApp" description: "Update the properties of a androidManagedStoreApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [androidManagedStoreApp](../resources/intune-apps-androidmanagedstoreapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1397 "supportsOemConfig": true } ```----- |
v1.0 | Intune Apps Androidmanagedstoreappconfiguration Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-androidmanagedstoreappconfiguration-create.md | Title: "Create androidManagedStoreAppConfiguration" description: "Create a new androidManagedStoreAppConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [androidManagedStoreAppConfiguration](../resources/intune-apps-androidmanagedstoreappconfiguration.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 846 "connectedAppsEnabled": true } ```----- |
v1.0 | Intune Apps Androidmanagedstoreappconfiguration Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-androidmanagedstoreappconfiguration-delete.md | Title: "Delete androidManagedStoreAppConfiguration" description: "Deletes a androidManagedStoreAppConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [androidManagedStoreAppConfiguration](../resources/intune-apps-androidmanagedstoreappconfiguration.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Androidmanagedstoreappconfiguration Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-androidmanagedstoreappconfiguration-get.md | Title: "Get androidManagedStoreAppConfiguration" description: "Read properties and relationships of the androidManagedStoreAppConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [androidManagedStoreAppConfiguration](../resources/intune-apps-androidmanagedstoreappconfiguration.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 915 } } ```----- |
v1.0 | Intune Apps Androidmanagedstoreappconfiguration List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-androidmanagedstoreappconfiguration-list.md | Title: "List androidManagedStoreAppConfigurations" description: "List properties and relationships of the androidManagedStoreAppConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [androidManagedStoreAppConfiguration](../resources/intune-apps-androidmanagedstoreappconfiguration.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 979 ] } ```----- |
v1.0 | Intune Apps Androidmanagedstoreappconfiguration Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-androidmanagedstoreappconfiguration-update.md | Title: "Update androidManagedStoreAppConfiguration" description: "Update the properties of a androidManagedStoreAppConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [androidManagedStoreAppConfiguration](../resources/intune-apps-androidmanagedstoreappconfiguration.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 846 "connectedAppsEnabled": true } ```----- |
v1.0 | Intune Apps Androidmanagedstorewebapp Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-androidmanagedstorewebapp-create.md | Title: "Create androidManagedStoreWebApp" description: "Create a new androidManagedStoreWebApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [androidManagedStoreWebApp](../resources/intune-apps-androidmanagedstorewebapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1400 "supportsOemConfig": true } ```----- |
v1.0 | Intune Apps Androidmanagedstorewebapp Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-androidmanagedstorewebapp-delete.md | Title: "Delete androidManagedStoreWebApp" description: "Deletes a androidManagedStoreWebApp."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [androidManagedStoreWebApp](../resources/intune-apps-androidmanagedstorewebapp.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Androidmanagedstorewebapp Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-androidmanagedstorewebapp-get.md | Title: "Get androidManagedStoreWebApp" description: "Read properties and relationships of the androidManagedStoreWebApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [androidManagedStoreWebApp](../resources/intune-apps-androidmanagedstorewebapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1503 } } ```----- |
v1.0 | Intune Apps Androidmanagedstorewebapp List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-androidmanagedstorewebapp-list.md | Title: "List androidManagedStoreWebApps" description: "List properties and relationships of the androidManagedStoreWebApp objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [androidManagedStoreWebApp](../resources/intune-apps-androidmanagedstorewebapp.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1601 ] } ```----- |
v1.0 | Intune Apps Androidmanagedstorewebapp Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-androidmanagedstorewebapp-update.md | Title: "Update androidManagedStoreWebApp" description: "Update the properties of a androidManagedStoreWebApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [androidManagedStoreWebApp](../resources/intune-apps-androidmanagedstorewebapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1400 "supportsOemConfig": true } ```----- |
v1.0 | Intune Apps Androidstoreapp Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-androidstoreapp-create.md | Title: "Create androidStoreApp" description: "Create a new androidStoreApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [androidStoreApp](../resources/intune-apps-androidstoreapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1499 } } ```----- |
v1.0 | Intune Apps Androidstoreapp Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-androidstoreapp-delete.md | Title: "Delete androidStoreApp" description: "Deletes a androidStoreApp."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [androidStoreApp](../resources/intune-apps-androidstoreapp.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Androidstoreapp Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-androidstoreapp-get.md | Title: "Get androidStoreApp" description: "Read properties and relationships of the androidStoreApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [androidStoreApp](../resources/intune-apps-androidstoreapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1616 } } ```----- |
v1.0 | Intune Apps Androidstoreapp List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-androidstoreapp-list.md | Title: "List androidStoreApps" description: "List properties and relationships of the androidStoreApp objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [androidStoreApp](../resources/intune-apps-androidstoreapp.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1728 ] } ```----- |
v1.0 | Intune Apps Androidstoreapp Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-androidstoreapp-update.md | Title: "Update androidStoreApp" description: "Update the properties of a androidStoreApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [androidStoreApp](../resources/intune-apps-androidstoreapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1499 } } ```----- |
v1.0 | Intune Apps Enterprisecodesigningcertificate Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-enterprisecodesigningcertificate-create.md | Title: "Create enterpriseCodeSigningCertificate" description: "Create a new enterpriseCodeSigningCertificate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [enterpriseCodeSigningCertificate](../resources/intune-apps-enterprisecodesigningcertificate.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 439 "uploadDateTime": "2016-12-31T23:58:46.5747426-08:00" } ```----- |
v1.0 | Intune Apps Enterprisecodesigningcertificate Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-enterprisecodesigningcertificate-delete.md | Title: "Delete enterpriseCodeSigningCertificate" description: "Deletes a enterpriseCodeSigningCertificate."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [enterpriseCodeSigningCertificate](../resources/intune-apps-enterprisecodesigningcertificate.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Enterprisecodesigningcertificate Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-enterprisecodesigningcertificate-get.md | Title: "Get enterpriseCodeSigningCertificate" description: "Read properties and relationships of the enterpriseCodeSigningCertificate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [enterpriseCodeSigningCertificate](../resources/intune-apps-enterprisecodesigningcertificate.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 478 } } ```----- |
v1.0 | Intune Apps Enterprisecodesigningcertificate List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-enterprisecodesigningcertificate-list.md | Title: "List enterpriseCodeSigningCertificates" description: "List properties and relationships of the enterpriseCodeSigningCertificate objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [enterpriseCodeSigningCertificate](../resources/intune-apps-enterprisecodesigningcertificate.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 512 ] } ```----- |
v1.0 | Intune Apps Enterprisecodesigningcertificate Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-enterprisecodesigningcertificate-update.md | Title: "Update enterpriseCodeSigningCertificate" description: "Update the properties of a enterpriseCodeSigningCertificate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [enterpriseCodeSigningCertificate](../resources/intune-apps-enterprisecodesigningcertificate.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 439 "uploadDateTime": "2016-12-31T23:58:46.5747426-08:00" } ```----- |
v1.0 | Intune Apps Iosipadoswebclip Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-iosipadoswebclip-create.md | Title: "Create iosiPadOSWebClip" description: "Create a new iosiPadOSWebClip object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [iosiPadOSWebClip](../resources/intune-apps-iosipadoswebclip.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1018 "useManagedBrowser": true } ```----- |
v1.0 | Intune Apps Iosipadoswebclip Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-iosipadoswebclip-delete.md | Title: "Delete iosiPadOSWebClip" description: "Deletes a iosiPadOSWebClip."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [iosiPadOSWebClip](../resources/intune-apps-iosipadoswebclip.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Iosipadoswebclip Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-iosipadoswebclip-get.md | Title: "Get iosiPadOSWebClip" description: "Read properties and relationships of the iosiPadOSWebClip object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [iosiPadOSWebClip](../resources/intune-apps-iosipadoswebclip.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1095 } } ```----- |
v1.0 | Intune Apps Iosipadoswebclip List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-iosipadoswebclip-list.md | Title: "List iosiPadOSWebClips" description: "List properties and relationships of the iosiPadOSWebClip objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [iosiPadOSWebClip](../resources/intune-apps-iosipadoswebclip.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1167 ] } ```----- |
v1.0 | Intune Apps Iosipadoswebclip Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-iosipadoswebclip-update.md | Title: "Update iosiPadOSWebClip" description: "Update the properties of a iosiPadOSWebClip object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [iosiPadOSWebClip](../resources/intune-apps-iosipadoswebclip.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1018 "useManagedBrowser": true } ```----- |
v1.0 | Intune Apps Ioslobapp Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-ioslobapp-create.md | Title: "Create iosLobApp" description: "Create a new iosLobApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [iosLobApp](../resources/intune-apps-ioslobapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| The following table shows the properties that are required when you create the i |expirationDateTime|DateTimeOffset|The expiration time.| |versionNumber|String|The version number of iOS Line of Business (LoB) app.| |buildNumber|String|The build number of iOS Line of Business (LoB) app.|-|identityVersion|String|The identity version. This property is being deprecated in 2211(November 2022)| Here is an example of the request. ``` http POST https://graph.microsoft.com/beta/deviceAppManagement/mobileApps Content-type: application/json-Content-length: 1508 +Content-length: 1460 { "@odata.type": "#microsoft.graph.iosLobApp", Content-length: 1508 }, "expirationDateTime": "2016-12-31T23:57:57.2481234-08:00", "versionNumber": "Version Number value",- "buildNumber": "Build Number value", - "identityVersion": "Identity Version value" + "buildNumber": "Build Number value" } ``` Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 201 Created Content-Type: application/json-Content-Length: 1680 +Content-Length: 1632 { "@odata.type": "#microsoft.graph.iosLobApp", Content-Length: 1680 }, "expirationDateTime": "2016-12-31T23:57:57.2481234-08:00", "versionNumber": "Version Number value",- "buildNumber": "Build Number value", - "identityVersion": "Identity Version value" + "buildNumber": "Build Number value" } ```----- |
v1.0 | Intune Apps Ioslobapp Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-ioslobapp-delete.md | Title: "Delete iosLobApp" description: "Deletes a iosLobApp."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [iosLobApp](../resources/intune-apps-ioslobapp.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Ioslobapp Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-ioslobapp-get.md | Title: "Get iosLobApp" description: "Read properties and relationships of the iosLobApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [iosLobApp](../resources/intune-apps-ioslobapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 200 OK Content-Type: application/json-Content-Length: 1801 +Content-Length: 1751 { "value": { Content-Length: 1801 }, "expirationDateTime": "2016-12-31T23:57:57.2481234-08:00", "versionNumber": "Version Number value",- "buildNumber": "Build Number value", - "identityVersion": "Identity Version value" + "buildNumber": "Build Number value" } } ```----- |
v1.0 | Intune Apps Ioslobapp List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-ioslobapp-list.md | Title: "List iosLobApps" description: "List properties and relationships of the iosLobApp objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [iosLobApp](../resources/intune-apps-ioslobapp.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 200 OK Content-Type: application/json-Content-Length: 1917 +Content-Length: 1865 { "value": [ Content-Length: 1917 }, "expirationDateTime": "2016-12-31T23:57:57.2481234-08:00", "versionNumber": "Version Number value",- "buildNumber": "Build Number value", - "identityVersion": "Identity Version value" + "buildNumber": "Build Number value" } ] } ```----- |
v1.0 | Intune Apps Ioslobapp Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-ioslobapp-update.md | Title: "Update iosLobApp" description: "Update the properties of a iosLobApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [iosLobApp](../resources/intune-apps-ioslobapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| The following table shows the properties that are required when you create the [ |expirationDateTime|DateTimeOffset|The expiration time.| |versionNumber|String|The version number of iOS Line of Business (LoB) app.| |buildNumber|String|The build number of iOS Line of Business (LoB) app.|-|identityVersion|String|The identity version. This property is being deprecated in 2211(November 2022)| Here is an example of the request. ``` http PATCH https://graph.microsoft.com/beta/deviceAppManagement/mobileApps/{mobileAppId} Content-type: application/json-Content-length: 1508 +Content-length: 1460 { "@odata.type": "#microsoft.graph.iosLobApp", Content-length: 1508 }, "expirationDateTime": "2016-12-31T23:57:57.2481234-08:00", "versionNumber": "Version Number value",- "buildNumber": "Build Number value", - "identityVersion": "Identity Version value" + "buildNumber": "Build Number value" } ``` Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 200 OK Content-Type: application/json-Content-Length: 1680 +Content-Length: 1632 { "@odata.type": "#microsoft.graph.iosLobApp", Content-Length: 1680 }, "expirationDateTime": "2016-12-31T23:57:57.2481234-08:00", "versionNumber": "Version Number value",- "buildNumber": "Build Number value", - "identityVersion": "Identity Version value" + "buildNumber": "Build Number value" } ```----- |
v1.0 | Intune Apps Ioslobappprovisioningconfigurationassignment Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-ioslobappprovisioningconfigurationassignment-create.md | Title: "Create iosLobAppProvisioningConfigurationAssignment" description: "Create a new iosLobAppProvisioningConfigurationAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [iosLobAppProvisioningConfigurationAssignment](../resources/intune-apps-ioslobappprovisioningconfigurationassignment.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 400 } } ```----- |
v1.0 | Intune Apps Ioslobappprovisioningconfigurationassignment Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-ioslobappprovisioningconfigurationassignment-delete.md | Title: "Delete iosLobAppProvisioningConfigurationAssignment" description: "Deletes a iosLobAppProvisioningConfigurationAssignment."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [iosLobAppProvisioningConfigurationAssignment](../resources/intune-apps-ioslobappprovisioningconfigurationassignment.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Ioslobappprovisioningconfigurationassignment Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-ioslobappprovisioningconfigurationassignment-get.md | Title: "Get iosLobAppProvisioningConfigurationAssignment" description: "Read properties and relationships of the iosLobAppProvisioningConfigurationAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [iosLobAppProvisioningConfigurationAssignment](../resources/intune-apps-ioslobappprovisioningconfigurationassignment.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 433 } } ```----- |
v1.0 | Intune Apps Ioslobappprovisioningconfigurationassignment List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-ioslobappprovisioningconfigurationassignment-list.md | Title: "List iosLobAppProvisioningConfigurationAssignments" description: "List properties and relationships of the iosLobAppProvisioningConfigurationAssignment objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [iosLobAppProvisioningConfigurationAssignment](../resources/intune-apps-ioslobappprovisioningconfigurationassignment.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 461 ] } ```----- |
v1.0 | Intune Apps Ioslobappprovisioningconfigurationassignment Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-ioslobappprovisioningconfigurationassignment-update.md | Title: "Update iosLobAppProvisioningConfigurationAssignment" description: "Update the properties of a iosLobAppProvisioningConfigurationAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [iosLobAppProvisioningConfigurationAssignment](../resources/intune-apps-ioslobappprovisioningconfigurationassignment.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 400 } } ```----- |
v1.0 | Intune Apps Iosmobileappconfiguration Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-iosmobileappconfiguration-create.md | Title: "Create iosMobileAppConfiguration" description: "Create a new iosMobileAppConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [iosMobileAppConfiguration](../resources/intune-apps-iosmobileappconfiguration.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 768 ] } ```----- |
v1.0 | Intune Apps Iosmobileappconfiguration Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-iosmobileappconfiguration-delete.md | Title: "Delete iosMobileAppConfiguration" description: "Deletes a iosMobileAppConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [iosMobileAppConfiguration](../resources/intune-apps-iosmobileappconfiguration.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Iosmobileappconfiguration Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-iosmobileappconfiguration-get.md | Title: "Get iosMobileAppConfiguration" description: "Read properties and relationships of the iosMobileAppConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [iosMobileAppConfiguration](../resources/intune-apps-iosmobileappconfiguration.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 831 } } ```----- |
v1.0 | Intune Apps Iosmobileappconfiguration List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-iosmobileappconfiguration-list.md | Title: "List iosMobileAppConfigurations" description: "List properties and relationships of the iosMobileAppConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [iosMobileAppConfiguration](../resources/intune-apps-iosmobileappconfiguration.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 889 ] } ```----- |
v1.0 | Intune Apps Iosmobileappconfiguration Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-iosmobileappconfiguration-update.md | Title: "Update iosMobileAppConfiguration" description: "Update the properties of a iosMobileAppConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [iosMobileAppConfiguration](../resources/intune-apps-iosmobileappconfiguration.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 768 ] } ```----- |
v1.0 | Intune Apps Iosstoreapp Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-iosstoreapp-create.md | Title: "Create iosStoreApp" description: "Create a new iosStoreApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [iosStoreApp](../resources/intune-apps-iosstoreapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1429 } } ```----- |
v1.0 | Intune Apps Iosstoreapp Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-iosstoreapp-delete.md | Title: "Delete iosStoreApp" description: "Deletes a iosStoreApp."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [iosStoreApp](../resources/intune-apps-iosstoreapp.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Iosstoreapp Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-iosstoreapp-get.md | Title: "Get iosStoreApp" description: "Read properties and relationships of the iosStoreApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [iosStoreApp](../resources/intune-apps-iosstoreapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1538 } } ```----- |
v1.0 | Intune Apps Iosstoreapp List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-iosstoreapp-list.md | Title: "List iosStoreApps" description: "List properties and relationships of the iosStoreApp objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [iosStoreApp](../resources/intune-apps-iosstoreapp.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1642 ] } ```----- |
v1.0 | Intune Apps Iosstoreapp Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-iosstoreapp-update.md | Title: "Update iosStoreApp" description: "Update the properties of a iosStoreApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [iosStoreApp](../resources/intune-apps-iosstoreapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1429 } } ```----- |
v1.0 | Intune Apps Iosvppapp Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-iosvppapp-create.md | Title: "Create iosVppApp" description: "Create a new iosVppApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [iosVppApp](../resources/intune-apps-iosvppapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 2228 ] } ```----- |
v1.0 | Intune Apps Iosvppapp Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-iosvppapp-delete.md | Title: "Delete iosVppApp" description: "Deletes a iosVppApp."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [iosVppApp](../resources/intune-apps-iosvppapp.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Iosvppapp Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-iosvppapp-get.md | Title: "Get iosVppApp" description: "Read properties and relationships of the iosVppApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [iosVppApp](../resources/intune-apps-iosvppapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 2371 } } ```----- |
v1.0 | Intune Apps Iosvppapp List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-iosvppapp-list.md | Title: "List iosVppApps" description: "List properties and relationships of the iosVppApp objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [iosVppApp](../resources/intune-apps-iosvppapp.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 2509 ] } ```----- |
v1.0 | Intune Apps Iosvppapp Revokealllicenses | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-iosvppapp-revokealllicenses.md | Title: "revokeAllLicenses action" description: "Revoke all assigned iOS VPP licenses for given app."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Revoke all assigned iOS VPP licenses for given app. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Iosvppapp Revokedevicelicense | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-iosvppapp-revokedevicelicense.md | Title: "revokeDeviceLicense action" description: "Revoke assigned iOS VPP device license for given app."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Revoke assigned iOS VPP device license for given app. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Iosvppapp Revokeuserlicense | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-iosvppapp-revokeuserlicense.md | Title: "revokeUserLicense action" description: "Revoke assigned iOS VPP user license for given app."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Revoke assigned iOS VPP user license for given app. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Iosvppapp Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-iosvppapp-update.md | Title: "Update iosVppApp" description: "Update the properties of a iosVppApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [iosVppApp](../resources/intune-apps-iosvppapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 2228 ] } ```----- |
v1.0 | Intune Apps Iosvppappassigneddevicelicense Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-iosvppappassigneddevicelicense-create.md | Title: "Create iosVppAppAssignedDeviceLicense" description: "Create a new iosVppAppAssignedDeviceLicense object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [iosVppAppAssignedDeviceLicense](../resources/intune-apps-iosvppappassigneddevicelicense.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 376 "deviceName": "Device Name value" } ```----- |
v1.0 | Intune Apps Iosvppappassigneddevicelicense Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-iosvppappassigneddevicelicense-delete.md | Title: "Delete iosVppAppAssignedDeviceLicense" description: "Deletes a iosVppAppAssignedDeviceLicense."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [iosVppAppAssignedDeviceLicense](../resources/intune-apps-iosvppappassigneddevicelicense.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Iosvppappassigneddevicelicense Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-iosvppappassigneddevicelicense-get.md | Title: "Get iosVppAppAssignedDeviceLicense" description: "Read properties and relationships of the iosVppAppAssignedDeviceLicense object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [iosVppAppAssignedDeviceLicense](../resources/intune-apps-iosvppappassigneddevicelicense.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 411 } } ```----- |
v1.0 | Intune Apps Iosvppappassigneddevicelicense List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-iosvppappassigneddevicelicense-list.md | Title: "List iosVppAppAssignedDeviceLicenses" description: "List properties and relationships of the iosVppAppAssignedDeviceLicense objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [iosVppAppAssignedDeviceLicense](../resources/intune-apps-iosvppappassigneddevicelicense.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 441 ] } ```----- |
v1.0 | Intune Apps Iosvppappassigneddevicelicense Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-iosvppappassigneddevicelicense-update.md | Title: "Update iosVppAppAssignedDeviceLicense" description: "Update the properties of a iosVppAppAssignedDeviceLicense object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [iosVppAppAssignedDeviceLicense](../resources/intune-apps-iosvppappassigneddevicelicense.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 376 "deviceName": "Device Name value" } ```----- |
v1.0 | Intune Apps Iosvppappassignedlicense Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-iosvppappassignedlicense-create.md | Title: "Create iosVppAppAssignedLicense" description: "Create a new iosVppAppAssignedLicense object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [iosVppAppAssignedLicense](../resources/intune-apps-iosvppappassignedlicense.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 283 "userPrincipalName": "User Principal Name value" } ```----- |
v1.0 | Intune Apps Iosvppappassignedlicense Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-iosvppappassignedlicense-delete.md | Title: "Delete iosVppAppAssignedLicense" description: "Deletes a iosVppAppAssignedLicense."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [iosVppAppAssignedLicense](../resources/intune-apps-iosvppappassignedlicense.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Iosvppappassignedlicense Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-iosvppappassignedlicense-get.md | Title: "Get iosVppAppAssignedLicense" description: "Read properties and relationships of the iosVppAppAssignedLicense object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [iosVppAppAssignedLicense](../resources/intune-apps-iosvppappassignedlicense.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 314 } } ```----- |
v1.0 | Intune Apps Iosvppappassignedlicense List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-iosvppappassignedlicense-list.md | Title: "List iosVppAppAssignedLicenses" description: "List properties and relationships of the iosVppAppAssignedLicense objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [iosVppAppAssignedLicense](../resources/intune-apps-iosvppappassignedlicense.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 340 ] } ```----- |
v1.0 | Intune Apps Iosvppappassignedlicense Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-iosvppappassignedlicense-update.md | Title: "Update iosVppAppAssignedLicense" description: "Update the properties of a iosVppAppAssignedLicense object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [iosVppAppAssignedLicense](../resources/intune-apps-iosvppappassignedlicense.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 283 "userPrincipalName": "User Principal Name value" } ```----- |
v1.0 | Intune Apps Iosvppappassigneduserlicense Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-iosvppappassigneduserlicense-create.md | Title: "Create iosVppAppAssignedUserLicense" description: "Create a new iosVppAppAssignedUserLicense object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [iosVppAppAssignedUserLicense](../resources/intune-apps-iosvppappassigneduserlicense.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 287 "userPrincipalName": "User Principal Name value" } ```----- |
v1.0 | Intune Apps Iosvppappassigneduserlicense Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-iosvppappassigneduserlicense-delete.md | Title: "Delete iosVppAppAssignedUserLicense" description: "Deletes a iosVppAppAssignedUserLicense."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [iosVppAppAssignedUserLicense](../resources/intune-apps-iosvppappassigneduserlicense.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Iosvppappassigneduserlicense Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-iosvppappassigneduserlicense-get.md | Title: "Get iosVppAppAssignedUserLicense" description: "Read properties and relationships of the iosVppAppAssignedUserLicense object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [iosVppAppAssignedUserLicense](../resources/intune-apps-iosvppappassigneduserlicense.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 318 } } ```----- |
v1.0 | Intune Apps Iosvppappassigneduserlicense List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-iosvppappassigneduserlicense-list.md | Title: "List iosVppAppAssignedUserLicenses" description: "List properties and relationships of the iosVppAppAssignedUserLicense objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [iosVppAppAssignedUserLicense](../resources/intune-apps-iosvppappassigneduserlicense.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 344 ] } ```----- |
v1.0 | Intune Apps Iosvppappassigneduserlicense Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-iosvppappassigneduserlicense-update.md | Title: "Update iosVppAppAssignedUserLicense" description: "Update the properties of a iosVppAppAssignedUserLicense object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [iosVppAppAssignedUserLicense](../resources/intune-apps-iosvppappassigneduserlicense.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 287 "userPrincipalName": "User Principal Name value" } ```----- |
v1.0 | Intune Apps Macosdmgapp Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-macosdmgapp-create.md | Title: "Create macOSDmgApp" description: "Create a new macOSDmgApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [macOSDmgApp](../resources/intune-apps-macosdmgapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1737 } } ```----- |
v1.0 | Intune Apps Macosdmgapp Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-macosdmgapp-delete.md | Title: "Delete macOSDmgApp" description: "Deletes a macOSDmgApp."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [macOSDmgApp](../resources/intune-apps-macosdmgapp.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Macosdmgapp Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-macosdmgapp-get.md | Title: "Get macOSDmgApp" description: "Read properties and relationships of the macOSDmgApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [macOSDmgApp](../resources/intune-apps-macosdmgapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1866 } } ```----- |
v1.0 | Intune Apps Macosdmgapp List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-macosdmgapp-list.md | Title: "List macOSDmgApps" description: "List properties and relationships of the macOSDmgApp objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [macOSDmgApp](../resources/intune-apps-macosdmgapp.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1990 ] } ```----- |
v1.0 | Intune Apps Macosdmgapp Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-macosdmgapp-update.md | Title: "Update macOSDmgApp" description: "Update the properties of a macOSDmgApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [macOSDmgApp](../resources/intune-apps-macosdmgapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1737 } } ```----- |
v1.0 | Intune Apps Macoslobapp Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-macoslobapp-create.md | Title: "Create macOSLobApp" description: "Create a new macOSLobApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [macOSLobApp](../resources/intune-apps-macoslobapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1934 "installAsManaged": true } ```----- |
v1.0 | Intune Apps Macoslobapp Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-macoslobapp-delete.md | Title: "Delete macOSLobApp" description: "Deletes a macOSLobApp."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [macOSLobApp](../resources/intune-apps-macoslobapp.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Macoslobapp Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-macoslobapp-get.md | Title: "Get macOSLobApp" description: "Read properties and relationships of the macOSLobApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [macOSLobApp](../resources/intune-apps-macoslobapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 2079 } } ```----- |
v1.0 | Intune Apps Macoslobapp List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-macoslobapp-list.md | Title: "List macOSLobApps" description: "List properties and relationships of the macOSLobApp objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [macOSLobApp](../resources/intune-apps-macoslobapp.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 2219 ] } ```----- |
v1.0 | Intune Apps Macoslobapp Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-macoslobapp-update.md | Title: "Update macOSLobApp" description: "Update the properties of a macOSLobApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [macOSLobApp](../resources/intune-apps-macoslobapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1934 "installAsManaged": true } ```----- |
v1.0 | Intune Apps Macosmdatpapp Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-macosmdatpapp-create.md | Title: "Create macOSMdatpApp" description: "Create a new macOSMdatpApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [macOSMdatpApp](../resources/intune-apps-macosmdatpapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 941 "supersededAppCount": 2 } ```----- |
v1.0 | Intune Apps Macosmdatpapp Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-macosmdatpapp-delete.md | Title: "Delete macOSMdatpApp" description: "Deletes a macOSMdatpApp."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [macOSMdatpApp](../resources/intune-apps-macosmdatpapp.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Macosmdatpapp Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-macosmdatpapp-get.md | Title: "Get macOSMdatpApp" description: "Read properties and relationships of the macOSMdatpApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [macOSMdatpApp](../resources/intune-apps-macosmdatpapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1014 } } ```----- |
v1.0 | Intune Apps Macosmdatpapp List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-macosmdatpapp-list.md | Title: "List macOSMdatpApps" description: "List properties and relationships of the macOSMdatpApp objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [macOSMdatpApp](../resources/intune-apps-macosmdatpapp.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1082 ] } ```----- |
v1.0 | Intune Apps Macosmdatpapp Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-macosmdatpapp-update.md | Title: "Update macOSMdatpApp" description: "Update the properties of a macOSMdatpApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [macOSMdatpApp](../resources/intune-apps-macosmdatpapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 941 "supersededAppCount": 2 } ```----- |
v1.0 | Intune Apps Macosmicrosoftdefenderapp Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-macosmicrosoftdefenderapp-create.md | Title: "Create macOSMicrosoftDefenderApp" description: "Create a new macOSMicrosoftDefenderApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [macOSMicrosoftDefenderApp](../resources/intune-apps-macosmicrosoftdefenderapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 953 "supersededAppCount": 2 } ```----- |
v1.0 | Intune Apps Macosmicrosoftdefenderapp Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-macosmicrosoftdefenderapp-delete.md | Title: "Delete macOSMicrosoftDefenderApp" description: "Deletes a macOSMicrosoftDefenderApp."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [macOSMicrosoftDefenderApp](../resources/intune-apps-macosmicrosoftdefenderapp.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Macosmicrosoftdefenderapp Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-macosmicrosoftdefenderapp-get.md | Title: "Get macOSMicrosoftDefenderApp" description: "Read properties and relationships of the macOSMicrosoftDefenderApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [macOSMicrosoftDefenderApp](../resources/intune-apps-macosmicrosoftdefenderapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1026 } } ```----- |
v1.0 | Intune Apps Macosmicrosoftdefenderapp List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-macosmicrosoftdefenderapp-list.md | Title: "List macOSMicrosoftDefenderApps" description: "List properties and relationships of the macOSMicrosoftDefenderApp objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [macOSMicrosoftDefenderApp](../resources/intune-apps-macosmicrosoftdefenderapp.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1094 ] } ```----- |
v1.0 | Intune Apps Macosmicrosoftdefenderapp Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-macosmicrosoftdefenderapp-update.md | Title: "Update macOSMicrosoftDefenderApp" description: "Update the properties of a macOSMicrosoftDefenderApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [macOSMicrosoftDefenderApp](../resources/intune-apps-macosmicrosoftdefenderapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 953 "supersededAppCount": 2 } ```----- |
v1.0 | Intune Apps Macosmicrosoftedgeapp Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-macosmicrosoftedgeapp-create.md | Title: "Create macOSMicrosoftEdgeApp" description: "Create a new macOSMicrosoftEdgeApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [macOSMicrosoftEdgeApp](../resources/intune-apps-macosmicrosoftedgeapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 971 "channel": "beta" } ```----- |
v1.0 | Intune Apps Macosmicrosoftedgeapp Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-macosmicrosoftedgeapp-delete.md | Title: "Delete macOSMicrosoftEdgeApp" description: "Deletes a macOSMicrosoftEdgeApp."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [macOSMicrosoftEdgeApp](../resources/intune-apps-macosmicrosoftedgeapp.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Macosmicrosoftedgeapp Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-macosmicrosoftedgeapp-get.md | Title: "Get macOSMicrosoftEdgeApp" description: "Read properties and relationships of the macOSMicrosoftEdgeApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [macOSMicrosoftEdgeApp](../resources/intune-apps-macosmicrosoftedgeapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1046 } } ```----- |
v1.0 | Intune Apps Macosmicrosoftedgeapp List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-macosmicrosoftedgeapp-list.md | Title: "List macOSMicrosoftEdgeApps" description: "List properties and relationships of the macOSMicrosoftEdgeApp objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [macOSMicrosoftEdgeApp](../resources/intune-apps-macosmicrosoftedgeapp.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1116 ] } ```----- |
v1.0 | Intune Apps Macosmicrosoftedgeapp Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-macosmicrosoftedgeapp-update.md | Title: "Update macOSMicrosoftEdgeApp" description: "Update the properties of a macOSMicrosoftEdgeApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [macOSMicrosoftEdgeApp](../resources/intune-apps-macosmicrosoftedgeapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 971 "channel": "beta" } ```----- |
v1.0 | Intune Apps Macosofficesuiteapp Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-macosofficesuiteapp-create.md | Title: "Create macOSOfficeSuiteApp" description: "Create a new macOSOfficeSuiteApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [macOSOfficeSuiteApp](../resources/intune-apps-macosofficesuiteapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 947 "supersededAppCount": 2 } ```----- |
v1.0 | Intune Apps Macosofficesuiteapp Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-macosofficesuiteapp-delete.md | Title: "Delete macOSOfficeSuiteApp" description: "Deletes a macOSOfficeSuiteApp."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [macOSOfficeSuiteApp](../resources/intune-apps-macosofficesuiteapp.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Macosofficesuiteapp Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-macosofficesuiteapp-get.md | Title: "Get macOSOfficeSuiteApp" description: "Read properties and relationships of the macOSOfficeSuiteApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [macOSOfficeSuiteApp](../resources/intune-apps-macosofficesuiteapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1020 } } ```----- |
v1.0 | Intune Apps Macosofficesuiteapp List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-macosofficesuiteapp-list.md | Title: "List macOSOfficeSuiteApps" description: "List properties and relationships of the macOSOfficeSuiteApp objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [macOSOfficeSuiteApp](../resources/intune-apps-macosofficesuiteapp.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1088 ] } ```----- |
v1.0 | Intune Apps Macosofficesuiteapp Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-macosofficesuiteapp-update.md | Title: "Update macOSOfficeSuiteApp" description: "Update the properties of a macOSOfficeSuiteApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [macOSOfficeSuiteApp](../resources/intune-apps-macosofficesuiteapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 947 "supersededAppCount": 2 } ```----- |
v1.0 | Intune Apps Macosvppapp Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-macosvppapp-create.md | Title: "Create macOsVppApp" description: "Create a new macOsVppApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [macOsVppApp](../resources/intune-apps-macosvppapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 2098 ] } ```----- |
v1.0 | Intune Apps Macosvppapp Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-macosvppapp-delete.md | Title: "Delete macOsVppApp" description: "Deletes a macOsVppApp."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [macOsVppApp](../resources/intune-apps-macosvppapp.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Macosvppapp Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-macosvppapp-get.md | Title: "Get macOsVppApp" description: "Read properties and relationships of the macOsVppApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [macOsVppApp](../resources/intune-apps-macosvppapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 2231 } } ```----- |
v1.0 | Intune Apps Macosvppapp List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-macosvppapp-list.md | Title: "List macOsVppApps" description: "List properties and relationships of the macOsVppApp objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [macOsVppApp](../resources/intune-apps-macosvppapp.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 2359 ] } ```----- |
v1.0 | Intune Apps Macosvppapp Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-macosvppapp-update.md | Title: "Update macOsVppApp" description: "Update the properties of a macOsVppApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [macOsVppApp](../resources/intune-apps-macosvppapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 2098 ] } ```----- |
v1.0 | Intune Apps Macosvppappassignedlicense Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-macosvppappassignedlicense-create.md | Title: "Create macOsVppAppAssignedLicense" description: "Create a new macOsVppAppAssignedLicense object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [macOsVppAppAssignedLicense](../resources/intune-apps-macosvppappassignedlicense.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 285 "userPrincipalName": "User Principal Name value" } ```----- |
v1.0 | Intune Apps Macosvppappassignedlicense Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-macosvppappassignedlicense-delete.md | Title: "Delete macOsVppAppAssignedLicense" description: "Deletes a macOsVppAppAssignedLicense."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [macOsVppAppAssignedLicense](../resources/intune-apps-macosvppappassignedlicense.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Macosvppappassignedlicense Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-macosvppappassignedlicense-get.md | Title: "Get macOsVppAppAssignedLicense" description: "Read properties and relationships of the macOsVppAppAssignedLicense object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [macOsVppAppAssignedLicense](../resources/intune-apps-macosvppappassignedlicense.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 316 } } ```----- |
v1.0 | Intune Apps Macosvppappassignedlicense List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-macosvppappassignedlicense-list.md | Title: "List macOsVppAppAssignedLicenses" description: "List properties and relationships of the macOsVppAppAssignedLicense objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [macOsVppAppAssignedLicense](../resources/intune-apps-macosvppappassignedlicense.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 342 ] } ```----- |
v1.0 | Intune Apps Macosvppappassignedlicense Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-macosvppappassignedlicense-update.md | Title: "Update macOsVppAppAssignedLicense" description: "Update the properties of a macOsVppAppAssignedLicense object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [macOsVppAppAssignedLicense](../resources/intune-apps-macosvppappassignedlicense.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 285 "userPrincipalName": "User Principal Name value" } ```----- |
v1.0 | Intune Apps Managedandroidlobapp Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-managedandroidlobapp-create.md | Title: "Create managedAndroidLobApp" description: "Create a new managedAndroidLobApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [managedAndroidLobApp](../resources/intune-apps-managedandroidlobapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1760 "identityVersion": "Identity Version value" } ```----- |
v1.0 | Intune Apps Managedandroidlobapp Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-managedandroidlobapp-delete.md | Title: "Delete managedAndroidLobApp" description: "Deletes a managedAndroidLobApp."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [managedAndroidLobApp](../resources/intune-apps-managedandroidlobapp.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Managedandroidlobapp Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-managedandroidlobapp-get.md | Title: "Get managedAndroidLobApp" description: "Read properties and relationships of the managedAndroidLobApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [managedAndroidLobApp](../resources/intune-apps-managedandroidlobapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1891 } } ```----- |
v1.0 | Intune Apps Managedandroidlobapp List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-managedandroidlobapp-list.md | Title: "List managedAndroidLobApps" description: "List properties and relationships of the managedAndroidLobApp objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [managedAndroidLobApp](../resources/intune-apps-managedandroidlobapp.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 2017 ] } ```----- |
v1.0 | Intune Apps Managedandroidlobapp Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-managedandroidlobapp-update.md | Title: "Update managedAndroidLobApp" description: "Update the properties of a managedAndroidLobApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [managedAndroidLobApp](../resources/intune-apps-managedandroidlobapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1760 "identityVersion": "Identity Version value" } ```----- |
v1.0 | Intune Apps Managedandroidstoreapp Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-managedandroidstoreapp-create.md | Title: "Create managedAndroidStoreApp" description: "Create a new managedAndroidStoreApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [managedAndroidStoreApp](../resources/intune-apps-managedandroidstoreapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1533 } } ```----- |
v1.0 | Intune Apps Managedandroidstoreapp Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-managedandroidstoreapp-delete.md | Title: "Delete managedAndroidStoreApp" description: "Deletes a managedAndroidStoreApp."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [managedAndroidStoreApp](../resources/intune-apps-managedandroidstoreapp.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Managedandroidstoreapp Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-managedandroidstoreapp-get.md | Title: "Get managedAndroidStoreApp" description: "Read properties and relationships of the managedAndroidStoreApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [managedAndroidStoreApp](../resources/intune-apps-managedandroidstoreapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1652 } } ```----- |
v1.0 | Intune Apps Managedandroidstoreapp List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-managedandroidstoreapp-list.md | Title: "List managedAndroidStoreApps" description: "List properties and relationships of the managedAndroidStoreApp objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [managedAndroidStoreApp](../resources/intune-apps-managedandroidstoreapp.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1766 ] } ```----- |
v1.0 | Intune Apps Managedandroidstoreapp Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-managedandroidstoreapp-update.md | Title: "Update managedAndroidStoreApp" description: "Update the properties of a managedAndroidStoreApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [managedAndroidStoreApp](../resources/intune-apps-managedandroidstoreapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1533 } } ```----- |
v1.0 | Intune Apps Managedapp Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-managedapp-get.md | Title: "Get managedApp" description: "Read properties and relationships of the managedApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [managedApp](../resources/intune-apps-managedapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1086 } } ```----- |
v1.0 | Intune Apps Managedapp List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-managedapp-list.md | Title: "List managedApps" description: "List properties and relationships of the managedApp objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [managedApp](../resources/intune-apps-managedapp.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1158 ] } ```----- |
v1.0 | Intune Apps Manageddevicemobileappconfiguration Assign | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-manageddevicemobileappconfiguration-assign.md | Title: "assign action" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Not yet documented -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Manageddevicemobileappconfiguration Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-manageddevicemobileappconfiguration-get.md | Title: "Get managedDeviceMobileAppConfiguration" description: "Read properties and relationships of the managedDeviceMobileAppConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [managedDeviceMobileAppConfiguration](../resources/intune-apps-manageddevicemobileappconfiguration.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 519 } } ```----- |
v1.0 | Intune Apps Manageddevicemobileappconfiguration List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-manageddevicemobileappconfiguration-list.md | Title: "List managedDeviceMobileAppConfigurations" description: "List properties and relationships of the managedDeviceMobileAppConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [managedDeviceMobileAppConfiguration](../resources/intune-apps-manageddevicemobileappconfiguration.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 559 ] } ```----- |
v1.0 | Intune Apps Manageddevicemobileappconfigurationassignment Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-manageddevicemobileappconfigurationassignment-create.md | Title: "Create managedDeviceMobileAppConfigurationAssignment" description: "Create a new managedDeviceMobileAppConfigurationAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [managedDeviceMobileAppConfigurationAssignment](../resources/intune-apps-manageddevicemobileappconfigurationassignment.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 395 } } ```----- |
v1.0 | Intune Apps Manageddevicemobileappconfigurationassignment Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-manageddevicemobileappconfigurationassignment-delete.md | Title: "Delete managedDeviceMobileAppConfigurationAssignment" description: "Deletes a managedDeviceMobileAppConfigurationAssignment."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [managedDeviceMobileAppConfigurationAssignment](../resources/intune-apps-manageddevicemobileappconfigurationassignment.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Manageddevicemobileappconfigurationassignment Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-manageddevicemobileappconfigurationassignment-get.md | Title: "Get managedDeviceMobileAppConfigurationAssignment" description: "Read properties and relationships of the managedDeviceMobileAppConfigurationAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [managedDeviceMobileAppConfigurationAssignment](../resources/intune-apps-manageddevicemobileappconfigurationassignment.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 428 } } ```----- |
v1.0 | Intune Apps Manageddevicemobileappconfigurationassignment List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-manageddevicemobileappconfigurationassignment-list.md | Title: "List managedDeviceMobileAppConfigurationAssignments" description: "List properties and relationships of the managedDeviceMobileAppConfigurationAssignment objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [managedDeviceMobileAppConfigurationAssignment](../resources/intune-apps-manageddevicemobileappconfigurationassignment.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 456 ] } ```----- |
v1.0 | Intune Apps Manageddevicemobileappconfigurationassignment Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-manageddevicemobileappconfigurationassignment-update.md | Title: "Update managedDeviceMobileAppConfigurationAssignment" description: "Update the properties of a managedDeviceMobileAppConfigurationAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [managedDeviceMobileAppConfigurationAssignment](../resources/intune-apps-manageddevicemobileappconfigurationassignment.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 395 } } ```----- |
v1.0 | Intune Apps Manageddevicemobileappconfigurationdevicestatus Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-manageddevicemobileappconfigurationdevicestatus-create.md | Title: "Create managedDeviceMobileAppConfigurationDeviceStatus" description: "Create a new managedDeviceMobileAppConfigurationDeviceStatus object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [managedDeviceMobileAppConfigurationDeviceStatus](../resources/intune-apps-manageddevicemobileappconfigurationdevicestatus.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 512 "userPrincipalName": "User Principal Name value" } ```----- |
v1.0 | Intune Apps Manageddevicemobileappconfigurationdevicestatus Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-manageddevicemobileappconfigurationdevicestatus-delete.md | Title: "Delete managedDeviceMobileAppConfigurationDeviceStatus" description: "Deletes a managedDeviceMobileAppConfigurationDeviceStatus."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [managedDeviceMobileAppConfigurationDeviceStatus](../resources/intune-apps-manageddevicemobileappconfigurationdevicestatus.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Manageddevicemobileappconfigurationdevicestatus Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-manageddevicemobileappconfigurationdevicestatus-get.md | Title: "Get managedDeviceMobileAppConfigurationDeviceStatus" description: "Read properties and relationships of the managedDeviceMobileAppConfigurationDeviceStatus object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [managedDeviceMobileAppConfigurationDeviceStatus](../resources/intune-apps-manageddevicemobileappconfigurationdevicestatus.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 551 } } ```----- |
v1.0 | Intune Apps Manageddevicemobileappconfigurationdevicestatus List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-manageddevicemobileappconfigurationdevicestatus-list.md | Title: "List managedDeviceMobileAppConfigurationDeviceStatuses" description: "List properties and relationships of the managedDeviceMobileAppConfigurationDeviceStatus objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [managedDeviceMobileAppConfigurationDeviceStatus](../resources/intune-apps-manageddevicemobileappconfigurationdevicestatus.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 585 ] } ```----- |
v1.0 | Intune Apps Manageddevicemobileappconfigurationdevicestatus Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-manageddevicemobileappconfigurationdevicestatus-update.md | Title: "Update managedDeviceMobileAppConfigurationDeviceStatus" description: "Update the properties of a managedDeviceMobileAppConfigurationDeviceStatus object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [managedDeviceMobileAppConfigurationDeviceStatus](../resources/intune-apps-manageddevicemobileappconfigurationdevicestatus.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 512 "userPrincipalName": "User Principal Name value" } ```----- |
v1.0 | Intune Apps Manageddevicemobileappconfigurationdevicesummary Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-manageddevicemobileappconfigurationdevicesummary-get.md | Title: "Get managedDeviceMobileAppConfigurationDeviceSummary" description: "Read properties and relationships of the managedDeviceMobileAppConfigurationDeviceSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [managedDeviceMobileAppConfigurationDeviceSummary](../resources/intune-apps-manageddevicemobileappconfigurationdevicesummary.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 450 } } ```----- |
v1.0 | Intune Apps Manageddevicemobileappconfigurationdevicesummary Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-manageddevicemobileappconfigurationdevicesummary-update.md | Title: "Update managedDeviceMobileAppConfigurationDeviceSummary" description: "Update the properties of a managedDeviceMobileAppConfigurationDeviceSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [managedDeviceMobileAppConfigurationDeviceSummary](../resources/intune-apps-manageddevicemobileappconfigurationdevicesummary.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 409 "configurationVersion": 4 } ```----- |
v1.0 | Intune Apps Manageddevicemobileappconfigurationuserstatus Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-manageddevicemobileappconfigurationuserstatus-create.md | Title: "Create managedDeviceMobileAppConfigurationUserStatus" description: "Create a new managedDeviceMobileAppConfigurationUserStatus object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [managedDeviceMobileAppConfigurationUserStatus](../resources/intune-apps-manageddevicemobileappconfigurationuserstatus.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 355 "userPrincipalName": "User Principal Name value" } ```----- |
v1.0 | Intune Apps Manageddevicemobileappconfigurationuserstatus Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-manageddevicemobileappconfigurationuserstatus-delete.md | Title: "Delete managedDeviceMobileAppConfigurationUserStatus" description: "Deletes a managedDeviceMobileAppConfigurationUserStatus."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [managedDeviceMobileAppConfigurationUserStatus](../resources/intune-apps-manageddevicemobileappconfigurationuserstatus.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Manageddevicemobileappconfigurationuserstatus Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-manageddevicemobileappconfigurationuserstatus-get.md | Title: "Get managedDeviceMobileAppConfigurationUserStatus" description: "Read properties and relationships of the managedDeviceMobileAppConfigurationUserStatus object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [managedDeviceMobileAppConfigurationUserStatus](../resources/intune-apps-manageddevicemobileappconfigurationuserstatus.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 388 } } ```----- |
v1.0 | Intune Apps Manageddevicemobileappconfigurationuserstatus List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-manageddevicemobileappconfigurationuserstatus-list.md | Title: "List managedDeviceMobileAppConfigurationUserStatuses" description: "List properties and relationships of the managedDeviceMobileAppConfigurationUserStatus objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [managedDeviceMobileAppConfigurationUserStatus](../resources/intune-apps-manageddevicemobileappconfigurationuserstatus.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 416 ] } ```----- |
v1.0 | Intune Apps Manageddevicemobileappconfigurationuserstatus Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-manageddevicemobileappconfigurationuserstatus-update.md | Title: "Update managedDeviceMobileAppConfigurationUserStatus" description: "Update the properties of a managedDeviceMobileAppConfigurationUserStatus object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [managedDeviceMobileAppConfigurationUserStatus](../resources/intune-apps-manageddevicemobileappconfigurationuserstatus.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 355 "userPrincipalName": "User Principal Name value" } ```----- |
v1.0 | Intune Apps Manageddevicemobileappconfigurationusersummary Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-manageddevicemobileappconfigurationusersummary-get.md | Title: "Get managedDeviceMobileAppConfigurationUserSummary" description: "Read properties and relationships of the managedDeviceMobileAppConfigurationUserSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [managedDeviceMobileAppConfigurationUserSummary](../resources/intune-apps-manageddevicemobileappconfigurationusersummary.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 409 } } ```----- |
v1.0 | Intune Apps Manageddevicemobileappconfigurationusersummary Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-manageddevicemobileappconfigurationusersummary-update.md | Title: "Update managedDeviceMobileAppConfigurationUserSummary" description: "Update the properties of a managedDeviceMobileAppConfigurationUserSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [managedDeviceMobileAppConfigurationUserSummary](../resources/intune-apps-manageddevicemobileappconfigurationusersummary.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 370 "configurationVersion": 4 } ```----- |
v1.0 | Intune Apps Managedioslobapp Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-managedioslobapp-create.md | Title: "Create managedIOSLobApp" description: "Create a new managedIOSLobApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [managedIOSLobApp](../resources/intune-apps-managedioslobapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1758 "identityVersion": "Identity Version value" } ```----- |
v1.0 | Intune Apps Managedioslobapp Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-managedioslobapp-delete.md | Title: "Delete managedIOSLobApp" description: "Deletes a managedIOSLobApp."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [managedIOSLobApp](../resources/intune-apps-managedioslobapp.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Managedioslobapp Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-managedioslobapp-get.md | Title: "Get managedIOSLobApp" description: "Read properties and relationships of the managedIOSLobApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [managedIOSLobApp](../resources/intune-apps-managedioslobapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1883 } } ```----- |
v1.0 | Intune Apps Managedioslobapp List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-managedioslobapp-list.md | Title: "List managedIOSLobApps" description: "List properties and relationships of the managedIOSLobApp objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [managedIOSLobApp](../resources/intune-apps-managedioslobapp.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 2003 ] } ```----- |
v1.0 | Intune Apps Managedioslobapp Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-managedioslobapp-update.md | Title: "Update managedIOSLobApp" description: "Update the properties of a managedIOSLobApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [managedIOSLobApp](../resources/intune-apps-managedioslobapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1758 "identityVersion": "Identity Version value" } ```----- |
v1.0 | Intune Apps Managediosstoreapp Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-managediosstoreapp-create.md | Title: "Create managedIOSStoreApp" description: "Create a new managedIOSStoreApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [managedIOSStoreApp](../resources/intune-apps-managediosstoreapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1507 } } ```----- |
v1.0 | Intune Apps Managediosstoreapp Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-managediosstoreapp-delete.md | Title: "Delete managedIOSStoreApp" description: "Deletes a managedIOSStoreApp."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [managedIOSStoreApp](../resources/intune-apps-managediosstoreapp.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Managediosstoreapp Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-managediosstoreapp-get.md | Title: "Get managedIOSStoreApp" description: "Read properties and relationships of the managedIOSStoreApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [managedIOSStoreApp](../resources/intune-apps-managediosstoreapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1620 } } ```----- |
v1.0 | Intune Apps Managediosstoreapp List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-managediosstoreapp-list.md | Title: "List managedIOSStoreApps" description: "List properties and relationships of the managedIOSStoreApp objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [managedIOSStoreApp](../resources/intune-apps-managediosstoreapp.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1728 ] } ```----- |
v1.0 | Intune Apps Managediosstoreapp Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-managediosstoreapp-update.md | Title: "Update managedIOSStoreApp" description: "Update the properties of a managedIOSStoreApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [managedIOSStoreApp](../resources/intune-apps-managediosstoreapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1507 } } ```----- |
v1.0 | Intune Apps Managedmobilelobapp Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-managedmobilelobapp-get.md | Title: "Get managedMobileLobApp" description: "Read properties and relationships of the managedMobileLobApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [managedMobileLobApp](../resources/intune-apps-managedmobilelobapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1214 } } ```----- |
v1.0 | Intune Apps Managedmobilelobapp List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-managedmobilelobapp-list.md | Title: "List managedMobileLobApps" description: "List properties and relationships of the managedMobileLobApp objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [managedMobileLobApp](../resources/intune-apps-managedmobilelobapp.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1292 ] } ```----- |
v1.0 | Intune Apps Microsoftstoreforbusinessapp Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-microsoftstoreforbusinessapp-create.md | Title: "Create microsoftStoreForBusinessApp" description: "Create a new microsoftStoreForBusinessApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [microsoftStoreForBusinessApp](../resources/intune-apps-microsoftstoreforbusinessapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1361 } } ```----- |
v1.0 | Intune Apps Microsoftstoreforbusinessapp Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-microsoftstoreforbusinessapp-delete.md | Title: "Delete microsoftStoreForBusinessApp" description: "Deletes a microsoftStoreForBusinessApp."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [microsoftStoreForBusinessApp](../resources/intune-apps-microsoftstoreforbusinessapp.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Microsoftstoreforbusinessapp Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-microsoftstoreforbusinessapp-get.md | Title: "Get microsoftStoreForBusinessApp" description: "Read properties and relationships of the microsoftStoreForBusinessApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [microsoftStoreForBusinessApp](../resources/intune-apps-microsoftstoreforbusinessapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1458 } } ```----- |
v1.0 | Intune Apps Microsoftstoreforbusinessapp List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-microsoftstoreforbusinessapp-list.md | Title: "List microsoftStoreForBusinessApps" description: "List properties and relationships of the microsoftStoreForBusinessApp objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [microsoftStoreForBusinessApp](../resources/intune-apps-microsoftstoreforbusinessapp.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1550 ] } ```----- |
v1.0 | Intune Apps Microsoftstoreforbusinessapp Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-microsoftstoreforbusinessapp-update.md | Title: "Update microsoftStoreForBusinessApp" description: "Update the properties of a microsoftStoreForBusinessApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [microsoftStoreForBusinessApp](../resources/intune-apps-microsoftstoreforbusinessapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1361 } } ```----- |
v1.0 | Intune Apps Microsoftstoreforbusinesscontainedapp Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-microsoftstoreforbusinesscontainedapp-create.md | Title: "Create microsoftStoreForBusinessContainedApp" description: "Create a new microsoftStoreForBusinessContainedApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [microsoftStoreForBusinessContainedApp](../resources/intune-apps-microsoftstoreforbusinesscontainedapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 176 "appUserModelId": "App User Model Id value" } ```----- |
v1.0 | Intune Apps Microsoftstoreforbusinesscontainedapp Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-microsoftstoreforbusinesscontainedapp-delete.md | Title: "Delete microsoftStoreForBusinessContainedApp" description: "Deletes a microsoftStoreForBusinessContainedApp."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [microsoftStoreForBusinessContainedApp](../resources/intune-apps-microsoftstoreforbusinesscontainedapp.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Microsoftstoreforbusinesscontainedapp Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-microsoftstoreforbusinesscontainedapp-get.md | Title: "Get microsoftStoreForBusinessContainedApp" description: "Read properties and relationships of the microsoftStoreForBusinessContainedApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [microsoftStoreForBusinessContainedApp](../resources/intune-apps-microsoftstoreforbusinesscontainedapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 201 } } ```----- |
v1.0 | Intune Apps Microsoftstoreforbusinesscontainedapp List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-microsoftstoreforbusinesscontainedapp-list.md | Title: "List microsoftStoreForBusinessContainedApps" description: "List properties and relationships of the microsoftStoreForBusinessContainedApp objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [microsoftStoreForBusinessContainedApp](../resources/intune-apps-microsoftstoreforbusinesscontainedapp.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 221 ] } ```----- |
v1.0 | Intune Apps Microsoftstoreforbusinesscontainedapp Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-microsoftstoreforbusinesscontainedapp-update.md | Title: "Update microsoftStoreForBusinessContainedApp" description: "Update the properties of a microsoftStoreForBusinessContainedApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [microsoftStoreForBusinessContainedApp](../resources/intune-apps-microsoftstoreforbusinesscontainedapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 176 "appUserModelId": "App User Model Id value" } ```----- |
v1.0 | Intune Apps Mobileapp Validatexml | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-mobileapp-validatexml.md | Title: "validateXml action" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Not yet documented -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 37 "value": "Validate Xml value" } ```----- |
v1.0 | Intune Apps Mobileappassignment Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-mobileappassignment-create.md | Title: "Create mobileAppAssignment" description: "Create a new mobileAppAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [mobileAppAssignment](../resources/intune-apps-mobileappassignment.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1022 "sourceId": "Source Id value" } ```----- |
v1.0 | Intune Apps Mobileappassignment Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-mobileappassignment-delete.md | Title: "Delete mobileAppAssignment" description: "Deletes a mobileAppAssignment."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [mobileAppAssignment](../resources/intune-apps-mobileappassignment.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Mobileappassignment Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-mobileappassignment-get.md | Title: "Get mobileAppAssignment" description: "Read properties and relationships of the mobileAppAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [mobileAppAssignment](../resources/intune-apps-mobileappassignment.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1091 } } ```----- |
v1.0 | Intune Apps Mobileappassignment List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-mobileappassignment-list.md | Title: "List mobileAppAssignments" description: "List properties and relationships of the mobileAppAssignment objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [mobileAppAssignment](../resources/intune-apps-mobileappassignment.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1155 ] } ```----- |
v1.0 | Intune Apps Mobileappassignment Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-mobileappassignment-update.md | Title: "Update mobileAppAssignment" description: "Update the properties of a mobileAppAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [mobileAppAssignment](../resources/intune-apps-mobileappassignment.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1022 "sourceId": "Source Id value" } ```----- |
v1.0 | Intune Apps Mobileappcategory Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-mobileappcategory-create.md | Title: "Create mobileAppCategory" description: "Create a new mobileAppCategory object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [mobileAppCategory](../resources/intune-apps-mobileappcategory.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 212 "lastModifiedDateTime": "2017-01-01T00:00:35.1329464-08:00" } ```----- |
v1.0 | Intune Apps Mobileappcategory Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-mobileappcategory-delete.md | Title: "Delete mobileAppCategory" description: "Deletes a mobileAppCategory."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [mobileAppCategory](../resources/intune-apps-mobileappcategory.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Mobileappcategory Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-mobileappcategory-get.md | Title: "Get mobileAppCategory" description: "Read properties and relationships of the mobileAppCategory object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [mobileAppCategory](../resources/intune-apps-mobileappcategory.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 239 } } ```----- |
v1.0 | Intune Apps Mobileappcategory List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-mobileappcategory-list.md | Title: "List mobileAppCategories" description: "List properties and relationships of the mobileAppCategory objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [mobileAppCategory](../resources/intune-apps-mobileappcategory.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 261 ] } ```----- |
v1.0 | Intune Apps Mobileappcategory Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-mobileappcategory-update.md | Title: "Update mobileAppCategory" description: "Update the properties of a mobileAppCategory object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [mobileAppCategory](../resources/intune-apps-mobileappcategory.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 212 "lastModifiedDateTime": "2017-01-01T00:00:35.1329464-08:00" } ```----- |
v1.0 | Intune Apps Mobileappcontent Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-mobileappcontent-create.md | Title: "Create mobileAppContent" description: "Create a new mobileAppContent object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [mobileAppContent](../resources/intune-apps-mobileappcontent.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 107 "id": "fe0bb9a9-b9a9-fe0b-a9b9-0bfea9b90bfe" } ```----- |
v1.0 | Intune Apps Mobileappcontent Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-mobileappcontent-delete.md | Title: "Delete mobileAppContent" description: "Deletes a mobileAppContent."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [mobileAppContent](../resources/intune-apps-mobileappcontent.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Mobileappcontent Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-mobileappcontent-get.md | Title: "Get mobileAppContent" description: "Read properties and relationships of the mobileAppContent object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [mobileAppContent](../resources/intune-apps-mobileappcontent.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 130 } } ```----- |
v1.0 | Intune Apps Mobileappcontent List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-mobileappcontent-list.md | Title: "List mobileAppContents" description: "List properties and relationships of the mobileAppContent objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [mobileAppContent](../resources/intune-apps-mobileappcontent.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 148 ] } ```----- |
v1.0 | Intune Apps Mobileappcontent Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-mobileappcontent-update.md | Title: "Update mobileAppContent" description: "Update the properties of a mobileAppContent object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [mobileAppContent](../resources/intune-apps-mobileappcontent.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 107 "id": "fe0bb9a9-b9a9-fe0b-a9b9-0bfea9b90bfe" } ```----- |
v1.0 | Intune Apps Mobileappcontentfile Commit | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-mobileappcontentfile-commit.md | Title: "commit action" description: "Commits a file of a given app."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Commits a file of a given app. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| The following table shows the parameters that can be used with this action. |Property|Type|Description| |:|:|:|-|fileEncryptionInfo|[fileEncryptionInfo](../resources/intune-apps-fileencryptioninfo.md)|File encryption info parameter key.| +|fileEncryptionInfo|[fileEncryptionInfo](../resources/intune-apps-fileencryptioninfo.md)|The file encryption info parameter key. A PowerShell script example of the file upload process using the ProfileVersion1 encryption scheme can be found at https://aka.ms/fileencryptioninfo.| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Mobileappcontentfile Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-mobileappcontentfile-create.md | Title: "Create mobileAppContentFile" description: "Create a new mobileAppContentFile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [mobileAppContentFile](../resources/intune-apps-mobileappcontentfile.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 503 "isDependency": true } ```----- |
v1.0 | Intune Apps Mobileappcontentfile Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-mobileappcontentfile-delete.md | Title: "Delete mobileAppContentFile" description: "Deletes a mobileAppContentFile."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [mobileAppContentFile](../resources/intune-apps-mobileappcontentfile.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Mobileappcontentfile Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-mobileappcontentfile-get.md | Title: "Get mobileAppContentFile" description: "Read properties and relationships of the mobileAppContentFile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [mobileAppContentFile](../resources/intune-apps-mobileappcontentfile.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 548 } } ```----- |
v1.0 | Intune Apps Mobileappcontentfile List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-mobileappcontentfile-list.md | Title: "List mobileAppContentFiles" description: "List properties and relationships of the mobileAppContentFile objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [mobileAppContentFile](../resources/intune-apps-mobileappcontentfile.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 588 ] } ```----- |
v1.0 | Intune Apps Mobileappcontentfile Renewupload | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-mobileappcontentfile-renewupload.md | Title: "renewUpload action" description: "Renews the SAS URI for an application file upload."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Renews the SAS URI for an application file upload. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Mobileappcontentfile Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-mobileappcontentfile-update.md | Title: "Update mobileAppContentFile" description: "Update the properties of a mobileAppContentFile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [mobileAppContentFile](../resources/intune-apps-mobileappcontentfile.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 503 "isDependency": true } ```----- |
v1.0 | Intune Apps Mobileappdependency Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-mobileappdependency-create.md | Title: "Create mobileAppDependency" description: "Create a new mobileAppDependency object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [mobileAppDependency](../resources/intune-apps-mobileappdependency.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 421 "dependsOnAppCount": 1 } ```----- |
v1.0 | Intune Apps Mobileappdependency Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-mobileappdependency-delete.md | Title: "Delete mobileAppDependency" description: "Deletes a mobileAppDependency."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [mobileAppDependency](../resources/intune-apps-mobileappdependency.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Mobileappdependency Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-mobileappdependency-get.md | Title: "Get mobileAppDependency" description: "Read properties and relationships of the mobileAppDependency object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [mobileAppDependency](../resources/intune-apps-mobileappdependency.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 460 } } ```----- |
v1.0 | Intune Apps Mobileappdependency List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-mobileappdependency-list.md | Title: "List mobileAppDependencies" description: "List properties and relationships of the mobileAppDependency objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [mobileAppDependency](../resources/intune-apps-mobileappdependency.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 494 ] } ```----- |
v1.0 | Intune Apps Mobileappdependency Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-mobileappdependency-update.md | Title: "Update mobileAppDependency" description: "Update the properties of a mobileAppDependency object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [mobileAppDependency](../resources/intune-apps-mobileappdependency.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 421 "dependsOnAppCount": 1 } ```----- |
v1.0 | Intune Apps Mobileappinstallstatus Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-mobileappinstallstatus-create.md | Title: "Create mobileAppInstallStatus" description: "Create a new mobileAppInstallStatus object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [mobileAppInstallStatus](../resources/intune-apps-mobileappinstallstatus.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 604 "displayVersion": "Display Version value" } ```----- |
v1.0 | Intune Apps Mobileappinstallstatus Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-mobileappinstallstatus-delete.md | Title: "Delete mobileAppInstallStatus" description: "Deletes a mobileAppInstallStatus."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [mobileAppInstallStatus](../resources/intune-apps-mobileappinstallstatus.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Mobileappinstallstatus Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-mobileappinstallstatus-get.md | Title: "Get mobileAppInstallStatus" description: "Read properties and relationships of the mobileAppInstallStatus object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [mobileAppInstallStatus](../resources/intune-apps-mobileappinstallstatus.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 651 } } ```----- |
v1.0 | Intune Apps Mobileappinstallstatus List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-mobileappinstallstatus-list.md | Title: "List mobileAppInstallStatuses" description: "List properties and relationships of the mobileAppInstallStatus objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [mobileAppInstallStatus](../resources/intune-apps-mobileappinstallstatus.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 693 ] } ```----- |
v1.0 | Intune Apps Mobileappinstallstatus Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-mobileappinstallstatus-update.md | Title: "Update mobileAppInstallStatus" description: "Update the properties of a mobileAppInstallStatus object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [mobileAppInstallStatus](../resources/intune-apps-mobileappinstallstatus.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 604 "displayVersion": "Display Version value" } ```----- |
v1.0 | Intune Apps Mobileappinstallsummary Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-mobileappinstallsummary-get.md | Title: "Get mobileAppInstallSummary" description: "Read properties and relationships of the mobileAppInstallSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [mobileAppInstallSummary](../resources/intune-apps-mobileappinstallsummary.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 466 } } ```----- |
v1.0 | Intune Apps Mobileappinstallsummary Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-mobileappinstallsummary-update.md | Title: "Update mobileAppInstallSummary" description: "Update the properties of a mobileAppInstallSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [mobileAppInstallSummary](../resources/intune-apps-mobileappinstallsummary.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 423 "pendingInstallUserCount": 7 } ```----- |
v1.0 | Intune Apps Mobileappprovisioningconfiggroupassignment Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-mobileappprovisioningconfiggroupassignment-create.md | Title: "Create mobileAppProvisioningConfigGroupAssignment" description: "Create a new mobileAppProvisioningConfigGroupAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [mobileAppProvisioningConfigGroupAssignment](../resources/intune-apps-mobileappprovisioningconfiggroupassignment.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 178 "id": "fad873e3-73e3-fad8-e373-d8fae373d8fa" } ```----- |
v1.0 | Intune Apps Mobileappprovisioningconfiggroupassignment Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-mobileappprovisioningconfiggroupassignment-delete.md | Title: "Delete mobileAppProvisioningConfigGroupAssignment" description: "Deletes a mobileAppProvisioningConfigGroupAssignment."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [mobileAppProvisioningConfigGroupAssignment](../resources/intune-apps-mobileappprovisioningconfiggroupassignment.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Mobileappprovisioningconfiggroupassignment Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-mobileappprovisioningconfiggroupassignment-get.md | Title: "Get mobileAppProvisioningConfigGroupAssignment" description: "Read properties and relationships of the mobileAppProvisioningConfigGroupAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [mobileAppProvisioningConfigGroupAssignment](../resources/intune-apps-mobileappprovisioningconfiggroupassignment.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 203 } } ```----- |
v1.0 | Intune Apps Mobileappprovisioningconfiggroupassignment List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-mobileappprovisioningconfiggroupassignment-list.md | Title: "List mobileAppProvisioningConfigGroupAssignments" description: "List properties and relationships of the mobileAppProvisioningConfigGroupAssignment objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [mobileAppProvisioningConfigGroupAssignment](../resources/intune-apps-mobileappprovisioningconfiggroupassignment.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 223 ] } ```----- |
v1.0 | Intune Apps Mobileappprovisioningconfiggroupassignment Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-mobileappprovisioningconfiggroupassignment-update.md | Title: "Update mobileAppProvisioningConfigGroupAssignment" description: "Update the properties of a mobileAppProvisioningConfigGroupAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [mobileAppProvisioningConfigGroupAssignment](../resources/intune-apps-mobileappprovisioningconfiggroupassignment.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 178 "id": "fad873e3-73e3-fad8-e373-d8fae373d8fa" } ```----- |
v1.0 | Intune Apps Mobileapprelationship Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-mobileapprelationship-get.md | Title: "Get mobileAppRelationship" description: "Read properties and relationships of the mobileAppRelationship object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [mobileAppRelationship](../resources/intune-apps-mobileapprelationship.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 366 } } ```----- |
v1.0 | Intune Apps Mobileapprelationship List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-mobileapprelationship-list.md | Title: "List mobileAppRelationships" description: "List properties and relationships of the mobileAppRelationship objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [mobileAppRelationship](../resources/intune-apps-mobileapprelationship.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 394 ] } ```----- |
v1.0 | Intune Apps Mobileappsupersedence Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-mobileappsupersedence-create.md | Title: "Create mobileAppSupersedence" description: "Create a new mobileAppSupersedence object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [mobileAppSupersedence](../resources/intune-apps-mobileappsupersedence.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 424 "supersedingAppCount": 3 } ```----- |
v1.0 | Intune Apps Mobileappsupersedence Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-mobileappsupersedence-delete.md | Title: "Delete mobileAppSupersedence" description: "Deletes a mobileAppSupersedence."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [mobileAppSupersedence](../resources/intune-apps-mobileappsupersedence.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Mobileappsupersedence Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-mobileappsupersedence-get.md | Title: "Get mobileAppSupersedence" description: "Read properties and relationships of the mobileAppSupersedence object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [mobileAppSupersedence](../resources/intune-apps-mobileappsupersedence.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 463 } } ```----- |
v1.0 | Intune Apps Mobileappsupersedence List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-mobileappsupersedence-list.md | Title: "List mobileAppSupersedences" description: "List properties and relationships of the mobileAppSupersedence objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [mobileAppSupersedence](../resources/intune-apps-mobileappsupersedence.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 497 ] } ```----- |
v1.0 | Intune Apps Mobileappsupersedence Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-mobileappsupersedence-update.md | Title: "Update mobileAppSupersedence" description: "Update the properties of a mobileAppSupersedence object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [mobileAppSupersedence](../resources/intune-apps-mobileappsupersedence.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 424 "supersedingAppCount": 3 } ```----- |
v1.0 | Intune Apps Mobilecontainedapp Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-mobilecontainedapp-get.md | Title: "Get mobileContainedApp" description: "Read properties and relationships of the mobileContainedApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [mobileContainedApp](../resources/intune-apps-mobilecontainedapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 132 } } ```----- |
v1.0 | Intune Apps Mobilecontainedapp List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-mobilecontainedapp-list.md | Title: "List mobileContainedApps" description: "List properties and relationships of the mobileContainedApp objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [mobileContainedApp](../resources/intune-apps-mobilecontainedapp.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 150 ] } ```----- |
v1.0 | Intune Apps Mobilelobapp Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-mobilelobapp-get.md | Title: "Get mobileLobApp" description: "Read properties and relationships of the mobileLobApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [mobileLobApp](../resources/intune-apps-mobilelobapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1132 } } ```----- |
v1.0 | Intune Apps Mobilelobapp List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-mobilelobapp-list.md | Title: "List mobileLobApps" description: "List properties and relationships of the mobileLobApp objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [mobileLobApp](../resources/intune-apps-mobilelobapp.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1206 ] } ```----- |
v1.0 | Intune Apps Officesuiteapp Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-officesuiteapp-create.md | Title: "Create officeSuiteApp" description: "Create a new officeSuiteApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [officeSuiteApp](../resources/intune-apps-officesuiteapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1908 "officeConfigurationXml": "b2ZmaWNlQ29uZmlndXJhdGlvblhtbA==" } ```----- |
v1.0 | Intune Apps Officesuiteapp Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-officesuiteapp-delete.md | Title: "Delete officeSuiteApp" description: "Deletes a officeSuiteApp."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [officeSuiteApp](../resources/intune-apps-officesuiteapp.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Officesuiteapp Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-officesuiteapp-get.md | Title: "Get officeSuiteApp" description: "Read properties and relationships of the officeSuiteApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [officeSuiteApp](../resources/intune-apps-officesuiteapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 2049 } } ```----- |
v1.0 | Intune Apps Officesuiteapp List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-officesuiteapp-list.md | Title: "List officeSuiteApps" description: "List properties and relationships of the officeSuiteApp objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [officeSuiteApp](../resources/intune-apps-officesuiteapp.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 2185 ] } ```----- |
v1.0 | Intune Apps Officesuiteapp Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-officesuiteapp-update.md | Title: "Update officeSuiteApp" description: "Update the properties of a officeSuiteApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [officeSuiteApp](../resources/intune-apps-officesuiteapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1908 "officeConfigurationXml": "b2ZmaWNlQ29uZmlndXJhdGlvblhtbA==" } ```----- |
v1.0 | Intune Apps Symanteccodesigningcertificate Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-symanteccodesigningcertificate-get.md | Title: "Get symantecCodeSigningCertificate" description: "Read properties and relationships of the symantecCodeSigningCertificate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [symantecCodeSigningCertificate](../resources/intune-apps-symanteccodesigningcertificate.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 511 } } ```----- |
v1.0 | Intune Apps Symanteccodesigningcertificate Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-symanteccodesigningcertificate-update.md | Title: "Update symantecCodeSigningCertificate" description: "Update the properties of a symantecCodeSigningCertificate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [symantecCodeSigningCertificate](../resources/intune-apps-symanteccodesigningcertificate.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 470 "uploadDateTime": "2016-12-31T23:58:46.5747426-08:00" } ```----- |
v1.0 | Intune Apps Userappinstallstatus Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-userappinstallstatus-create.md | Title: "Create userAppInstallStatus" description: "Create a new userAppInstallStatus object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [userAppInstallStatus](../resources/intune-apps-userappinstallstatus.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 288 "notInstalledDeviceCount": 7 } ```----- |
v1.0 | Intune Apps Userappinstallstatus Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-userappinstallstatus-delete.md | Title: "Delete userAppInstallStatus" description: "Deletes a userAppInstallStatus."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [userAppInstallStatus](../resources/intune-apps-userappinstallstatus.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Userappinstallstatus Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-userappinstallstatus-get.md | Title: "Get userAppInstallStatus" description: "Read properties and relationships of the userAppInstallStatus object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [userAppInstallStatus](../resources/intune-apps-userappinstallstatus.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 321 } } ```----- |
v1.0 | Intune Apps Userappinstallstatus List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-userappinstallstatus-list.md | Title: "List userAppInstallStatuses" description: "List properties and relationships of the userAppInstallStatus objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [userAppInstallStatus](../resources/intune-apps-userappinstallstatus.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 349 ] } ```----- |
v1.0 | Intune Apps Userappinstallstatus Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-userappinstallstatus-update.md | Title: "Update userAppInstallStatus" description: "Update the properties of a userAppInstallStatus object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [userAppInstallStatus](../resources/intune-apps-userappinstallstatus.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 288 "notInstalledDeviceCount": 7 } ```----- |
v1.0 | Intune Apps Webapp Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-webapp-create.md | Title: "Create webApp" description: "Create a new webApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [webApp](../resources/intune-apps-webapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1008 "useManagedBrowser": true } ```----- |
v1.0 | Intune Apps Webapp Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-webapp-delete.md | Title: "Delete webApp" description: "Deletes a webApp."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [webApp](../resources/intune-apps-webapp.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Webapp Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-webapp-get.md | Title: "Get webApp" description: "Read properties and relationships of the webApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [webApp](../resources/intune-apps-webapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1085 } } ```----- |
v1.0 | Intune Apps Webapp List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-webapp-list.md | Title: "List webApps" description: "List properties and relationships of the webApp objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [webApp](../resources/intune-apps-webapp.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1157 ] } ```----- |
v1.0 | Intune Apps Webapp Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-webapp-update.md | Title: "Update webApp" description: "Update the properties of a webApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [webApp](../resources/intune-apps-webapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1008 "useManagedBrowser": true } ```----- |
v1.0 | Intune Apps Win32lobapp Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-win32lobapp-create.md | Title: "Create win32LobApp" description: "Create a new win32LobApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [win32LobApp](../resources/intune-apps-win32lobapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 3659 "allowAvailableUninstall": true } ```----- |
v1.0 | Intune Apps Win32lobapp Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-win32lobapp-delete.md | Title: "Delete win32LobApp" description: "Deletes a win32LobApp."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [win32LobApp](../resources/intune-apps-win32lobapp.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Win32lobapp Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-win32lobapp-get.md | Title: "Get win32LobApp" description: "Read properties and relationships of the win32LobApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [win32LobApp](../resources/intune-apps-win32lobapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 3904 } } ```----- |
v1.0 | Intune Apps Win32lobapp List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-win32lobapp-list.md | Title: "List win32LobApps" description: "List properties and relationships of the win32LobApp objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [win32LobApp](../resources/intune-apps-win32lobapp.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 4144 ] } ```----- |
v1.0 | Intune Apps Win32lobapp Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-win32lobapp-update.md | Title: "Update win32LobApp" description: "Update the properties of a win32LobApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [win32LobApp](../resources/intune-apps-win32lobapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 3659 "allowAvailableUninstall": true } ```----- |
v1.0 | Intune Apps Windowsappx Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-windowsappx-create.md | Title: "Create windowsAppX" description: "Create a new windowsAppX object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [windowsAppX](../resources/intune-apps-windowsappx.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1734 "identityVersion": "Identity Version value" } ```----- |
v1.0 | Intune Apps Windowsappx Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-windowsappx-delete.md | Title: "Delete windowsAppX" description: "Deletes a windowsAppX."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [windowsAppX](../resources/intune-apps-windowsappx.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Windowsappx Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-windowsappx-get.md | Title: "Get windowsAppX" description: "Read properties and relationships of the windowsAppX object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [windowsAppX](../resources/intune-apps-windowsappx.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1857 } } ```----- |
v1.0 | Intune Apps Windowsappx List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-windowsappx-list.md | Title: "List windowsAppXs" description: "List properties and relationships of the windowsAppX objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [windowsAppX](../resources/intune-apps-windowsappx.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1975 ] } ```----- |
v1.0 | Intune Apps Windowsappx Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-windowsappx-update.md | Title: "Update windowsAppX" description: "Update the properties of a windowsAppX object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [windowsAppX](../resources/intune-apps-windowsappx.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1734 "identityVersion": "Identity Version value" } ```----- |
v1.0 | Intune Apps Windowsmicrosoftedgeapp Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-windowsmicrosoftedgeapp-create.md | Title: "Create windowsMicrosoftEdgeApp" description: "Create a new windowsMicrosoftEdgeApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [windowsMicrosoftEdgeApp](../resources/intune-apps-windowsmicrosoftedgeapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| The following table shows the properties that are required when you create the w |dependentAppCount|Int32|The total number of dependencies the child app has. Inherited from [mobileApp](../resources/intune-shared-mobileapp.md)| |supersedingAppCount|Int32|The total number of apps this app directly or indirectly supersedes. Inherited from [mobileApp](../resources/intune-shared-mobileapp.md)| |supersededAppCount|Int32|The total number of apps this app is directly or indirectly superseded by. Inherited from [mobileApp](../resources/intune-shared-mobileapp.md)|-|channel|[microsoftEdgeChannel](../resources/intune-apps-microsoftedgechannel.md)|The channel to install on target devices. Possible values are: `dev`, `beta`, `stable`, `unknownFutureValue`.| +|channel|[microsoftEdgeChannel](../resources/intune-apps-microsoftedgechannel.md)|The channel to install on target devices. The possible values are dev, beta, and stable. By default, this property is set to dev. Possible values are: `dev`, `beta`, `stable`, `unknownFutureValue`.| |displayLanguageLocale|String|The language locale to use when the Edge app displays text to the user.| Content-Length: 1034 "displayLanguageLocale": "Display Language Locale value" } ```----- |
v1.0 | Intune Apps Windowsmicrosoftedgeapp Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-windowsmicrosoftedgeapp-delete.md | Title: "Delete windowsMicrosoftEdgeApp" description: "Deletes a windowsMicrosoftEdgeApp."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [windowsMicrosoftEdgeApp](../resources/intune-apps-windowsmicrosoftedgeapp.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Windowsmicrosoftedgeapp Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-windowsmicrosoftedgeapp-get.md | Title: "Get windowsMicrosoftEdgeApp" description: "Read properties and relationships of the windowsMicrosoftEdgeApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [windowsMicrosoftEdgeApp](../resources/intune-apps-windowsmicrosoftedgeapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1111 } } ```----- |
v1.0 | Intune Apps Windowsmicrosoftedgeapp List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-windowsmicrosoftedgeapp-list.md | Title: "List windowsMicrosoftEdgeApps" description: "List properties and relationships of the windowsMicrosoftEdgeApp objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [windowsMicrosoftEdgeApp](../resources/intune-apps-windowsmicrosoftedgeapp.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1183 ] } ```----- |
v1.0 | Intune Apps Windowsmicrosoftedgeapp Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-windowsmicrosoftedgeapp-update.md | Title: "Update windowsMicrosoftEdgeApp" description: "Update the properties of a windowsMicrosoftEdgeApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [windowsMicrosoftEdgeApp](../resources/intune-apps-windowsmicrosoftedgeapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| The following table shows the properties that are required when you create the [ |dependentAppCount|Int32|The total number of dependencies the child app has. Inherited from [mobileApp](../resources/intune-shared-mobileapp.md)| |supersedingAppCount|Int32|The total number of apps this app directly or indirectly supersedes. Inherited from [mobileApp](../resources/intune-shared-mobileapp.md)| |supersededAppCount|Int32|The total number of apps this app is directly or indirectly superseded by. Inherited from [mobileApp](../resources/intune-shared-mobileapp.md)|-|channel|[microsoftEdgeChannel](../resources/intune-apps-microsoftedgechannel.md)|The channel to install on target devices. Possible values are: `dev`, `beta`, `stable`, `unknownFutureValue`.| +|channel|[microsoftEdgeChannel](../resources/intune-apps-microsoftedgechannel.md)|The channel to install on target devices. The possible values are dev, beta, and stable. By default, this property is set to dev. Possible values are: `dev`, `beta`, `stable`, `unknownFutureValue`.| |displayLanguageLocale|String|The language locale to use when the Edge app displays text to the user.| Content-Length: 1034 "displayLanguageLocale": "Display Language Locale value" } ```----- |
v1.0 | Intune Apps Windowsmobilemsi Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-windowsmobilemsi-create.md | Title: "Create windowsMobileMSI" description: "Create a new windowsMobileMSI object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [windowsMobileMSI](../resources/intune-apps-windowsmobilemsi.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1295 "useDeviceContext": true } ```----- |
v1.0 | Intune Apps Windowsmobilemsi Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-windowsmobilemsi-delete.md | Title: "Delete windowsMobileMSI" description: "Deletes a windowsMobileMSI."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [windowsMobileMSI](../resources/intune-apps-windowsmobilemsi.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Windowsmobilemsi Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-windowsmobilemsi-get.md | Title: "Get windowsMobileMSI" description: "Read properties and relationships of the windowsMobileMSI object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [windowsMobileMSI](../resources/intune-apps-windowsmobilemsi.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1386 } } ```----- |
v1.0 | Intune Apps Windowsmobilemsi List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-windowsmobilemsi-list.md | Title: "List windowsMobileMSIs" description: "List properties and relationships of the windowsMobileMSI objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [windowsMobileMSI](../resources/intune-apps-windowsmobilemsi.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1472 ] } ```----- |
v1.0 | Intune Apps Windowsmobilemsi Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-windowsmobilemsi-update.md | Title: "Update windowsMobileMSI" description: "Update the properties of a windowsMobileMSI object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [windowsMobileMSI](../resources/intune-apps-windowsmobilemsi.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1295 "useDeviceContext": true } ```----- |
v1.0 | Intune Apps Windowsphone81appx Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-windowsphone81appx-create.md | Title: "Create windowsPhone81AppX" description: "Create a new windowsPhone81AppX object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [windowsPhone81AppX](../resources/intune-apps-windowsphone81appx.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1834 "identityVersion": "Identity Version value" } ```----- |
v1.0 | Intune Apps Windowsphone81appx Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-windowsphone81appx-delete.md | Title: "Delete windowsPhone81AppX" description: "Deletes a windowsPhone81AppX."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [windowsPhone81AppX](../resources/intune-apps-windowsphone81appx.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Windowsphone81appx Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-windowsphone81appx-get.md | Title: "Get windowsPhone81AppX" description: "Read properties and relationships of the windowsPhone81AppX object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [windowsPhone81AppX](../resources/intune-apps-windowsphone81appx.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1959 } } ```----- |
v1.0 | Intune Apps Windowsphone81appx List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-windowsphone81appx-list.md | Title: "List windowsPhone81AppXs" description: "List properties and relationships of the windowsPhone81AppX objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [windowsPhone81AppX](../resources/intune-apps-windowsphone81appx.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 2079 ] } ```----- |
v1.0 | Intune Apps Windowsphone81appx Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-windowsphone81appx-update.md | Title: "Update windowsPhone81AppX" description: "Update the properties of a windowsPhone81AppX object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [windowsPhone81AppX](../resources/intune-apps-windowsphone81appx.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1834 "identityVersion": "Identity Version value" } ```----- |
v1.0 | Intune Apps Windowsphone81appxbundle Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-windowsphone81appxbundle-create.md | Title: "Create windowsPhone81AppXBundle" description: "Create a new windowsPhone81AppXBundle object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [windowsPhone81AppXBundle](../resources/intune-apps-windowsphone81appxbundle.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 2740 ] } ```----- |
v1.0 | Intune Apps Windowsphone81appxbundle Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-windowsphone81appxbundle-delete.md | Title: "Delete windowsPhone81AppXBundle" description: "Deletes a windowsPhone81AppXBundle."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [windowsPhone81AppXBundle](../resources/intune-apps-windowsphone81appxbundle.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Windowsphone81appxbundle Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-windowsphone81appxbundle-get.md | Title: "Get windowsPhone81AppXBundle" description: "Read properties and relationships of the windowsPhone81AppXBundle object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [windowsPhone81AppXBundle](../resources/intune-apps-windowsphone81appxbundle.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 2919 } } ```----- |
v1.0 | Intune Apps Windowsphone81appxbundle List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-windowsphone81appxbundle-list.md | Title: "List windowsPhone81AppXBundles" description: "List properties and relationships of the windowsPhone81AppXBundle objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [windowsPhone81AppXBundle](../resources/intune-apps-windowsphone81appxbundle.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 3093 ] } ```----- |
v1.0 | Intune Apps Windowsphone81appxbundle Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-windowsphone81appxbundle-update.md | Title: "Update windowsPhone81AppXBundle" description: "Update the properties of a windowsPhone81AppXBundle object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [windowsPhone81AppXBundle](../resources/intune-apps-windowsphone81appxbundle.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 2740 ] } ```----- |
v1.0 | Intune Apps Windowsphone81storeapp Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-windowsphone81storeapp-create.md | Title: "Create windowsPhone81StoreApp" description: "Create a new windowsPhone81StoreApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [windowsPhone81StoreApp](../resources/intune-apps-windowsphone81storeapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1004 "appStoreUrl": "https://example.com/appStoreUrl/" } ```----- |
v1.0 | Intune Apps Windowsphone81storeapp Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-windowsphone81storeapp-delete.md | Title: "Delete windowsPhone81StoreApp" description: "Deletes a windowsPhone81StoreApp."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [windowsPhone81StoreApp](../resources/intune-apps-windowsphone81storeapp.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Windowsphone81storeapp Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-windowsphone81storeapp-get.md | Title: "Get windowsPhone81StoreApp" description: "Read properties and relationships of the windowsPhone81StoreApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [windowsPhone81StoreApp](../resources/intune-apps-windowsphone81storeapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1079 } } ```----- |
v1.0 | Intune Apps Windowsphone81storeapp List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-windowsphone81storeapp-list.md | Title: "List windowsPhone81StoreApps" description: "List properties and relationships of the windowsPhone81StoreApp objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [windowsPhone81StoreApp](../resources/intune-apps-windowsphone81storeapp.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1149 ] } ```----- |
v1.0 | Intune Apps Windowsphone81storeapp Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-windowsphone81storeapp-update.md | Title: "Update windowsPhone81StoreApp" description: "Update the properties of a windowsPhone81StoreApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [windowsPhone81StoreApp](../resources/intune-apps-windowsphone81storeapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1004 "appStoreUrl": "https://example.com/appStoreUrl/" } ```----- |
v1.0 | Intune Apps Windowsphonexap Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-windowsphonexap-create.md | Title: "Create windowsPhoneXAP" description: "Create a new windowsPhoneXAP object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [windowsPhoneXAP](../resources/intune-apps-windowsphonexap.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1558 "identityVersion": "Identity Version value" } ```----- |
v1.0 | Intune Apps Windowsphonexap Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-windowsphonexap-delete.md | Title: "Delete windowsPhoneXAP" description: "Deletes a windowsPhoneXAP."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [windowsPhoneXAP](../resources/intune-apps-windowsphonexap.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Windowsphonexap Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-windowsphonexap-get.md | Title: "Get windowsPhoneXAP" description: "Read properties and relationships of the windowsPhoneXAP object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [windowsPhoneXAP](../resources/intune-apps-windowsphonexap.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1673 } } ```----- |
v1.0 | Intune Apps Windowsphonexap List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-windowsphonexap-list.md | Title: "List windowsPhoneXAPs" description: "List properties and relationships of the windowsPhoneXAP objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [windowsPhoneXAP](../resources/intune-apps-windowsphonexap.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1783 ] } ```----- |
v1.0 | Intune Apps Windowsphonexap Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-windowsphonexap-update.md | Title: "Update windowsPhoneXAP" description: "Update the properties of a windowsPhoneXAP object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [windowsPhoneXAP](../resources/intune-apps-windowsphonexap.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1558 "identityVersion": "Identity Version value" } ```----- |
v1.0 | Intune Apps Windowsstoreapp Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-windowsstoreapp-create.md | Title: "Create windowsStoreApp" description: "Create a new windowsStoreApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [windowsStoreApp](../resources/intune-apps-windowsstoreapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 997 "appStoreUrl": "https://example.com/appStoreUrl/" } ```----- |
v1.0 | Intune Apps Windowsstoreapp Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-windowsstoreapp-delete.md | Title: "Delete windowsStoreApp" description: "Deletes a windowsStoreApp."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [windowsStoreApp](../resources/intune-apps-windowsstoreapp.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Windowsstoreapp Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-windowsstoreapp-get.md | Title: "Get windowsStoreApp" description: "Read properties and relationships of the windowsStoreApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [windowsStoreApp](../resources/intune-apps-windowsstoreapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1072 } } ```----- |
v1.0 | Intune Apps Windowsstoreapp List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-windowsstoreapp-list.md | Title: "List windowsStoreApps" description: "List properties and relationships of the windowsStoreApp objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [windowsStoreApp](../resources/intune-apps-windowsstoreapp.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1142 ] } ```----- |
v1.0 | Intune Apps Windowsstoreapp Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-windowsstoreapp-update.md | Title: "Update windowsStoreApp" description: "Update the properties of a windowsStoreApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [windowsStoreApp](../resources/intune-apps-windowsstoreapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 997 "appStoreUrl": "https://example.com/appStoreUrl/" } ```----- |
v1.0 | Intune Apps Windowsuniversalappx Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-windowsuniversalappx-create.md | Title: "Create windowsUniversalAppX" description: "Create a new windowsUniversalAppX object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [windowsUniversalAppX](../resources/intune-apps-windowsuniversalappx.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1782 "identityVersion": "Identity Version value" } ```----- |
v1.0 | Intune Apps Windowsuniversalappx Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-windowsuniversalappx-delete.md | Title: "Delete windowsUniversalAppX" description: "Deletes a windowsUniversalAppX."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [windowsUniversalAppX](../resources/intune-apps-windowsuniversalappx.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Windowsuniversalappx Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-windowsuniversalappx-get.md | Title: "Get windowsUniversalAppX" description: "Read properties and relationships of the windowsUniversalAppX object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [windowsUniversalAppX](../resources/intune-apps-windowsuniversalappx.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1907 } } ```----- |
v1.0 | Intune Apps Windowsuniversalappx List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-windowsuniversalappx-list.md | Title: "List windowsUniversalAppXs" description: "List properties and relationships of the windowsUniversalAppX objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [windowsUniversalAppX](../resources/intune-apps-windowsuniversalappx.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 2027 ] } ```----- |
v1.0 | Intune Apps Windowsuniversalappx Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-windowsuniversalappx-update.md | Title: "Update windowsUniversalAppX" description: "Update the properties of a windowsUniversalAppX object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [windowsUniversalAppX](../resources/intune-apps-windowsuniversalappx.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1782 "identityVersion": "Identity Version value" } ```----- |
v1.0 | Intune Apps Windowsuniversalappxcontainedapp Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-windowsuniversalappxcontainedapp-create.md | Title: "Create windowsUniversalAppXContainedApp" description: "Create a new windowsUniversalAppXContainedApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [windowsUniversalAppXContainedApp](../resources/intune-apps-windowsuniversalappxcontainedapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 171 "appUserModelId": "App User Model Id value" } ```----- |
v1.0 | Intune Apps Windowsuniversalappxcontainedapp Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-windowsuniversalappxcontainedapp-delete.md | Title: "Delete windowsUniversalAppXContainedApp" description: "Deletes a windowsUniversalAppXContainedApp."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [windowsUniversalAppXContainedApp](../resources/intune-apps-windowsuniversalappxcontainedapp.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Windowsuniversalappxcontainedapp Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-windowsuniversalappxcontainedapp-get.md | Title: "Get windowsUniversalAppXContainedApp" description: "Read properties and relationships of the windowsUniversalAppXContainedApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [windowsUniversalAppXContainedApp](../resources/intune-apps-windowsuniversalappxcontainedapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 196 } } ```----- |
v1.0 | Intune Apps Windowsuniversalappxcontainedapp List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-windowsuniversalappxcontainedapp-list.md | Title: "List windowsUniversalAppXContainedApps" description: "List properties and relationships of the windowsUniversalAppXContainedApp objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [windowsUniversalAppXContainedApp](../resources/intune-apps-windowsuniversalappxcontainedapp.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 216 ] } ```----- |
v1.0 | Intune Apps Windowsuniversalappxcontainedapp Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-windowsuniversalappxcontainedapp-update.md | Title: "Update windowsUniversalAppXContainedApp" description: "Update the properties of a windowsUniversalAppXContainedApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [windowsUniversalAppXContainedApp](../resources/intune-apps-windowsuniversalappxcontainedapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 171 "appUserModelId": "App User Model Id value" } ```----- |
v1.0 | Intune Apps Windowswebapp Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-windowswebapp-create.md | Title: "Create windowsWebApp" description: "Create a new windowsWebApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [windowsWebApp](../resources/intune-apps-windowswebapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 985 "appUrl": "https://example.com/appUrl/" } ```----- |
v1.0 | Intune Apps Windowswebapp Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-windowswebapp-delete.md | Title: "Delete windowsWebApp" description: "Deletes a windowsWebApp."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [windowsWebApp](../resources/intune-apps-windowswebapp.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Windowswebapp Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-windowswebapp-get.md | Title: "Get windowsWebApp" description: "Read properties and relationships of the windowsWebApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [windowsWebApp](../resources/intune-apps-windowswebapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1060 } } ```----- |
v1.0 | Intune Apps Windowswebapp List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-windowswebapp-list.md | Title: "List windowsWebApps" description: "List properties and relationships of the windowsWebApp objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [windowsWebApp](../resources/intune-apps-windowswebapp.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1130 ] } ```----- |
v1.0 | Intune Apps Windowswebapp Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-windowswebapp-update.md | Title: "Update windowsWebApp" description: "Update the properties of a windowsWebApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [windowsWebApp](../resources/intune-apps-windowswebapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 985 "appUrl": "https://example.com/appUrl/" } ```----- |
v1.0 | Intune Apps Wingetapp Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-wingetapp-create.md | Title: "Create winGetApp" description: "Create a new winGetApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [winGetApp](../resources/intune-apps-wingetapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1157 } } ```----- |
v1.0 | Intune Apps Wingetapp Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-wingetapp-delete.md | Title: "Delete winGetApp" description: "Deletes a winGetApp."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [winGetApp](../resources/intune-apps-wingetapp.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Apps Wingetapp Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-wingetapp-get.md | Title: "Get winGetApp" description: "Read properties and relationships of the winGetApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [winGetApp](../resources/intune-apps-wingetapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1242 } } ```----- |
v1.0 | Intune Apps Wingetapp List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-wingetapp-list.md | Title: "List winGetApps" description: "List properties and relationships of the winGetApp objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [winGetApp](../resources/intune-apps-wingetapp.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1322 ] } ```----- |
v1.0 | Intune Apps Wingetapp Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-apps-wingetapp-update.md | Title: "Update winGetApp" description: "Update the properties of a winGetApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [winGetApp](../resources/intune-apps-wingetapp.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1157 } } ```----- |
v1.0 | Intune Auditing Auditevent Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-auditing-auditevent-create.md | Title: "Create auditEvent" description: "Create a new auditEvent object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [auditEvent](../resources/intune-auditing-auditevent.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1852 "category": "Category value" } ```----- |
v1.0 | Intune Auditing Auditevent Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-auditing-auditevent-delete.md | Title: "Delete auditEvent" description: "Deletes a auditEvent."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [auditEvent](../resources/intune-auditing-auditevent.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Auditing Auditevent Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-auditing-auditevent-get.md | Title: "Get auditEvent" description: "Read properties and relationships of the auditEvent object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [auditEvent](../resources/intune-auditing-auditevent.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1973 } } ```----- |
v1.0 | Intune Auditing Auditevent Getauditactivitytypes | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-auditing-auditevent-getauditactivitytypes.md | Title: "getAuditActivityTypes function" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Not yet documented -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 61 ] } ```----- |
v1.0 | Intune Auditing Auditevent Getauditcategories | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-auditing-auditevent-getauditcategories.md | Title: "getAuditCategories function" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Not yet documented -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 57 ] } ```----- |
v1.0 | Intune Auditing Auditevent List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-auditing-auditevent-list.md | Title: "List auditEvents" description: "List properties and relationships of the auditEvent objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [auditEvent](../resources/intune-auditing-auditevent.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 2089 ] } ```----- |
v1.0 | Intune Auditing Auditevent Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-auditing-auditevent-update.md | Title: "Update auditEvent" description: "Update the properties of a auditEvent object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [auditEvent](../resources/intune-auditing-auditevent.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1852 "category": "Category value" } ```----- |
v1.0 | Intune Books Deviceinstallstate Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-books-deviceinstallstate-create.md | Title: "Create deviceInstallState" description: "Create a new deviceInstallState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [deviceInstallState](../resources/intune-books-deviceinstallstate.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 423 "userName": "User Name value" } ```----- |
v1.0 | Intune Books Deviceinstallstate Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-books-deviceinstallstate-delete.md | Title: "Delete deviceInstallState" description: "Deletes a deviceInstallState."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [deviceInstallState](../resources/intune-books-deviceinstallstate.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Books Deviceinstallstate Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-books-deviceinstallstate-get.md | Title: "Get deviceInstallState" description: "Read properties and relationships of the deviceInstallState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [deviceInstallState](../resources/intune-books-deviceinstallstate.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 462 } } ```----- |
v1.0 | Intune Books Deviceinstallstate List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-books-deviceinstallstate-list.md | Title: "List deviceInstallStates" description: "List properties and relationships of the deviceInstallState objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [deviceInstallState](../resources/intune-books-deviceinstallstate.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 496 ] } ```----- |
v1.0 | Intune Books Deviceinstallstate Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-books-deviceinstallstate-update.md | Title: "Update deviceInstallState" description: "Update the properties of a deviceInstallState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [deviceInstallState](../resources/intune-books-deviceinstallstate.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 423 "userName": "User Name value" } ```----- |
v1.0 | Intune Books Ebookinstallsummary Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-books-ebookinstallsummary-get.md | Title: "Get eBookInstallSummary" description: "Read properties and relationships of the eBookInstallSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [eBookInstallSummary](../resources/intune-books-ebookinstallsummary.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 320 } } ```----- |
v1.0 | Intune Books Ebookinstallsummary Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-books-ebookinstallsummary-update.md | Title: "Update eBookInstallSummary" description: "Update the properties of a eBookInstallSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [eBookInstallSummary](../resources/intune-books-ebookinstallsummary.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 285 "notInstalledUserCount": 5 } ```----- |
v1.0 | Intune Books Iosvppebook Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-books-iosvppebook-create.md | Title: "Create iosVppEBook" description: "Create a new iosVppEBook object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [iosVppEBook](../resources/intune-books-iosvppebook.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1026 ] } ```----- |
v1.0 | Intune Books Iosvppebook Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-books-iosvppebook-delete.md | Title: "Delete iosVppEBook" description: "Deletes a iosVppEBook."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [iosVppEBook](../resources/intune-books-iosvppebook.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Books Iosvppebook Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-books-iosvppebook-get.md | Title: "Get iosVppEBook" description: "Read properties and relationships of the iosVppEBook object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [iosVppEBook](../resources/intune-books-iosvppebook.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1101 } } ```----- |
v1.0 | Intune Books Iosvppebook List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-books-iosvppebook-list.md | Title: "List iosVppEBooks" description: "List properties and relationships of the iosVppEBook objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [iosVppEBook](../resources/intune-books-iosvppebook.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1171 ] } ```----- |
v1.0 | Intune Books Iosvppebook Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-books-iosvppebook-update.md | Title: "Update iosVppEBook" description: "Update the properties of a iosVppEBook object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [iosVppEBook](../resources/intune-books-iosvppebook.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 1026 ] } ```----- |
v1.0 | Intune Books Iosvppebookassignment Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-books-iosvppebookassignment-create.md | Title: "Create iosVppEBookAssignment" description: "Create a new iosVppEBookAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [iosVppEBookAssignment](../resources/intune-books-iosvppebookassignment.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 409 "installIntent": "required" } ```----- |
v1.0 | Intune Books Iosvppebookassignment Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-books-iosvppebookassignment-delete.md | Title: "Delete iosVppEBookAssignment" description: "Deletes a iosVppEBookAssignment."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [iosVppEBookAssignment](../resources/intune-books-iosvppebookassignment.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Books Iosvppebookassignment Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-books-iosvppebookassignment-get.md | Title: "Get iosVppEBookAssignment" description: "Read properties and relationships of the iosVppEBookAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [iosVppEBookAssignment](../resources/intune-books-iosvppebookassignment.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 444 } } ```----- |
v1.0 | Intune Books Iosvppebookassignment List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-books-iosvppebookassignment-list.md | Title: "List iosVppEBookAssignments" description: "List properties and relationships of the iosVppEBookAssignment objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [iosVppEBookAssignment](../resources/intune-books-iosvppebookassignment.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 474 ] } ```----- |
v1.0 | Intune Books Iosvppebookassignment Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-books-iosvppebookassignment-update.md | Title: "Update iosVppEBookAssignment" description: "Update the properties of a iosVppEBookAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [iosVppEBookAssignment](../resources/intune-books-iosvppebookassignment.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 409 "installIntent": "required" } ```----- |
v1.0 | Intune Books Managedebook Assign | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-books-managedebook-assign.md | Title: "assign action" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Not yet documented -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Books Managedebook Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-books-managedebook-get.md | Title: "Get managedEBook" description: "Read properties and relationships of the managedEBook object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [managedEBook](../resources/intune-books-managedebook.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 712 } } ```----- |
v1.0 | Intune Books Managedebook List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-books-managedebook-list.md | Title: "List managedEBooks" description: "List properties and relationships of the managedEBook objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [managedEBook](../resources/intune-books-managedebook.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 756 ] } ```----- |
v1.0 | Intune Books Managedebookassignment Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-books-managedebookassignment-create.md | Title: "Create managedEBookAssignment" description: "Create a new managedEBookAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [managedEBookAssignment](../resources/intune-books-managedebookassignment.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 404 "installIntent": "required" } ```----- |
v1.0 | Intune Books Managedebookassignment Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-books-managedebookassignment-delete.md | Title: "Delete managedEBookAssignment" description: "Deletes a managedEBookAssignment."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [managedEBookAssignment](../resources/intune-books-managedebookassignment.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Books Managedebookassignment Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-books-managedebookassignment-get.md | Title: "Get managedEBookAssignment" description: "Read properties and relationships of the managedEBookAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [managedEBookAssignment](../resources/intune-books-managedebookassignment.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 439 } } ```----- |
v1.0 | Intune Books Managedebookassignment List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-books-managedebookassignment-list.md | Title: "List managedEBookAssignments" description: "List properties and relationships of the managedEBookAssignment objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [managedEBookAssignment](../resources/intune-books-managedebookassignment.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 469 ] } ```----- |
v1.0 | Intune Books Managedebookassignment Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-books-managedebookassignment-update.md | Title: "Update managedEBookAssignment" description: "Update the properties of a managedEBookAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [managedEBookAssignment](../resources/intune-books-managedebookassignment.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 404 "installIntent": "required" } ```----- |
v1.0 | Intune Books Managedebookcategory Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-books-managedebookcategory-create.md | Title: "Create managedEBookCategory" description: "Create a new managedEBookCategory object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [managedEBookCategory](../resources/intune-books-managedebookcategory.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 215 "lastModifiedDateTime": "2017-01-01T00:00:35.1329464-08:00" } ```----- |
v1.0 | Intune Books Managedebookcategory Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-books-managedebookcategory-delete.md | Title: "Delete managedEBookCategory" description: "Deletes a managedEBookCategory."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [managedEBookCategory](../resources/intune-books-managedebookcategory.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Books Managedebookcategory Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-books-managedebookcategory-get.md | Title: "Get managedEBookCategory" description: "Read properties and relationships of the managedEBookCategory object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [managedEBookCategory](../resources/intune-books-managedebookcategory.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 242 } } ```----- |
v1.0 | Intune Books Managedebookcategory List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-books-managedebookcategory-list.md | Title: "List managedEBookCategories" description: "List properties and relationships of the managedEBookCategory objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [managedEBookCategory](../resources/intune-books-managedebookcategory.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 264 ] } ```----- |
v1.0 | Intune Books Managedebookcategory Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-books-managedebookcategory-update.md | Title: "Update managedEBookCategory" description: "Update the properties of a managedEBookCategory object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [managedEBookCategory](../resources/intune-books-managedebookcategory.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 215 "lastModifiedDateTime": "2017-01-01T00:00:35.1329464-08:00" } ```----- |
v1.0 | Intune Books Userinstallstatesummary Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-books-userinstallstatesummary-create.md | Title: "Create userInstallStateSummary" description: "Create a new userInstallStateSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [userInstallStateSummary](../resources/intune-books-userinstallstatesummary.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 238 "notInstalledDeviceCount": 7 } ```----- |
v1.0 | Intune Books Userinstallstatesummary Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-books-userinstallstatesummary-delete.md | Title: "Delete userInstallStateSummary" description: "Deletes a userInstallStateSummary."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [userInstallStateSummary](../resources/intune-books-userinstallstatesummary.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Books Userinstallstatesummary Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-books-userinstallstatesummary-get.md | Title: "Get userInstallStateSummary" description: "Read properties and relationships of the userInstallStateSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [userInstallStateSummary](../resources/intune-books-userinstallstatesummary.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 269 } } ```----- |
v1.0 | Intune Books Userinstallstatesummary List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-books-userinstallstatesummary-list.md | Title: "List userInstallStateSummaries" description: "List properties and relationships of the userInstallStateSummary objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [userInstallStateSummary](../resources/intune-books-userinstallstatesummary.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 295 ] } ```----- |
v1.0 | Intune Books Userinstallstatesummary Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-books-userinstallstatesummary-update.md | Title: "Update userInstallStateSummary" description: "Update the properties of a userInstallStateSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [userInstallStateSummary](../resources/intune-books-userinstallstatesummary.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 238 "notInstalledDeviceCount": 7 } ```----- |
v1.0 | Intune Chromebooksync Chromeosonboardingsettings Connect | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-chromebooksync-chromeosonboardingsettings-connect.md | Title: "connect action" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Not yet documented -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 29 "value": "inprogress" } ```----- |
v1.0 | Intune Chromebooksync Chromeosonboardingsettings Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-chromebooksync-chromeosonboardingsettings-create.md | Title: "Create chromeOSOnboardingSettings" description: "Create a new chromeOSOnboardingSettings object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [chromeOSOnboardingSettings](../resources/intune-chromebooksync-chromeosonboardingsettings.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 351 "lastDirectorySyncDateTime": "2016-12-31T23:57:56.1183185-08:00" } ```----- |
v1.0 | Intune Chromebooksync Chromeosonboardingsettings Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-chromebooksync-chromeosonboardingsettings-delete.md | Title: "Delete chromeOSOnboardingSettings" description: "Deletes a chromeOSOnboardingSettings."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [chromeOSOnboardingSettings](../resources/intune-chromebooksync-chromeosonboardingsettings.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Chromebooksync Chromeosonboardingsettings Disconnect | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-chromebooksync-chromeosonboardingsettings-disconnect.md | Title: "disconnect action" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Not yet documented -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 29 "value": "inprogress" } ```----- |
v1.0 | Intune Chromebooksync Chromeosonboardingsettings Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-chromebooksync-chromeosonboardingsettings-get.md | Title: "Get chromeOSOnboardingSettings" description: "Read properties and relationships of the chromeOSOnboardingSettings object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [chromeOSOnboardingSettings](../resources/intune-chromebooksync-chromeosonboardingsettings.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 382 } } ```----- |
v1.0 | Intune Chromebooksync Chromeosonboardingsettings List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-chromebooksync-chromeosonboardingsettings-list.md | Title: "List chromeOSOnboardingSettingses" description: "List properties and relationships of the chromeOSOnboardingSettings objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [chromeOSOnboardingSettings](../resources/intune-chromebooksync-chromeosonboardingsettings.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 408 ] } ```----- |
v1.0 | Intune Chromebooksync Chromeosonboardingsettings Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-chromebooksync-chromeosonboardingsettings-update.md | Title: "Update chromeOSOnboardingSettings" description: "Update the properties of a chromeOSOnboardingSettings object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [chromeOSOnboardingSettings](../resources/intune-chromebooksync-chromeosonboardingsettings.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 351 "lastDirectorySyncDateTime": "2016-12-31T23:57:56.1183185-08:00" } ```----- |
v1.0 | Intune Cirrus Officeclientconfiguration Assign | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-cirrus-officeclientconfiguration-assign.md | Title: "assign action" description: "Replace all targeted groups for a policy." localization_priority: Normal-+ ms.prod: "intune" doc_type: apiPageType Content-Length: 274 ] } ```----- |
v1.0 | Intune Cirrus Officeclientconfiguration Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-cirrus-officeclientconfiguration-get.md | Title: "Get officeClientConfiguration" description: "Get a specific policy." localization_priority: Normal-+ ms.prod: "intune" doc_type: apiPageType Content-Length: 1137 } } ```----- |
v1.0 | Intune Cirrus Officeclientconfiguration List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-cirrus-officeclientconfiguration-list.md | Title: "List officeClientConfigurations" description: "Get all policies." localization_priority: Normal-+ ms.prod: "intune" doc_type: apiPageType Content-Length: 1207 ] } ```----- |
v1.0 | Intune Cirrus Officeclientconfiguration Updatepriorities | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-cirrus-officeclientconfiguration-updatepriorities.md | Title: "updatePriorities action" description: "Update policy priorities." localization_priority: Normal-+ ms.prod: "intune" doc_type: apiPageType Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 200 OK ```----- |
v1.0 | Intune Cirrus Officeclientconfigurationassignment Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-cirrus-officeclientconfigurationassignment-create.md | Title: "Create officeClientConfigurationAssignment" description: "Add a target group to an existing policy." localization_priority: Normal-+ ms.prod: "intune" doc_type: apiPageType Content-Length: 221 } } ```----- |
v1.0 | Intune Cirrus Officeclientconfigurationassignment Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-cirrus-officeclientconfigurationassignment-delete.md | Title: "Delete officeClientConfigurationAssignment" description: "Deletes a officeClientConfigurationAssignment." localization_priority: Normal-+ ms.prod: "intune" doc_type: apiPageType Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Cirrus Officeclientconfigurationassignment Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-cirrus-officeclientconfigurationassignment-get.md | Title: "Get officeClientConfigurationAssignment" description: "Read properties and relationships of the officeClientConfigurationAssignment object." localization_priority: Normal-+ ms.prod: "intune" doc_type: apiPageType Content-Length: 250 } } ```----- |
v1.0 | Intune Cirrus Officeclientconfigurationassignment List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-cirrus-officeclientconfigurationassignment-list.md | Title: "List officeClientConfigurationAssignments" description: "List properties and relationships of the officeClientConfigurationAssignment objects." localization_priority: Normal-+ ms.prod: "intune" doc_type: apiPageType Content-Length: 274 ] } ```----- |
v1.0 | Intune Cirrus Officeclientconfigurationassignment Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-cirrus-officeclientconfigurationassignment-update.md | Title: "Update officeClientConfigurationAssignment" description: "Update the properties of a officeClientConfigurationAssignment object." localization_priority: Normal-+ ms.prod: "intune" doc_type: apiPageType Content-Length: 221 } } ```----- |
v1.0 | Intune Cirrus Windowsofficeclientconfiguration Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-cirrus-windowsofficeclientconfiguration-create.md | Title: "Create windowsOfficeClientConfiguration" description: "Create a new non-security policy with targeting groups." localization_priority: Normal-+ ms.prod: "intune" doc_type: apiPageType Content-Length: 1069 ] } ```----- |
v1.0 | Intune Cirrus Windowsofficeclientconfiguration Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-cirrus-windowsofficeclientconfiguration-delete.md | Title: "Delete windowsOfficeClientConfiguration" description: "Delete a specific non-security policy." localization_priority: Normal-+ ms.prod: "intune" doc_type: apiPageType Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 200 OK ```----- |
v1.0 | Intune Cirrus Windowsofficeclientconfiguration Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-cirrus-windowsofficeclientconfiguration-get.md | Title: "Get windowsOfficeClientConfiguration" description: "Get a specific non-security policy windowsOfficeClientConfiguration object." localization_priority: Normal-+ ms.prod: "intune" doc_type: apiPageType Content-Length: 1144 } } ```----- |
v1.0 | Intune Cirrus Windowsofficeclientconfiguration List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-cirrus-windowsofficeclientconfiguration-list.md | Title: "List windowsOfficeClientConfigurations" description: "List properties and relationships of the windowsOfficeClientConfiguration objects." localization_priority: Normal-+ ms.prod: "intune" doc_type: apiPageType Content-Length: 1214 ] } ```----- |
v1.0 | Intune Cirrus Windowsofficeclientconfiguration Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-cirrus-windowsofficeclientconfiguration-update.md | Title: "Update windowsOfficeClientConfiguration" description: "Patch a specific non-security policy payload." localization_priority: Normal-+ ms.prod: "intune" doc_type: apiPageType Content-Length: 1069 ] } ```----- |
v1.0 | Intune Cirrus Windowsofficeclientsecurityconfiguration Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-cirrus-windowsofficeclientsecurityconfiguration-create.md | Title: "Create windowsOfficeClientSecurityConfiguration" description: "Create a new windowsOfficeClientSecurityConfiguration object." localization_priority: Normal-+ ms.prod: "intune" doc_type: apiPageType Content-Length: 1077 ] } ```----- |
v1.0 | Intune Cirrus Windowsofficeclientsecurityconfiguration Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-cirrus-windowsofficeclientsecurityconfiguration-delete.md | Title: "Delete windowsOfficeClientSecurityConfiguration" description: "Deletes a security policy windowsOfficeClientSecurityConfiguration." localization_priority: Normal-+ ms.prod: "intune" doc_type: apiPageType Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 200 OK ```----- |
v1.0 | Intune Cirrus Windowsofficeclientsecurityconfiguration Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-cirrus-windowsofficeclientsecurityconfiguration-get.md | Title: "Get windowsOfficeClientSecurityConfiguration" description: "Get a specific security policy windowsOfficeClientSecurityConfiguration object." localization_priority: Normal-+ ms.prod: "intune" doc_type: apiPageType Content-Length: 1152 } } ```----- |
v1.0 | Intune Cirrus Windowsofficeclientsecurityconfiguration List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-cirrus-windowsofficeclientsecurityconfiguration-list.md | Title: "List windowsOfficeClientSecurityConfigurations" description: "List properties and relationships of the windowsOfficeClientSecurityConfiguration objects." localization_priority: Normal-+ ms.prod: "intune" doc_type: apiPageType Content-Length: 1222 ] } ```----- |
v1.0 | Intune Cirrus Windowsofficeclientsecurityconfiguration Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-cirrus-windowsofficeclientsecurityconfiguration-update.md | Title: "Update windowsOfficeClientSecurityConfiguration" description: "Update the properties of a windowsOfficeClientSecurityConfiguration object." localization_priority: Normal-+ ms.prod: "intune" doc_type: apiPageType Content-Length: 1077 ] } ```----- |
v1.0 | Intune Companyterms Termsandconditions Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-companyterms-termsandconditions-create.md | Title: "Create termsAndConditions" description: "Create a new termsAndConditions object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [termsAndConditions](../resources/intune-companyterms-termsandconditions.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 567 ] } ```----- |
v1.0 | Intune Companyterms Termsandconditions Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-companyterms-termsandconditions-delete.md | Title: "Delete termsAndConditions" description: "Deletes a termsAndConditions."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [termsAndConditions](../resources/intune-companyterms-termsandconditions.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Companyterms Termsandconditions Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-companyterms-termsandconditions-get.md | Title: "Get termsAndConditions" description: "Read properties and relationships of the termsAndConditions object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [termsAndConditions](../resources/intune-companyterms-termsandconditions.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 614 } } ```----- |
v1.0 | Intune Companyterms Termsandconditions List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-companyterms-termsandconditions-list.md | Title: "List termsAndConditionses" description: "List properties and relationships of the termsAndConditions objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [termsAndConditions](../resources/intune-companyterms-termsandconditions.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 656 ] } ```----- |
v1.0 | Intune Companyterms Termsandconditions Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-companyterms-termsandconditions-update.md | Title: "Update termsAndConditions" description: "Update the properties of a termsAndConditions object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [termsAndConditions](../resources/intune-companyterms-termsandconditions.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 567 ] } ```----- |
v1.0 | Intune Companyterms Termsandconditionsacceptancestatus Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-companyterms-termsandconditionsacceptancestatus-create.md | Title: "Create termsAndConditionsAcceptanceStatus" description: "Create a new termsAndConditionsAcceptanceStatus object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [termsAndConditionsAcceptanceStatus](../resources/intune-companyterms-termsandconditionsacceptancestatus.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 313 "userPrincipalName": "User Principal Name value" } ```----- |
v1.0 | Intune Companyterms Termsandconditionsacceptancestatus Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-companyterms-termsandconditionsacceptancestatus-delete.md | Title: "Delete termsAndConditionsAcceptanceStatus" description: "Deletes a termsAndConditionsAcceptanceStatus."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [termsAndConditionsAcceptanceStatus](../resources/intune-companyterms-termsandconditionsacceptancestatus.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Companyterms Termsandconditionsacceptancestatus Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-companyterms-termsandconditionsacceptancestatus-get.md | Title: "Get termsAndConditionsAcceptanceStatus" description: "Read properties and relationships of the termsAndConditionsAcceptanceStatus object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [termsAndConditionsAcceptanceStatus](../resources/intune-companyterms-termsandconditionsacceptancestatus.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 344 } } ```----- |
v1.0 | Intune Companyterms Termsandconditionsacceptancestatus List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-companyterms-termsandconditionsacceptancestatus-list.md | Title: "List termsAndConditionsAcceptanceStatuses" description: "List properties and relationships of the termsAndConditionsAcceptanceStatus objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [termsAndConditionsAcceptanceStatus](../resources/intune-companyterms-termsandconditionsacceptancestatus.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 370 ] } ```----- |
v1.0 | Intune Companyterms Termsandconditionsacceptancestatus Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-companyterms-termsandconditionsacceptancestatus-update.md | Title: "Update termsAndConditionsAcceptanceStatus" description: "Update the properties of a termsAndConditionsAcceptanceStatus object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [termsAndConditionsAcceptanceStatus](../resources/intune-companyterms-termsandconditionsacceptancestatus.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 313 "userPrincipalName": "User Principal Name value" } ```----- |
v1.0 | Intune Companyterms Termsandconditionsassignment Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-companyterms-termsandconditionsassignment-create.md | Title: "Create termsAndConditionsAssignment" description: "Create a new termsAndConditionsAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [termsAndConditionsAssignment](../resources/intune-companyterms-termsandconditionsassignment.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 436 } } ```----- |
v1.0 | Intune Companyterms Termsandconditionsassignment Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-companyterms-termsandconditionsassignment-delete.md | Title: "Delete termsAndConditionsAssignment" description: "Deletes a termsAndConditionsAssignment."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [termsAndConditionsAssignment](../resources/intune-companyterms-termsandconditionsassignment.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Companyterms Termsandconditionsassignment Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-companyterms-termsandconditionsassignment-get.md | Title: "Get termsAndConditionsAssignment" description: "Read properties and relationships of the termsAndConditionsAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [termsAndConditionsAssignment](../resources/intune-companyterms-termsandconditionsassignment.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 471 } } ```----- |
v1.0 | Intune Companyterms Termsandconditionsassignment List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-companyterms-termsandconditionsassignment-list.md | Title: "List termsAndConditionsAssignments" description: "List properties and relationships of the termsAndConditionsAssignment objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [termsAndConditionsAssignment](../resources/intune-companyterms-termsandconditionsassignment.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 501 ] } ```----- |
v1.0 | Intune Companyterms Termsandconditionsassignment Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-companyterms-termsandconditionsassignment-update.md | Title: "Update termsAndConditionsAssignment" description: "Update the properties of a termsAndConditionsAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [termsAndConditionsAssignment](../resources/intune-companyterms-termsandconditionsassignment.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 436 } } ```----- |
v1.0 | Intune Companyterms Termsandconditionsgroupassignment Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-companyterms-termsandconditionsgroupassignment-create.md | Title: "Create termsAndConditionsGroupAssignment" description: "Create a new termsAndConditionsGroupAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [termsAndConditionsGroupAssignment](../resources/intune-companyterms-termsandconditionsgroupassignment.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 169 "targetGroupId": "Target Group Id value" } ```----- |
v1.0 | Intune Companyterms Termsandconditionsgroupassignment Delete | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-companyterms-termsandconditionsgroupassignment-delete.md | Title: "Delete termsAndConditionsGroupAssignment" description: "Deletes a termsAndConditionsGroupAssignment."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Deletes a [termsAndConditionsGroupAssignment](../resources/intune-companyterms-termsandconditionsgroupassignment.md). -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Here is an example of the response. Note: The response object shown here may be ``` http HTTP/1.1 204 No Content ```----- |
v1.0 | Intune Companyterms Termsandconditionsgroupassignment Get | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-companyterms-termsandconditionsgroupassignment-get.md | Title: "Get termsAndConditionsGroupAssignment" description: "Read properties and relationships of the termsAndConditionsGroupAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Read properties and relationships of the [termsAndConditionsGroupAssignment](../resources/intune-companyterms-termsandconditionsgroupassignment.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 194 } } ```----- |
v1.0 | Intune Companyterms Termsandconditionsgroupassignment List | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-companyterms-termsandconditionsgroupassignment-list.md | Title: "List termsAndConditionsGroupAssignments" description: "List properties and relationships of the termsAndConditionsGroupAssignment objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph List properties and relationships of the [termsAndConditionsGroupAssignment](../resources/intune-companyterms-termsandconditionsgroupassignment.md) objects. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 214 ] } ```----- |
v1.0 | Intune Companyterms Termsandconditionsgroupassignment Update | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-companyterms-termsandconditionsgroupassignment-update.md | Title: "Update termsAndConditionsGroupAssignment" description: "Update the properties of a termsAndConditionsGroupAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Update the properties of a [termsAndConditionsGroupAssignment](../resources/intune-companyterms-termsandconditionsgroupassignment.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| Content-Length: 169 "targetGroupId": "Target Group Id value" } ```----- |
v1.0 | Intune Deviceconfig Advancedthreatprotectiononboardingdevicesettingstate Create | https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-advancedthreatprotectiononboardingdevicesettingstate-create.md | Title: "Create advancedThreatProtectionOnboardingDeviceSettingState" description: "Create a new advancedThreatProtectionOnboardingDeviceSettingState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType Namespace: microsoft.graph Create a new [advancedThreatProtectionOnboardingDeviceSettingState](../resources/intune-deviceconfig-advancedthreatprotectiononboardingdevicesettingstate.md) object. -## Prerequisites +## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)| The following table shows the properties that are required when you create the a |Property|Type|Description| |:|:|:| |id|String|Key of the entity|-|platformType|[deviceType](../resources/intune-shared-devicetype.md)|Device platform type. Possible values are: `desktop`, `windowsRT`, `winMO6`, `nokia`, `windowsPhone`, `mac`, `winCE`, `winEmbedded`, `iPhone`, `iPad`, `iPod`, `android`, `iSocConsumer`, `unix`, `macMDM`, `holoLens`, `surfaceHub`, `androidForWork`, `androidEnterprise`, `windows10x`, `androidnGMS`, `chromeOS`, `linux`, `blackberry`, `palm`, `unknown`, `cloudPC`.| +|platformType|[deviceType](../resources/intune-deviceconfig-devicetype.md)|Device platform type. Possible values are: `desktop`, `windowsRT`, `winMO6`, `nokia`, `windowsPhone`, `mac`, `winCE`, `winEmbedded`, `iPhone`, `iPad`, `iPod`, `android`, `iSocConsumer`, `unix`, `macMDM`, `holoLens`, `surfaceHub`, `androidForWork`, `androidEnterprise`, `windows10x`, `androidnGMS`, `chromeOS`, `linux`, `blackberry`, `palm`, `unknown`, `cloudPC`.| |setting|String|The setting class name and property name.| |settingName|String|The Setting Name that is being reported| |deviceId|String|The Device Id that is being reported| Content-Length: 622 "complianceGracePeriodExpirationDateTime": "2016-12-31T23:56:44.951111-08:00" } ```----- |
v1.0 | Intune Deviceconfig Advancedthreatprotectiononboardingdevicesettingstate Delete |