Updates from: 02/02/2023 05:31:52
Service Microsoft Docs article Related commit history on GitHub Change details
v1.0 Accesspackageassignmentrequest Cancel https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/accesspackageassignmentrequest-cancel.md
The following is an example of the response.
} --> ```http
-HTTP/1.1 204 No Content
+HTTP/1.1 200 Status OK
```
v1.0 Accesspackagecatalog List Accesspackageresourceroles https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/accesspackagecatalog-list-accesspackageresourceroles.md
GET https://graph.microsoft.com/beta/identityGovernance/entitlementManagement/ac
[!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 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 Appconsentrequest List Userconsentrequests https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/appconsentrequest-list-userconsentrequests.md
GET https://graph.microsoft.com/beta/identityGovernance/appConsent/appConsentReq
[!INCLUDE [sample-code](../includes/snippets/go/list-userconsentrequest-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-userconsentrequest-php-snippets.md)] [!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
v1.0 Application Post Calls https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/application-post-calls.md
Content-Type: application/json
} ```
+>**Note:** Call establishing/established notifications may arrive out of order.
#### Notification - established
Content-Type: application/json
] } ```
+>**Note:** Call establishing/established notifications may arrive out of order.
#### Notification - roster
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.
++
+# [HTTP](#tab/http)
+<!-- {
+ "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"
+ ]
+ },
+}
+```
+
+# [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
+}
+-->
+
+```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.
++
+# [HTTP](#tab/http)
+<!-- {
+ "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
+```
+
+# [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 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.
++
+# [HTTP](#tab/http)
+<!-- {
+ "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
+```
+
+# [C#](#tab/csharp)
+
+# [JavaScript](#tab/javascript)
+
+# [Java](#tab/java)
++++
+### 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.
++
+# [HTTP](#tab/http)
+<!-- {
+ "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
+```
+
+# [C#](#tab/csharp)
+
+# [JavaScript](#tab/javascript)
+
+# [Java](#tab/java)
++++
+### 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.
++
+# [HTTP](#tab/http)
+<!-- {
+ "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
+```
+
+# [C#](#tab/csharp)
+
+# [JavaScript](#tab/javascript)
+
+# [Java](#tab/java)
+
+# [Go](#tab/go)
+
+# [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.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.
++
+# [HTTP](#tab/http)
+<!-- {
+ "blockType": "request",
+ "name": "list_payload"
+}
+-->
+``` http
+GET https://graph.microsoft.com/beta/security/attackSimulation/payloads?$filter=source eq 'Tenant'
+```
+
+# [Go](#tab/go)
+
+# [PHP](#tab/php)
++++
+### 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.
++
+# [HTTP](#tab/http)
+<!-- {
+ "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"
+ ]
+ }
+}
+```
+
+# [C#](#tab/csharp)
+
+# [JavaScript](#tab/javascript)
+
+# [Java](#tab/java)
+
+# [Go](#tab/go)
+
+# [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
+}
+-->
+
+```http
+HTTP/1.1 202 Accepted
+```
v1.0 Audioroutinggroup Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/audioroutinggroup-get.md
GET https://graph.microsoft.com/beta/communications/calls/{id}/audioRoutingGroup
[!INCLUDE [sample-code](../includes/snippets/go/get-audioroutinggroup-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/get-audioroutinggroup-php-snippets.md)] [!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
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 Call Answer https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/call-answer.md
Content-Type: application/json
] } ```
+>**Note:** Call establishing/established notifications may arrive out of order.
#### Notification - established
Content-Type: application/json
] } ```
+>**Note:** Call establishing/established notifications may arrive out of order.
### Example 2: Answer VOIP call with application hosted media
v1.0 Call Keepalive https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/call-keepalive.md
POST https://graph.microsoft.com/beta/communications/calls/2e1a0b00-2db4-4022-95
[!INCLUDE [sample-code](../includes/snippets/go/keep-alive-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/keep-alive-php-snippets.md)] [!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.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 Checklistitem Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/checklistitem-delete.md
One of the following permissions is required to call this API. To learn more, in
|:|:| |Delegated (work or school account)|Tasks.ReadWrite| |Delegated (personal Microsoft account)|Tasks.ReadWrite|
-|Application|Tasks.ReadWrite|
+|Application|Tasks.ReadWrite.All|
## HTTP request
v1.0 Checklistitem Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/checklistitem-get.md
One of the following permissions is required to call this API. To learn more, in
|:|:| |Delegated (work or school account)|Tasks.Read, Tasks.ReadWrite| |Delegated (personal Microsoft account)|Tasks.Read, Tasks.ReadWrite|
-|Application|Tasks.Read, Tasks.ReadWrite|
+|Application|Tasks.Read.All, Tasks.ReadWrite.All|
## HTTP request
v1.0 Checklistitem Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/checklistitem-update.md
One of the following permissions is required to call this API. To learn more, in
|:|:| |Delegated (work or school account)|Tasks.ReadWrite| |Delegated (personal Microsoft account)|Tasks.ReadWrite|
-|Application|Tasks.ReadWrite|
+|Application|Tasks.ReadWrite.All|
## HTTP request
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} ```
Content-Type: application/json
}, "userPrincipalName": "pmitchell@cpccustomer001.onmicrosoft.com", "lastModifiedDateTime": "2020-11-03T18:14:34Z",
- "gracePeriodEndDateTime": "2020-11-010T20:00:34Z"
+ "gracePeriodEndDateTime": "2020-11-010T20:00:34Z",
+ "diskEncryptionState": "notAvailable"
} ```
Content-Type: application/json
}, "userPrincipalName": "pmitchell@cpccustomer001.onmicrosoft.com", "lastModifiedDateTime": "2020-11-03T18:14:34Z",
- "gracePeriodEndDateTime": "2020-11-010T20:00:34Z"
+ "gracePeriodEndDateTime": "2020-11-010T20:00:34Z",
+ "diskEncryptionState": "notAvailable"
} ```
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.
++
+# [HTTP](#tab/http)
+<!-- {
+ "blockType": "request",
+ "name": "cloudpc_getsupportedcloudpcremoteactions"
+}
+-->
+
+``` http
+GET https://graph.microsoft.com/beta/deviceManagement/virtualEndpoint/cloudPCs/831dd62e-cfa1-4d49-a3b4-58d4e9920f8e/getSupportedCloudPcRemoteActions
+```
+
+# [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",
+ "@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 Cloudpcexportjob Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/cloudpcexportjob-get.md
Namespace: microsoft.graph
Read the properties and relationships of a [cloudPcExportJob](../resources/cloudpcexportjob.md) object.
+You can download a report by first [creating a new cloudPcExportJob resource](cloudpcreports-post-exportjobs.md) to initiate downloading.
+
+Use this GET operation to verify the **exportJobStatus** property of the **cloudPcExportJob** resource. When the property becomes `completed`, the report has finished downloading in the location specified by the **exportUrl** property.
+ ## Permissions 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 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 a usage report on shared-use licenses, 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 Cloudpcreports Post Exportjobs https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/cloudpcreports-post-exportjobs.md
Namespace: microsoft.graph
[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)]
-Create a new [cloudPcExportJob](../resources/cloudpcexportjob.md) object.
+Create a new [cloudPcExportJob](../resources/cloudpcexportjob.md) resource to initiate downloading the entire or specified portion of a report.
+
+Use the [GET cloudPcExportJob](cloudpcexportjob-get.md) operation to verify the **exportJobStatus** property of the **cloudPcExportJob** resource. When the property becomes `completed`, the report has finished downloading in the location specified by the **exportUrl** property.
## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference).
You can specify the following properties when creating a **cloudPcExportJob**.
|Property|Type|Description| |:|:|:|
-|reportName|cloudPcReportName|The report name. The possible values are: `remoteConnectionHistoricalReports`, `dailyAggregatedRemoteConnectionReports`, `totalAggregatedRemoteConnectionReports`, `unknownFutureValue`. Optional.|
+|reportName|cloudPcReportName|The report name. The possible values are: `remoteConnectionHistoricalReports`, `dailyAggregatedRemoteConnectionReports`, `totalAggregatedRemoteConnectionReports`, `sharedUseLicenseUsageReport`, `sharedUseLicenseUsageRealTimeReport`,`unknownFutureValue`. Optional.|
|filter|String|The filter applied on the report. Optional.| |select|String collection|The selected columns of the report. Optional.| |format|String|The format of the exported report. Optional.|
v1.0 Crosstenantaccesspolicy List Partners https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/crosstenantaccesspolicy-list-partners.md
Title: "List partners"
-description: "Get a list of all partner configurations within a cross-tenant access policy."
+description: "Get a list of all partner configurations within a cross-tenant access policy. You can also use the $expand parameter to list the user synchronization policy for all partner configurations."
ms.localizationpriority: medium ms.prod: "identity-and-sign-in"
Namespace: microsoft.graph
[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)]
-Get a list of all partner configurations within a cross-tenant access policy.
+Get a list of all partner configurations within a cross-tenant access policy. You can also use the `$expand` parameter to list the user synchronization policy for all partner configurations.
## Permissions
One of the following permissions is required to call this API. To learn more, in
GET /policies/crossTenantAccessPolicy/partners ```
+## Optional query parameters
+This method supports the `$select` and `$expand` OData query parameters to help customize the response. For general information, see [OData query parameters](/graph/query-parameters).
+ ## Request headers |Name|Description|
If successful, this method returns a `200 OK` response code and a collection of
## Examples
-### Request
+### Example 1: List all partner configurations within a cross-tenant access policy
+
+#### Request
# [HTTP](#tab/http)
GET https://graph.microsoft.com/beta/policies/crossTenantAccessPolicy/partners
-### Response
+#### Response
>**Note:** The response object shown here might be shortened for readability. <!-- {
Content-Type: application/json
{ "tenantId": "123f4846-ba00-4fd7-ba43-dac1f8f63013", "inboundTrust": null,
+ "automaticUserConsentSettings":
+ {
+ "inboundAllowed": null,
+ "outboundAllowed": null
+ },
"b2bCollaborationInbound": null, "b2bCollaborationOutbound": null, "b2bDirectConnectOutbound": null,
Content-Type: application/json
] } ```+
+### Example 2: List the user synchronization policy for all partner configurations
+
+#### Request
++
+# [HTTP](#tab/http)
+<!-- {
+ "blockType": "request",
+ "name": "list_crosstenantidentitysyncpolicypartner"
+}
+-->
+``` http
+GET https://graph.microsoft.com/beta/policies/crossTenantAccessPolicy/partners?$select=tenantId&$expand=identitySynchronization
+```
+
+# [C#](#tab/csharp)
+
+# [JavaScript](#tab/javascript)
+
+# [Java](#tab/java)
+
+# [Go](#tab/go)
+
+# [PowerShell](#tab/powershell)
+
+# [PHP](#tab/php)
++++
+#### Response
+
+>**Note:** The response object shown here might be shortened for readability.
+<!-- {
+ "blockType": "response",
+ "truncated": true,
+ "@odata.type": "Collection(microsoft.graph.crossTenantIdentitySyncPolicyPartner)"
+}
+-->
+``` http
+HTTP/1.1 200 OK
+Content-Type: application/json
+
+{
+ "value":
+ [
+ {
+ "tenantId": "9c5d131d-b1c3-4fc4-9e3f-c6557947d551",
+ "identitySynchronization":
+ {
+ "tenantId": "9c5d131d-b1c3-4fc4-9e3f-c6557947d551",
+ "displayName": "Fabrikam",
+ "userSyncInbound":
+ {
+ "isSyncAllowed": true
+ }
+ }
+ }
+ ]
+}
+```
v1.0 Crosstenantaccesspolicy Post Partners https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/crosstenantaccesspolicy-post-partners.md
The following table shows the properties that are required when you create the [
|Property|Type|Description| |:|:|:|
+| automaticUserConsentSettings | [inboundOutboundPolicyConfiguration](../resources/inboundoutboundpolicyconfiguration.md) | Determines the partner-specific configuration for automatic user consent settings. Unless specifically configured, the `inboundAllowed` and `outboundAllowed` properties will be **null** and inherit from the default settings, which is always `false`. |
| b2bCollaborationInbound | [crossTenantAccessPolicyB2BSetting](../resources/crosstenantaccesspolicyb2bsetting.md) | Defines your partner-specific configuration for users from other organizations accessing your resources via Azure AD B2B collaboration. | | b2bCollaborationOutbound | [crossTenantAccessPolicyB2BSetting](../resources/crosstenantaccesspolicyb2bsetting.md) | Defines your partner-specific configuration for users in your organization going outbound to access resources in another organization via Azure AD B2B collaboration. |
-| b2bDirectConnectInbound | [crossTenantAccessPolicyB2BSetting](../resources/crosstenantaccesspolicyb2bsetting.md) | Defines your partner-specific configuration for users from other organizations accessing your resources via Azure AD B2B direct connect. |
+| b2bDirectConnectInbound | [crossTenantAccessPolicyB2BSetting](../resources/crosstenantaccesspolicyb2bsetting.md) | Defines your partner-specific configuration for users from other organizations accessing your resources via Azure B2B direct connect. |
| b2bDirectConnectOutbound | [crossTenantAccessPolicyB2BSetting](../resources/crosstenantaccesspolicyb2bsetting.md) | Defines your partner-specific configuration for users in your organization going outbound to access resources in another organization via Azure AD B2B direct connect. | | inboundTrust | [crossTenantAccessPolicyInboundTrust](../resources/crosstenantaccesspolicyinboundtrust.md) | Determines the partner-specific configuration for trusting other Conditional Access claims from external Azure AD organizations. |
-| tenantId | String | The tenant identifier for the partner Azure Active Directory (Azure AD) organization. |
+| isServiceProvider | Boolean | Identifies whether the partner-specific configuration is a Cloud Service Provider for your organization. |
+| tenantId | String | The tenant identifier for the partner Azure AD organization. Read-only. Key.|
## Response
v1.0 Crosstenantaccesspolicyconfigurationdefault Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/crosstenantaccesspolicyconfigurationdefault-get.md
Content-Type: application/json
"isCompliantDeviceAccepted": false, "isHybridAzureADJoinedDeviceAccepted": false, },
+ "automaticUserConsentSettings":
+ {
+ "inboundAllowed": false,
+ "outboundAllowed": false
+ },
"b2bCollaborationOutbound": { "usersAndGroups":
v1.0 Crosstenantaccesspolicyconfigurationdefault Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/crosstenantaccesspolicyconfigurationdefault-update.md
PATCH /policies/crossTenantAccessPolicy/default
|Property|Type|Description| |:|:|:|
-| inboundTrust | [crossTenantAccessPolicyInboundTrust](../resources/crosstenantaccesspolicyinboundtrust.md) | Determines the default configuration for trusting other Conditional Access claims from external Azure AD organizations. |
| b2bCollaborationInbound | [crossTenantAccessPolicyB2BSetting](../resources/crosstenantaccesspolicyb2bsetting.md) | Defines your default configuration for users from other organizations accessing your resources via Azure AD B2B collaboration. | | b2bCollaborationOutbound | [crossTenantAccessPolicyB2BSetting](../resources/crosstenantaccesspolicyb2bsetting.md) | Defines your default configuration for users in your organization going outbound to access resources in another organization via Azure AD B2B collaboration. | | b2bDirectConnectInbound | [crossTenantAccessPolicyB2BSetting](../resources/crosstenantaccesspolicyb2bsetting.md) | Defines your default configuration for users from other organizations accessing your resources via Azure AD B2B direct connect. | | b2bDirectConnectOutbound | [crossTenantAccessPolicyB2BSetting](../resources/crosstenantaccesspolicyb2bsetting.md) | Defines your default configuration for users in your organization going outbound to access resources in another organization via Azure AD B2B direct connect. |
+| inboundTrust | [crossTenantAccessPolicyInboundTrust](../resources/crosstenantaccesspolicyinboundtrust.md) | Determines the default configuration for trusting other Conditional Access claims from external Azure AD organizations. |
## Response
v1.0 Crosstenantaccesspolicyconfigurationpartner Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/crosstenantaccesspolicyconfigurationpartner-delete.md
Namespace: microsoft.graph
[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)]
-Delete a [partner-specific configuration](../resources/crosstenantaccesspolicyconfigurationpartner.md) in a cross-tenant access policy.
+Delete a [partner-specific configuration](../resources/crosstenantaccesspolicyconfigurationpartner.md) in a cross-tenant access policy. If a configuration includes a [user synchronization policy](../resources/crosstenantidentitysyncpolicypartner.md), you must first [delete the user synchronization policy](./crosstenantidentitysyncpolicypartner-delete.md) before you can delete the partner-specific configuration.
## Permissions
If successful, this method returns a `204 No Content` response code.
## Examples
+If a configuration includes a [user synchronization policy](../resources/crosstenantidentitysyncpolicypartner.md), you must first [delete the user synchronization policy](./crosstenantidentitysyncpolicypartner-delete.md) before you can delete the partner-specific configuration.
+ ### Request
v1.0 Crosstenantaccesspolicyconfigurationpartner Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/crosstenantaccesspolicyconfigurationpartner-get.md
Content-Type: application/json
{ "tenantId": "9c5d131d-b1c3-4fc4-9e3f-c6557947d551", "inboundTrust": null,
+ "automaticUserConsentSettings":
+ {
+ "inboundAllowed": null,
+ "outboundAllowed": null
+ },
"b2bCollaborationInbound": null, "b2bCollaborationOutbound": null, "b2bDirectConnectOutbound": null,
v1.0 Crosstenantaccesspolicyconfigurationpartner Put Identitysynchronization https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/crosstenantaccesspolicyconfigurationpartner-put-identitysynchronization.md
+
+ Title: "Create identitySynchronization"
+description: "Create a cross-tenant user synchronization policy for a partner-specific configuration."
+
+ms.localizationpriority: medium
++
+# Create identitySynchronization
+Namespace: microsoft.graph
++
+Create a cross-tenant user synchronization policy for a partner-specific configuration.
+
+## Permissions
+One of the following permissions is required to 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)|Policy.ReadWrite.CrossTenantAccess|
+|Delegated (personal Microsoft account)|Not applicable|
+|Application|Policy.ReadWrite.CrossTenantAccess|
+
+The signed-in user must also be assigned the following minimum [directory role](/azure/active-directory/roles/permissions-reference):
+++ Hybrid Identity Administrator+
+## HTTP request
+
+<!-- {
+ "blockType": "ignored"
+}
+-->
+``` http
+PUT /policies/crossTenantAccessPolicy/partners/{id}/identitySynchronization
+```
+
+## 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 [crossTenantIdentitySyncPolicyPartner](../resources/crosstenantidentitysyncpolicypartner.md) object.
+
+You can specify the following properties when creating a **crossTenantIdentitySyncPolicyPartner**.
+
+|Property|Type|Description|
+|:|:|:|
+|displayName|String|Display name for the cross-tenant user synchronization policy. Use the name of the partner Azure AD tenant to easily identify the policy. Optional.|
+|userSyncInbound|[crossTenantUserSyncInbound](../resources/crosstenantusersyncinbound.md)|Determines whether users are synchronized from the partner tenant.|
+++
+## 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": "create_crosstenantidentitysyncpolicypartner_from_"
+}
+-->
+``` http
+PUT https://graph.microsoft.com/beta/policies/crossTenantAccessPolicy/partners/90e29127-71ad-49c7-9ce8-db3f41ea06f1/identitySynchronization
+Content-Type: application/json
+
+{
+ "displayName": "Fabrikam",
+ "userSyncInbound":
+ {
+ "isSyncAllowed": true
+ }
+}
+```
+
+# [JavaScript](#tab/javascript)
+
+# [Go](#tab/go)
+
+# [PHP](#tab/php)
+++++
+### Response
+
+<!-- {
+ "blockType": "response",
+ "truncated": true
+}
+-->
+``` http
+HTTP/1.1 204 No Content
+```
+
v1.0 Crosstenantaccesspolicyconfigurationpartner Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/crosstenantaccesspolicyconfigurationpartner-update.md
PATCH /policies/crossTenantAccessPolicy/partners/{id}
|Property|Type|Description| |:|:|:|
+| automaticUserConsentSettings | [inboundOutboundPolicyConfiguration](../resources/inboundoutboundpolicyconfiguration.md) | Determines the partner-specific configuration for automatic user consent settings. |
| b2bCollaborationInbound | [crossTenantAccessPolicyB2BSetting](../resources/crosstenantaccesspolicyb2bsetting.md) | Defines your partner-specific configuration for users from other organizations accessing your resources via Azure AD B2B collaboration. | | b2bCollaborationOutbound | [crossTenantAccessPolicyB2BSetting](../resources/crosstenantaccesspolicyb2bsetting.md) | Defines your partner-specific configuration for users in your organization going outbound to access resources in another organization via Azure AD B2B collaboration. | | b2bDirectConnectInbound | [crossTenantAccessPolicyB2BSetting](../resources/crosstenantaccesspolicyb2bsetting.md) | Defines your partner-specific configuration for users from other organizations accessing your resources via Azure AD B2B direct connect. |
If successful, this method returns a `204 No Content` response code.
## Examples
-### Request
+### Example 1: Configure inbound trust settings
+
+The following example configures the partner-specific policy by setting the inbound trust settings to accept MFA, compliant, and Hybrid Azure AD Joined devices from the partner tenant.
+
+#### Request
# [HTTP](#tab/http)
Content-Type: application/json
-### Response
+#### Response
+
+<!-- {
+ "blockType": "response",
+ "truncated": true
+}
+-->
+
+``` http
+HTTP/1.1 204 No Content
+```
+
+### Example 2: Configure automaticUserConsent settings
+
+The following example configures the partner-specific policy by consenting for B2B collaboration on behalf of your users and accepting admin consent for the partner's users.
+
+#### Request
++
+# [HTTP](#tab/http)
+<!-- {
+ "blockType": "request",
+ "name": "update_crosstenantaccesspolicyconfigurationpartner_automaticuserconsentsettings"
+}
+-->
+
+``` http
+PATCH https://graph.microsoft.com/beta/policies/crossTenantAccessPolicy/partners/90e29127-71ad-49c7-9ce8-db3f41ea06f1
+Content-Type: application/json
+
+{
+ "automaticUserConsentSettings":
+ {
+ "inboundAllowed": true,
+ "outboundAllowed": true
+ }
+}
+```
+
+# [C#](#tab/csharp)
+
+# [JavaScript](#tab/javascript)
+
+# [Java](#tab/java)
+
+# [Go](#tab/go)
+
+# [PowerShell](#tab/powershell)
+
+# [PHP](#tab/php)
++++
+#### Response
<!-- { "blockType": "response",
v1.0 Crosstenantidentitysyncpolicypartner Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/crosstenantidentitysyncpolicypartner-delete.md
+
+ Title: "Delete crossTenantIdentitySyncPolicyPartner"
+description: "Delete the user synchronization policy for a partner-specific configuration."
+
+ms.localizationpriority: medium
++
+# Delete crossTenantIdentitySyncPolicyPartner
+Namespace: microsoft.graph
++
+Delete the user synchronization policy for a partner-specific configuration.
+
+## Permissions
+One of the following permissions is required to 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)|Policy.ReadWrite.CrossTenantAccess|
+|Delegated (personal Microsoft account)|Not applicable|
+|Application|Policy.ReadWrite.CrossTenantAccess|
+
+The signed-in user must also be assigned the following minimum [directory role](/azure/active-directory/roles/permissions-reference):
+++ Hybrid Identity Administrator+
+## HTTP request
+
+<!-- {
+ "blockType": "ignored"
+}
+-->
+``` http
+DELETE /policies/crossTenantAccessPolicy/partners/{id}/identitySynchronization
+```
+
+## 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_crosstenantidentitysyncpolicypartner"
+}
+-->
+``` http
+DELETE https://graph.microsoft.com/beta/policies/crossTenantAccessPolicy/partners/9c5d131d-b1c3-4fc4-9e3f-c6557947d551/identitySynchronization
+```
+
+# [C#](#tab/csharp)
+
+# [JavaScript](#tab/javascript)
+
+# [Java](#tab/java)
+
+# [Go](#tab/go)
+
+# [PHP](#tab/php)
+++++
+### Response
+
+<!-- {
+ "blockType": "response",
+ "truncated": true
+}
+-->
+``` http
+HTTP/1.1 204 No Content
+```
+
v1.0 Crosstenantidentitysyncpolicypartner Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/crosstenantidentitysyncpolicypartner-get.md
+
+ Title: "Get crossTenantIdentitySyncPolicyPartner"
+description: "Read the user synchronization policy of a partner-specific configuration."
+
+ms.localizationpriority: medium
++
+# Get crossTenantIdentitySyncPolicyPartner
+Namespace: microsoft.graph
++
+Read the user synchronization policy of a partner-specific configuration.
+
+## Permissions
+One of the following permissions is required to 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)|Policy.Read.All, Policy.ReadWrite.CrossTenantAccess|
+|Delegated (personal Microsoft account)|Not applicable|
+|Application|Policy.Read.All, Policy.ReadWrite.CrossTenantAccess|
+
+The signed-in user must also be assigned the following minimum [directory role](/azure/active-directory/roles/permissions-reference):
+++ Hybrid Identity Administrator+
+## HTTP request
+
+<!-- {
+ "blockType": "ignored"
+}
+-->
+``` http
+GET /policies/crossTenantAccessPolicy/partners/{id}/identitySynchronization
+```
+
+## 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 [crossTenantIdentitySyncPolicyPartner](../resources/crosstenantidentitysyncpolicypartner.md) object in the response body.
+
+## Examples
+
+### Request
+The following is an example of a request.
+
+# [HTTP](#tab/http)
+<!-- {
+ "blockType": "request",
+ "name": "get_crosstenantidentitysyncpolicypartner"
+}
+-->
+``` http
+GET https://graph.microsoft.com/beta/policies/crossTenantAccessPolicy/partners/9c5d131d-b1c3-4fc4-9e3f-c6557947d551/identitySynchronization
+```
+
+# [C#](#tab/csharp)
+
+# [JavaScript](#tab/javascript)
+
+# [Java](#tab/java)
+
+# [Go](#tab/go)
+
+# [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.crossTenantIdentitySyncPolicyPartner"
+}
+-->
+``` http
+HTTP/1.1 200 OK
+Content-Type: application/json
+
+{
+ "tenantId": "9c5d131d-b1c3-4fc4-9e3f-c6557947d551",
+ "displayName": "Fabrikam",
+ "userSyncInbound":
+ {
+ "isSyncAllowed": true
+ }
+}
+```
+
v1.0 Crosstenantidentitysyncpolicypartner Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/crosstenantidentitysyncpolicypartner-update.md
+
+ Title: "Update crossTenantIdentitySyncPolicyPartner"
+description: "Update the user synchronization policy of a partner-specific configuration."
+
+ms.localizationpriority: medium
++
+# Update crossTenantIdentitySyncPolicyPartner
+Namespace: microsoft.graph
++
+Update the user synchronization policy of a partner-specific configuration.
+
+## Permissions
+One of the following permissions is required to 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)|Policy.ReadWrite.CrossTenantAccess|
+|Delegated (personal Microsoft account)|Not applicable|
+|Application|Policy.ReadWrite.CrossTenantAccess|
+
+The signed-in user must also be assigned the following minimum [directory role](/azure/active-directory/roles/permissions-reference):
+++ Hybrid Identity Administrator+
+## HTTP request
+
+<!-- {
+ "blockType": "ignored"
+}
+-->
+``` http
+PATCH /policies/crossTenantAccessPolicy/partners/{id}/identitySynchronization
+```
+
+## Request headers
+|Name|Description|
+|:|:|
+|Authorization|Bearer {token}. Required.|
+|Content-Type|application/json. Required.|
+
+## Request body
+
+|Property|Type|Description|
+|:|:|:|
+|displayName|String|Display name for the cross-tenant user synchronization policy. Generally, this should be the tenant name of the partner Azure AD organization. Optional.|
+|userSyncInbound|[crossTenantUserSyncInbound](../resources/crosstenantusersyncinbound.md)|Determines whether users can be synchronized from the partner tenant. If set to `false`, any current user synchronization from the source tenant to the target tenant will stop. There is no impact to existing users that have already been synchronized.|
+++
+## 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": "update_crosstenantidentitysyncpolicypartner"
+}
+-->
+``` http
+PATCH https://graph.microsoft.com/beta/policies/crossTenantAccessPolicy/partners/90e29127-71ad-49c7-9ce8-db3f41ea06f1/identitySynchronization
+Content-Type: application/json
+
+{
+ "userSyncInbound":
+ {
+ "isSyncAllowed": true
+ }
+}
+```
+
+# [JavaScript](#tab/javascript)
+
+# [Go](#tab/go)
+
+# [PHP](#tab/php)
+++++
+### Response
+
+<!-- {
+ "blockType": "response",
+ "truncated": true
+}
+-->
+``` http
+HTTP/1.1 204 No Content
+```
+
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 Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/domain-delete.md
One of the following permissions is required to call this API. To learn more, in
|Delegated (personal Microsoft account) | Not supported. | |Application | Domain.ReadWrite.All |
+The work or school account needs to belong to one of the following roles:
+
+* Global Administrator
+* Domain Name Administrator
+* Partner Tier2 Support
+ ## HTTP request <!-- { "blockType": "ignored" } --> ```http
v1.0 Domain Forcedelete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/domain-forcedelete.md
One of the following permissions is required to call this API. To learn more, in
|Delegated (personal Microsoft account) | Not supported. | |Application | Domain.ReadWrite.All |
+The work or school account needs to belong to one of the following roles:
+
+* Global Administrator
+* Domain Name Administrator
+* Partner Tier2 Support
+ ## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Domain Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/domain-get.md
One of the following permissions is required to call this API. To learn more, in
|Delegated (personal Microsoft account) | Not supported. | |Application | Domain.Read.All, Domain.ReadWrite.All, Directory.Read.All |
+The work or school account needs to belong to one of the following roles:
+
+* Global Administrator
+* User Administrator
+* Helpdesk Administrator
+* Service Support Administrator
+* Billing Administrator
+* Mailbox Administrator
+* Partner Tier1 Support
+* Partner Tier2 Support
+* Directory Readers
+* Directory Writers
+* AdHoc License Administrator
+* Application Administrator
+* Security Reader
+* Security Administrator
+* Privileged Role Administrator
+* Cloud Application Administrator
+* Customer LockBox Access Approver
+* Dynamics 365 Administrator
+* Power BI Administrator
+* Azure Information Protection Administrator
+* Desktop Analytics Administrator
+* License Administrator
+* Microsoft Managed Desktop Administrator
+* Authentication Administrator
+* Privileged Authentication Administrator
+* Teams Communications Administrator
+* Teams Communications Support Engineer
+* Teams Communications Support Specialist
+* Teams Administrator
+* Insights Administrator
+* Compliance Data Administrator
+* Security Operator
+* Kaizala Administrator
+* Global Reader
+* Volume Licensing Business Center User
+* Volume Licensing Service Center User
+* Modern Commerce User
+* Microsoft Store for Business User
+* Directory Reviewer
+ ## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Domain List Domainnamereferences https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/domain-list-domainnamereferences.md
One of the following permissions is required to call this API. To learn more, in
|Delegated (personal Microsoft account) | Not supported. | |Application | Domain.Read.All, Domain.ReadWrite.All |
+The work or school account needs to belong to one of the following roles:
+
+* Global Administrator
+* Domain Name Administrator
+* Partner Tier2 Support
+* Global Reader
+ [!INCLUDE [limited-info](../../includes/limited-info.md)] ## HTTP request
v1.0 Domain List Verificationdnsrecords https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/domain-list-verificationdnsrecords.md
One of the following permissions is required to call this API. To learn more, in
|Delegated (personal Microsoft account) | Not supported. | |Application | Domain.Read.All, Domain.ReadWrite.All|
+The work or school account needs to belong to one of the following roles:
+
+* Global Administrator
+* Domain Name Administrator
+* Partner Tier2 Support
+* Global Reader
+ ## HTTP request <!-- { "blockType": "ignored" } --> ```http
v1.0 Domain List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/domain-list.md
One of the following permissions is required to call this API. To learn more, in
|Delegated (personal Microsoft account) | Not supported. | |Application | Domain.Read.All, Domain.ReadWrite.All, Directory.Read.All |
+The work or school account needs to belong to one of the following roles:
+
+* Global Administrator
+* User Administrator
+* Helpdesk Administrator
+* Service Support Administrator
+* Billing Administrator
+* Mailbox Administrator
+* Partner Tier1 Support
+* Partner Tier2 Support
+* Directory Readers
+* Directory Writers
+* AdHoc License Administrator
+* Application Administrator
+* Security Reader
+* Security Administrator
+* Privileged Role Administrator
+* Cloud Application Administrator
+* Customer LockBox Access Approver
+* Dynamics 365 Administrator
+* Power BI Administrator
+* Azure Information Protection Administrator
+* Desktop Analytics Administrator
+* License Administrator
+* Microsoft Managed Desktop Administrator
+* Privileged Authentication Administrator
+* Teams Communications Administrator
+* Teams Communications Support Engineer
+* Authentication Administrator
+* Teams Communications Support Specialist
+* Teams Administrator
+* Insights Administrator
+* Compliance Data Administrator
+* Security Operator
+* Kaizala Administrator
+* Global Reader
+* Volume Licensing Business Center User
+* Volume Licensing Service Center User
+* Modern Commerce User
+* Microsoft Store for Business User
+* Directory Reviewer
+* Domain Name Administrator
+* Users
+* Guest User
+* Restricted Guest User
+ ## HTTP request <!-- { "blockType": "ignored" } --> ```http
v1.0 Domain Post Domains https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/domain-post-domains.md
One of the following permissions is required to call this API. To learn more, in
|Delegated (personal Microsoft account) | Not supported. | |Application | Domain.ReadWrite.All |
+The work or school account needs to belong to one of the following roles:
+
+* Global Administrator
+* Domain Name Administrator
+* Partner Tier2 Support
+ ## HTTP request <!-- { "blockType": "ignored" } -->
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 Domain Promote https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/domain-promote.md
One of the following permissions is required to call this API. To learn more, in
|Delegated (personal Microsoft account) | Not supported. | |Application | Domain.ReadWrite.All |
+The work or school account needs to belong to one of the following roles:
+
+* Global Administrator
+* Domain Name Administrator
+* Partner Tier2 Support
+ ## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Domain Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/domain-update.md
One of the following permissions is required to call this API. To learn more, in
|Delegated (personal Microsoft account) | Not supported. | |Application | Domain.ReadWrite.All |
+The work or school account needs to belong to one of the following roles:
+
+* Global Administrator
+* Domain Name Administrator
+* Partner Tier2 Support
+* Security Administrator
+* External Identity Provider Administrator
+ ## HTTP request <!-- { "blockType": "ignored" } --> ```http
v1.0 Domain Verify https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/domain-verify.md
One of the following permissions is required to call this API. To learn more, in
|Delegated (personal Microsoft account) | Not supported. | |Application | Domain.ReadWrite.All |
+The work or school account needs to belong to one of the following roles:
+
+* Global Administrator
+* Domain Name Administrator
+* Partner Tier2 Support
+ ## HTTP request <!-- { "blockType": "ignored" } -->
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 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.
Content-type: application/json
[!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 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
-One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference).
+The following table shows the least privileged permission that's required by each resource type when calling 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) | GroupMember.ReadWrite.All, Group.ReadWrite.All, Directory.ReadWrite.All |
-| Delegated (personal Microsoft account) | Not supported. |
-| Application | GroupMember.ReadWrite.All, Group.ReadWrite.All, Directory.ReadWrite.All |
+| Supported resource | Delegated (work or school account) | Delegated (personal Microsoft account) | Application |
+|:-|:|:-|:|
+| [device](../resources/device.md) | GroupMember.ReadWrite.All and Device.ReadWrite.All | Not supported. | GroupMember.ReadWrite.All and Device.ReadWrite.All |
+| [group](../resources/group.md) | GroupMember.ReadWrite.All and Group.ReadWrite.All | Not supported. | GroupMember.ReadWrite.All and Group.ReadWrite.All |
+| [orgContact](../resources/device.md) | GroupMember.ReadWrite.All and OrgContact.Read.All | Not supported. | GroupMember.ReadWrite.All and OrgContact.Read.All |
+| [servicePrincipal](../resources/group.md) | GroupMember.ReadWrite.All and Application.ReadWrite.All | Not supported. | GroupMember.ReadWrite.All and Application.ReadWrite.All |
+| [user](../resources/user.md) | GroupMember.ReadWrite.All and User.ReadWrite.All | Not supported. | UGroupMember.ReadWrite.All and User.ReadWrite.All |
> [!IMPORTANT] > To add members to a role-assignable group, the calling user must also be assigned the _RoleManagement.ReadWrite.Directory_ permission.
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 Identitygovernance Run List Taskprocessingresults https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/identitygovernance-run-list-taskprocessingresults.md
Title: "List taskProcessingResults (for a userProcessingResult in a run)"
-description: "Get the taskProcessingResult resources for a userProcessingResult from a run."
+ Title: "List taskProcessingResults (for a run)"
+description: "Get the taskProcessingResult resources from a run."
ms.localizationpriority: medium ms.prod: "governance" doc_type: apiPageType
-# List taskProcessingResults (for a userProcessingResult in a run)
+# List taskProcessingResults (for a run)
Namespace: microsoft.graph.identityGovernance [!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)]
-Get the taskProcessingResult resources for a [userProcessingResult](../resources/identitygovernance-userprocessingresult.md) from a [run](../resources/identitygovernance-run.md).
+Get the [taskProcessingResult](../resources/identitygovernance-taskprocessingresult.md) resources for a [run](../resources/identitygovernance-run.md).
## Permissions
For delegated scenarios, the admin needs one of the following [Azure AD roles](/
} --> ``` http
-GET /identityGovernance/lifecycleWorkflows/workflows/{workflowId}/runs/{runId}/userProcessingResults/{userProcessingResultId}/taskProcessingResults
+GET /identityGovernance/lifecycleWorkflows/workflows/{workflowId}/runs/{runId}/taskProcessingResults
``` ## Optional query parameters
If successful, this method returns a `200 OK` response code and a collection of
## Examples
-### Example 1: Get the task processing results for a user processing result in a run report for a workflow
+### Example 1: Get the task processing results in a run report from a workflow
-#### Request
+### Request
The following is an example of a request.-
-# [HTTP](#tab/http)
<!-- { "blockType": "request", "name": "lifecycleworkflows_list_run_taskprocessingresult" } --> ``` http
-GET https://graph.microsoft.com/beta/IdentityGovernance/lifecycleWorkflows/workflows/14879e66-9ea9-48d0-804d-8fea672d0341/runs/72885f91-2cf0-44b1-b3ed-bd145af0192c/userProcessingResults/78b83505-6967-4168-a7ea-4921c0543ce9/taskProcessingResults
+GET https://graph.microsoft.com/beta/identityGovernance/lifecycleWorkflows/workflows/a977dbe8-0f3f-4ae6-b3a7-29e1010ac4cc/runs/33bf1a9c-2b26-49b6-996f-ca416c518341/taskProcessingResults
```
-# [C#](#tab/csharp)
-
-# [JavaScript](#tab/javascript)
-
-# [Java](#tab/java)
-
-# [Go](#tab/go)
-
-# [PowerShell](#tab/powershell)
-
-# [PHP](#tab/php)
----
-#### Response
+### Response
The following is an example of the response >**Note:** The response object shown here might be shortened for readability.
HTTP/1.1 200 OK
Content-Type: application/json {
- "@odata.context": "https://graph.microsoft.com/beta/$metadata#identityGovernance/lifecycleWorkflows/workflows('14879e66-9ea9-48d0-804d-8fea672d0341')/runs('dad77a47-6eda-4de7-bc37-fe8eb5aaf17d')/userProcessingResults('78b83505-6967-4168-a7ea-4921c0543ce9')/taskProcessingResults",
+ "@odata.context": "https://graph.microsoft.com/beta/$metadata#identityGovernance/lifecycleWorkflows/workflows('a977dbe8-0f3f-4ae6-b3a7-29e1010ac4cc')/runs('33bf1a9c-2b26-49b6-996f-ca416c518341')/taskProcessingResults",
"value": [ {
- "completedDateTime": "2022-08-24T23:28:05.3529197Z",
- "createdDateTime": "2022-08-24T23:28:04.5490995Z",
- "id": "05a96d7a-0e00-459c-b6c8-1870099e8275",
- "processingStatus": "completed",
- "startedDateTime": "2022-08-24T23:28:05.1234966Z",
- "failureReason": null,
- "subject": {
- "id": "ea09ac2e-77e3-4134-85f2-25ccf3c33387"
- },
- "task": {
- "category": "joiner,leaver",
- "continueOnError": false,
- "description": "Enable user account in the directory",
- "displayName": "Enable User Account",
- "executionSequence": 1,
- "id": "917e9eab-415d-4e45-b39d-87eb5e30de38",
- "isEnabled": false,
- "taskDefinitionId": "6fc52c9d-398b-4305-9763-15f42c1676fc",
- "arguments": []
- }
- },
- {
- "completedDateTime": "2022-08-24T23:28:06.760333Z",
- "createdDateTime": "2022-08-24T23:28:04.5571759Z",
- "id": "e30b12e1-45fa-4463-8d54-48f43fd8942a",
+ "completedDateTime": "2023-01-20T17:16:03.4863553Z",
+ "createdDateTime": "2023-01-20T17:16:00.9095011Z",
+ "id": "7a21089f-ec13-4e9c-997e-b31f4e59d41e",
"processingStatus": "completed",
- "startedDateTime": "2022-08-24T23:28:06.3926865Z",
+ "startedDateTime": "2023-01-20T17:16:02.8025169Z",
"failureReason": null, "subject": {
- "id": "ea09ac2e-77e3-4134-85f2-25ccf3c33387"
+ "id": "1baa57fa-3c4e-4526-ba5a-db47a9df95f0"
}, "task": { "category": "joiner,leaver", "continueOnError": false, "description": "Add user to selected groups", "displayName": "Add User To Groups",
- "executionSequence": 2,
- "id": "eedd8043-90a1-4e3c-9112-b2a8917ea3ae",
+ "executionSequence": 3,
+ "id": "c8dbaed8-3d23-4e5a-8f65-130767639667",
"isEnabled": true, "taskDefinitionId": "22085229-5809-45e8-97fd-270d28d66910", "arguments": [ { "name": "groupID",
- "value": "e5659cb0-bcbb-4a9f-9092-90f72bd19028"
+ "value": "1624be55-d924-491e-ac72-401f6f961e4d"
} ] }
Content-Type: application/json
} ```
-### Example 2: Get the specific properties of task processing results for a user processing result in a run report for a workflow
+### Example 2: Get the specific properties of task processing results in a run report for a workflow
#### Request The following is an example of a request.--
-# [HTTP](#tab/http)
<!-- { "blockType": "request", "name": "lifecycleworkflows_list_run_taskprocessingresult_select" } --> ``` http
-GET https://graph.microsoft.com/beta/identityGovernance/lifecycleWorkflows/workflows/15239232-66ed-445b-8292-2f5bbb2eb833/runs/e65e08a0-d68d-41dc-915b-8c4019af5cc2/userProcessingResults/40efc576-840f-47d0-ab95-5abca800f8a2//taskProcessingResults?$select=id,failureReason,processingStatus,subject,task
+GET https://graph.microsoft.com/beta/identityGovernance/lifecycleWorkflows/workflows/a977dbe8-0f3f-4ae6-b3a7-29e1010ac4cc/runs/33bf1a9c-2b26-49b6-996f-ca416c518341/taskProcessingResults?$select=id,failureReason,processingStatus,subject
```
-# [C#](#tab/csharp)
-
-# [JavaScript](#tab/javascript)
-
-# [Java](#tab/java)
-
-# [Go](#tab/go)
-
-# [PowerShell](#tab/powershell)
-
-# [PHP](#tab/php)
----
-#### Response
+### Response
The following is an example of the response >**Note:** The response object shown here might be shortened for readability.
HTTP/1.1 200 OK
Content-Type: application/json {
- "@odata.context": "https://graph.microsoft.com/beta/$metadata#identityGovernance/lifecycleWorkflows/workflows('15239232-66ed-445b-8292-2f5bbb2eb833')/runs('e65e08a0-d68d-41dc-915b-8c4019af5cc2')/userProcessingResults('40efc576-840f-47d0-ab95-5abca800f8a2')/taskProcessingResults(id,failureReason,processingStatus,subject,task)",
+ "@odata.context": "https://graph.microsoft.com/beta/$metadata#identityGovernance/lifecycleWorkflows/workflows('a977dbe8-0f3f-4ae6-b3a7-29e1010ac4cc')/runs('33bf1a9c-2b26-49b6-996f-ca416c518341')/taskProcessingResults(id,failureReason,processingStatus,subject)",
"value": [ {
- "id": "78650318-7238-4e7e-852f-2c36cbeff340",
- "processingStatus": "completed",
- "failureReason": null,
- "subject": {
- "id": "df744d9e-2148-4922-88a8-633896c1e929"
- },
- "task": {
- "category": "leaver",
- "continueOnError": false,
- "description": "Remove all licenses assigned to the user",
- "displayName": "Remove all licenses for user",
- "executionSequence": 1,
- "id": "f71246b2-269c-4ba6-ab8e-afc1a05114cb",
- "isEnabled": true,
- "taskDefinitionId": "8fa97d28-3e52-4985-b3a9-a1126f9b8b4e",
- "arguments": []
- }
- },
- {
- "id": "3d2e459d-5614-42e4-952b-0e917b5f6646",
- "processingStatus": "completed",
- "failureReason": null,
- "subject": {
- "id": "df744d9e-2148-4922-88a8-633896c1e929"
- },
- "task": {
- "category": "leaver",
- "continueOnError": false,
- "description": "Remove user from all Teams memberships",
- "displayName": "Remove user from all Teams",
- "executionSequence": 2,
- "id": "ed545f03-e8d8-45fb-9cbd-15c937f2a866",
- "isEnabled": true,
- "taskDefinitionId": "81f7b200-2816-4b3b-8c5d-dc556f07b024",
- "arguments": []
- }
- },
- {
- "id": "03359fa6-c63c-4573-92c2-4c9518ca98aa",
+ "id": "7a21089f-ec13-4e9c-997e-b31f4e59d41e",
"processingStatus": "completed", "failureReason": null, "subject": {
- "id": "df744d9e-2148-4922-88a8-633896c1e929"
+ "id": "1baa57fa-3c4e-4526-ba5a-db47a9df95f0"
}, "task": {
- "category": "leaver",
+ "category": "joiner,leaver",
"continueOnError": false,
- "description": "Delete user account in Azure AD",
- "displayName": "Delete User Account",
+ "description": "Add user to selected groups",
+ "displayName": "Add User To Groups",
"executionSequence": 3,
- "id": "b4cefaa0-6ceb-461d-bbf5-ec69246463fd",
+ "id": "c8dbaed8-3d23-4e5a-8f65-130767639667",
"isEnabled": true,
- "taskDefinitionId": "8d18588d-9ad3-4c0f-99d0-ec215f0e3dff",
- "arguments": []
+ "taskDefinitionId": "22085229-5809-45e8-97fd-270d28d66910",
+ "arguments": [
+ {
+ "name": "groupID",
+ "value": "1624be55-d924-491e-ac72-401f6f961e4d"
+ }
+ ]
} } ] }
-```
+```
v1.0 Identitygovernance Task Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/identitygovernance-task-update.md
+
+ Title: "Update task (within a workflow)"
+description: "Update the properties of a task object within a workflow object."
+
+ms.localizationpriority: medium
++
+# Update task (within a workflow)
+
+Namespace: microsoft.graph.identityGovernance
++
+Update the properties of a [task](../resources/identitygovernance-task.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)|LifecycleWorkflows.ReadWrite.All|
+|Delegated (personal Microsoft account)|Not supported.|
+|Application|LifecycleWorkflows.ReadWrite.All|
+
+For delegated scenarios, the admin needs one of the following [Azure AD roles](/azure/active-directory/users-groups-roles/directory-assign-admin-roles#available-roles):
+
+- Global administrator
+- Lifecycle workflows administrator
+
+## HTTP request
+
+<!-- {
+ "blockType": "ignored"
+}
+-->
+``` http
+PATCH /identityGovernance/lifecycleWorkflows/workflows/{workflowId}/tasks/{taskId}
+```
+
+## Request headers
+
+|Name|Description|
+|:|:|
+|Authorization|Bearer {token}. Required.|
+|Content-Type|application/json. Required.|
+
+## Request body
++
+|Property|Type|Description|
+|:|:|:|
+|description|String|Describes the purpose of the task for administrative use.|
+|displayName|String|A unique string that identifies the task within the workflow.|
+
+## Response
+
+If successful, this action returns a `204 No Content` response code.
+
+## Examples
+
+### Request
+
+The following is an example of a request.
+
+<!-- {
+ "blockType": "request",
+ "name": "lifecycleworkflows_update_task"
+}
+-->
+``` http
+PATCH https://graph.microsoft.com/beta/identitygovernance/lifecycleWorkflows/workflows/8696088c-1aef-4f65-afe9-acd55343e327/tasks/eb0b8bc2-7756-4429-8ce8-b9f09063cf54
+Content-Type: application/json
+Content-length: 454
+
+{
+ "description": "Add user to selected groups",
+ "displayName": "Update marketing day 1 add users to Group set up",
+}
+```
++
+### Response
+
+<!-- {
+ "blockType": "response",
+ "truncated": true,
+
+}
+-->
+``` http
+HTTP/1.1 204 No Content
+```
v1.0 Identitygovernance Userprocessingresult Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/identitygovernance-userprocessingresult-get.md
Namespace: microsoft.graph.identityGovernance
[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)]
-Get the user processing result of a [run](../resources/identitygovernance-run.md) object.
+Get the user processing result of a user processing result of a [run](../resources/identitygovernance-run.md).
## Permissions
Content-Type: application/json
} } ```-
v1.0 Identitygovernance Userprocessingresult List Taskprocessingresults https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/identitygovernance-userprocessingresult-list-taskprocessingresults.md
Namespace: microsoft.graph.identityGovernance
[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)]
-Get the task processing result from a [userProcessingResult](../resources/identitygovernance-userprocessingresult.md).
+Get the task processing result from a [userProcessingResult](../resources/identitygovernance-userprocessingresult.md) either directly or through a [run](../resources/identitygovernance-run.md).
## Permissions
For delegated scenarios, the admin needs one of the following [Azure AD roles](/
--> ``` http GET /identityGovernance/lifecycleWorkflows/workflows/{workflowId}/userProcessingResults/{userProcessingResultId}/taskProcessingResults
+GET /identityGovernance/lifecycleWorkflows/workflows/{workflowId}/runs/{runId}/userProcessingResults/{userProcessingResultId}/taskProcessingResults
``` ## Optional query parameters
Content-Type: application/json
] } ```+
+### Example 3: Get the task processing results for a user processing result in a run report for a workflow
+
+<!-- {
+ "blockType": "request",
+ "name": "lifecycleworkflows_list_workflow_userprocessingresult_taskprocessingresults"
+}
+-->
+``` http
+GET https://graph.microsoft.com/beta/identityGovernance/lifecycleWorkflows/workflows/14879e66-9ea9-48d0-804d-8fea672d0341/runs/72885f91-2cf0-44b1-b3ed-bd145af0192c/userProcessingResults/78b83505-6967-4168-a7ea-4921c0543ce9/taskProcessingResults
+```
+
+#### 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.identityGovernance.taskProcessingResult)"
+}
+-->
+``` http
+HTTP/1.1 200 OK
+Content-Type: application/json
+
+{
+ "@odata.context": "https://graph.microsoft.com/beta/$metadata#identityGovernance/lifecycleWorkflows/workflows('14879e66-9ea9-48d0-804d-8fea672d0341')/runs('dad77a47-6eda-4de7-bc37-fe8eb5aaf17d')/userProcessingResults('78b83505-6967-4168-a7ea-4921c0543ce9')/taskProcessingResults",
+ "value": [
+ {
+ "completedDateTime": "2022-08-24T23:28:05.3529197Z",
+ "createdDateTime": "2022-08-24T23:28:04.5490995Z",
+ "id": "05a96d7a-0e00-459c-b6c8-1870099e8275",
+ "processingStatus": "completed",
+ "startedDateTime": "2022-08-24T23:28:05.1234966Z",
+ "failureReason": null,
+ "subject": {
+ "id": "ea09ac2e-77e3-4134-85f2-25ccf3c33387"
+ },
+ "task": {
+ "category": "joiner,leaver",
+ "continueOnError": false,
+ "description": "Enable user account in the directory",
+ "displayName": "Enable User Account",
+ "executionSequence": 1,
+ "id": "917e9eab-415d-4e45-b39d-87eb5e30de38",
+ "isEnabled": false,
+ "taskDefinitionId": "6fc52c9d-398b-4305-9763-15f42c1676fc",
+ "arguments": []
+ }
+ },
+ {
+ "completedDateTime": "2022-08-24T23:28:06.760333Z",
+ "createdDateTime": "2022-08-24T23:28:04.5571759Z",
+ "id": "e30b12e1-45fa-4463-8d54-48f43fd8942a",
+ "processingStatus": "completed",
+ "startedDateTime": "2022-08-24T23:28:06.3926865Z",
+ "failureReason": null,
+ "subject": {
+ "id": "ea09ac2e-77e3-4134-85f2-25ccf3c33387"
+ },
+ "task": {
+ "category": "joiner,leaver",
+ "continueOnError": false,
+ "description": "Add user to selected groups",
+ "displayName": "Add User To Groups",
+ "executionSequence": 2,
+ "id": "eedd8043-90a1-4e3c-9112-b2a8917ea3ae",
+ "isEnabled": true,
+ "taskDefinitionId": "22085229-5809-45e8-97fd-270d28d66910",
+ "arguments": [
+ {
+ "name": "groupID",
+ "value": "e5659cb0-bcbb-4a9f-9092-90f72bd19028"
+ }
+ ]
+ }
+ }
+ ]
+}
+```
+
+### Example 4: Get the specific properties of task processing results for a user processing result in a run report for a workflow
+
+#### Request
+
+The following is an example of a request.
++
+<!-- {
+ "blockType": "request",
+ "name": "lifecycleworkflows_list_workflow_userprocessingresult_taskprocessingresults_select"
+}
+-->
+``` http
+GET https://graph.microsoft.com/beta/identityGovernance/lifecycleWorkflows/workflows/15239232-66ed-445b-8292-2f5bbb2eb833/runs/e65e08a0-d68d-41dc-915b-8c4019af5cc2/userProcessingResults/40efc576-840f-47d0-ab95-5abca800f8a2/taskProcessingResults?$select=id,failureReason,processingStatus,subject,task
+```
++
+#### 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.identityGovernance.taskProcessingResult)"
+}
+-->
+``` http
+HTTP/1.1 200 OK
+Content-Type: application/json
+
+{
+ "@odata.context": "https://graph.microsoft.com/beta/$metadata#identityGovernance/lifecycleWorkflows/workflows('15239232-66ed-445b-8292-2f5bbb2eb833')/runs('e65e08a0-d68d-41dc-915b-8c4019af5cc2')/userProcessingResults('40efc576-840f-47d0-ab95-5abca800f8a2')/taskProcessingResults(id,failureReason,processingStatus,subject,task)",
+ "value": [
+ {
+ "id": "78650318-7238-4e7e-852f-2c36cbeff340",
+ "processingStatus": "completed",
+ "failureReason": null,
+ "subject": {
+ "id": "df744d9e-2148-4922-88a8-633896c1e929"
+ },
+ "task": {
+ "category": "leaver",
+ "continueOnError": false,
+ "description": "Remove all licenses assigned to the user",
+ "displayName": "Remove all licenses for user",
+ "executionSequence": 1,
+ "id": "f71246b2-269c-4ba6-ab8e-afc1a05114cb",
+ "isEnabled": true,
+ "taskDefinitionId": "8fa97d28-3e52-4985-b3a9-a1126f9b8b4e",
+ "arguments": []
+ }
+ },
+ {
+ "id": "3d2e459d-5614-42e4-952b-0e917b5f6646",
+ "processingStatus": "completed",
+ "failureReason": null,
+ "subject": {
+ "id": "df744d9e-2148-4922-88a8-633896c1e929"
+ },
+ "task": {
+ "category": "leaver",
+ "continueOnError": false,
+ "description": "Remove user from all Teams memberships",
+ "displayName": "Remove user from all Teams",
+ "executionSequence": 2,
+ "id": "ed545f03-e8d8-45fb-9cbd-15c937f2a866",
+ "isEnabled": true,
+ "taskDefinitionId": "81f7b200-2816-4b3b-8c5d-dc556f07b024",
+ "arguments": []
+ }
+ },
+ {
+ "id": "03359fa6-c63c-4573-92c2-4c9518ca98aa",
+ "processingStatus": "completed",
+ "failureReason": null,
+ "subject": {
+ "id": "df744d9e-2148-4922-88a8-633896c1e929"
+ },
+ "task": {
+ "category": "leaver",
+ "continueOnError": false,
+ "description": "Delete user account in Azure AD",
+ "displayName": "Delete User Account",
+ "executionSequence": 3,
+ "id": "b4cefaa0-6ceb-461d-bbf5-ec69246463fd",
+ "isEnabled": true,
+ "taskDefinitionId": "8d18588d-9ad3-4c0f-99d0-ec215f0e3dff",
+ "arguments": []
+ }
+ }
+ ]
+}
+```
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 https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-advancedthreatprotectiononboardingdevicesettingstate-delete.md
Title: "Delete advancedThreatProtectionOnboardingDeviceSettingState" description: "Deletes a advancedThreatProtectionOnboardingDeviceSettingState."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [advancedThreatProtectionOnboardingDeviceSettingState](../resources/intune-deviceconfig-advancedthreatprotectiononboardingdevicesettingstate.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 Deviceconfig Advancedthreatprotectiononboardingdevicesettingstate Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-advancedthreatprotectiononboardingdevicesettingstate-get.md
Title: "Get advancedThreatProtectionOnboardingDeviceSettingState" description: "Read properties and relationships of the advancedThreatProtectionOnboardingDeviceSettingState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [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)|
Content-Length: 669
} } ```-----
v1.0 Intune Deviceconfig Advancedthreatprotectiononboardingdevicesettingstate List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-advancedthreatprotectiononboardingdevicesettingstate-list.md
Title: "List advancedThreatProtectionOnboardingDeviceSettingStates" description: "List properties and relationships of the advancedThreatProtectionOnboardingDeviceSettingState objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [advancedThreatProtectionOnboardingDeviceSettingState](../resources/intune-deviceconfig-advancedthreatprotectiononboardingdevicesettingstate.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: 711
] } ```-----
v1.0 Intune Deviceconfig Advancedthreatprotectiononboardingdevicesettingstate Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-advancedthreatprotectiononboardingdevicesettingstate-update.md
Title: "Update advancedThreatProtectionOnboardingDeviceSettingState" description: "Update the properties of a advancedThreatProtectionOnboardingDeviceSettingState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [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 [
|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 Advancedthreatprotectiononboardingstatesummary Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-advancedthreatprotectiononboardingstatesummary-get.md
Title: "Get advancedThreatProtectionOnboardingStateSummary" description: "Read properties and relationships of the advancedThreatProtectionOnboardingStateSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [advancedThreatProtectionOnboardingStateSummary](../resources/intune-deviceconfig-advancedthreatprotectiononboardingstatesummary.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: 419
} } ```-----
v1.0 Intune Deviceconfig Advancedthreatprotectiononboardingstatesummary Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-advancedthreatprotectiononboardingstatesummary-update.md
Title: "Update advancedThreatProtectionOnboardingStateSummary" description: "Update the properties of a advancedThreatProtectionOnboardingStateSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [advancedThreatProtectionOnboardingStateSummary](../resources/intune-deviceconfig-advancedthreatprotectiononboardingstatesummary.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: 380
"notAssignedDeviceCount": 6 } ```-----
v1.0 Intune Deviceconfig Androidcertificateprofilebase Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidcertificateprofilebase-get.md
Title: "Get androidCertificateProfileBase" description: "Read properties and relationships of the androidCertificateProfileBase object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidCertificateProfileBase](../resources/intune-deviceconfig-androidcertificateprofilebase.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: 1723
} } ```-----
v1.0 Intune Deviceconfig Androidcertificateprofilebase List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidcertificateprofilebase-list.md
Title: "List androidCertificateProfileBases" description: "List properties and relationships of the androidCertificateProfileBase objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidCertificateProfileBase](../resources/intune-deviceconfig-androidcertificateprofilebase.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: 1825
] } ```-----
v1.0 Intune Deviceconfig Androidcompliancepolicy Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidcompliancepolicy-create.md
Title: "Create androidCompliancePolicy" description: "Create a new androidCompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [androidCompliancePolicy](../resources/intune-deviceconfig-androidcompliancepolicy.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: 1922
] } ```-----
v1.0 Intune Deviceconfig Androidcompliancepolicy Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidcompliancepolicy-delete.md
Title: "Delete androidCompliancePolicy" description: "Deletes a androidCompliancePolicy."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [androidCompliancePolicy](../resources/intune-deviceconfig-androidcompliancepolicy.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 Deviceconfig Androidcompliancepolicy Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidcompliancepolicy-get.md
Title: "Get androidCompliancePolicy" description: "Read properties and relationships of the androidCompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidCompliancePolicy](../resources/intune-deviceconfig-androidcompliancepolicy.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: 2031
} } ```-----
v1.0 Intune Deviceconfig Androidcompliancepolicy List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidcompliancepolicy-list.md
Title: "List androidCompliancePolicies" description: "List properties and relationships of the androidCompliancePolicy objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidCompliancePolicy](../resources/intune-deviceconfig-androidcompliancepolicy.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: 2135
] } ```-----
v1.0 Intune Deviceconfig Androidcompliancepolicy Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidcompliancepolicy-update.md
Title: "Update androidCompliancePolicy" description: "Update the properties of a androidCompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [androidCompliancePolicy](../resources/intune-deviceconfig-androidcompliancepolicy.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: 1922
] } ```-----
v1.0 Intune Deviceconfig Androidcustomconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidcustomconfiguration-create.md
Title: "Create androidCustomConfiguration" description: "Create a new androidCustomConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [androidCustomConfiguration](../resources/intune-deviceconfig-androidcustomconfiguration.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: 1509
] } ```-----
v1.0 Intune Deviceconfig Androidcustomconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidcustomconfiguration-delete.md
Title: "Delete androidCustomConfiguration" description: "Deletes a androidCustomConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [androidCustomConfiguration](../resources/intune-deviceconfig-androidcustomconfiguration.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 Deviceconfig Androidcustomconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidcustomconfiguration-get.md
Title: "Get androidCustomConfiguration" description: "Read properties and relationships of the androidCustomConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidCustomConfiguration](../resources/intune-deviceconfig-androidcustomconfiguration.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: 1612
} } ```-----
v1.0 Intune Deviceconfig Androidcustomconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidcustomconfiguration-list.md
Title: "List androidCustomConfigurations" description: "List properties and relationships of the androidCustomConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidCustomConfiguration](../resources/intune-deviceconfig-androidcustomconfiguration.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: 1710
] } ```-----
v1.0 Intune Deviceconfig Androidcustomconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidcustomconfiguration-update.md
Title: "Update androidCustomConfiguration" description: "Update the properties of a androidCustomConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [androidCustomConfiguration](../resources/intune-deviceconfig-androidcustomconfiguration.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: 1509
] } ```-----
v1.0 Intune Deviceconfig Androiddeviceownercertificateprofilebase Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androiddeviceownercertificateprofilebase-get.md
Title: "Get androidDeviceOwnerCertificateProfileBase" description: "Read properties and relationships of the androidDeviceOwnerCertificateProfileBase object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidDeviceOwnerCertificateProfileBase](../resources/intune-deviceconfig-androiddeviceownercertificateprofilebase.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
} } ```-----
v1.0 Intune Deviceconfig Androiddeviceownercertificateprofilebase List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androiddeviceownercertificateprofilebase-list.md
Title: "List androidDeviceOwnerCertificateProfileBases" description: "List properties and relationships of the androidDeviceOwnerCertificateProfileBase objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidDeviceOwnerCertificateProfileBase](../resources/intune-deviceconfig-androiddeviceownercertificateprofilebase.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: 1836
] } ```-----
v1.0 Intune Deviceconfig Androiddeviceownercompliancepolicy Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androiddeviceownercompliancepolicy-create.md
Title: "Create androidDeviceOwnerCompliancePolicy" description: "Create a new androidDeviceOwnerCompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [androidDeviceOwnerCompliancePolicy](../resources/intune-deviceconfig-androiddeviceownercompliancepolicy.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: 1441
"securityRequireIntuneAppIntegrity": true } ```-----
v1.0 Intune Deviceconfig Androiddeviceownercompliancepolicy Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androiddeviceownercompliancepolicy-delete.md
Title: "Delete androidDeviceOwnerCompliancePolicy" description: "Deletes a androidDeviceOwnerCompliancePolicy."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [androidDeviceOwnerCompliancePolicy](../resources/intune-deviceconfig-androiddeviceownercompliancepolicy.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 Deviceconfig Androiddeviceownercompliancepolicy Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androiddeviceownercompliancepolicy-get.md
Title: "Get androidDeviceOwnerCompliancePolicy" description: "Read properties and relationships of the androidDeviceOwnerCompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidDeviceOwnerCompliancePolicy](../resources/intune-deviceconfig-androiddeviceownercompliancepolicy.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: 1524
} } ```-----
v1.0 Intune Deviceconfig Androiddeviceownercompliancepolicy List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androiddeviceownercompliancepolicy-list.md
Title: "List androidDeviceOwnerCompliancePolicies" description: "List properties and relationships of the androidDeviceOwnerCompliancePolicy objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidDeviceOwnerCompliancePolicy](../resources/intune-deviceconfig-androiddeviceownercompliancepolicy.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: 1602
] } ```-----
v1.0 Intune Deviceconfig Androiddeviceownercompliancepolicy Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androiddeviceownercompliancepolicy-update.md
Title: "Update androidDeviceOwnerCompliancePolicy" description: "Update the properties of a androidDeviceOwnerCompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [androidDeviceOwnerCompliancePolicy](../resources/intune-deviceconfig-androiddeviceownercompliancepolicy.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: 1441
"securityRequireIntuneAppIntegrity": true } ```-----
v1.0 Intune Deviceconfig Androiddeviceownerderivedcredentialauthenticationconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androiddeviceownerderivedcredentialauthenticationconfiguration-create.md
Title: "Create androidDeviceOwnerDerivedCredentialAuthenticationConfiguration" description: "Create a new androidDeviceOwnerDerivedCredentialAuthenticationConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [androidDeviceOwnerDerivedCredentialAuthenticationConfiguration](../resources/intune-deviceconfig-androiddeviceownerderivedcredentialauthenticationconfiguration.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: 1462
] } ```-----
v1.0 Intune Deviceconfig Androiddeviceownerderivedcredentialauthenticationconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androiddeviceownerderivedcredentialauthenticationconfiguration-delete.md
Title: "Delete androidDeviceOwnerDerivedCredentialAuthenticationConfiguration" description: "Deletes a androidDeviceOwnerDerivedCredentialAuthenticationConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [androidDeviceOwnerDerivedCredentialAuthenticationConfiguration](../resources/intune-deviceconfig-androiddeviceownerderivedcredentialauthenticationconfiguration.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 Deviceconfig Androiddeviceownerderivedcredentialauthenticationconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androiddeviceownerderivedcredentialauthenticationconfiguration-get.md
Title: "Get androidDeviceOwnerDerivedCredentialAuthenticationConfiguration" description: "Read properties and relationships of the androidDeviceOwnerDerivedCredentialAuthenticationConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidDeviceOwnerDerivedCredentialAuthenticationConfiguration](../resources/intune-deviceconfig-androiddeviceownerderivedcredentialauthenticationconfiguration.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: 1559
} } ```-----
v1.0 Intune Deviceconfig Androiddeviceownerderivedcredentialauthenticationconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androiddeviceownerderivedcredentialauthenticationconfiguration-list.md
Title: "List androidDeviceOwnerDerivedCredentialAuthenticationConfigurations" description: "List properties and relationships of the androidDeviceOwnerDerivedCredentialAuthenticationConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidDeviceOwnerDerivedCredentialAuthenticationConfiguration](../resources/intune-deviceconfig-androiddeviceownerderivedcredentialauthenticationconfiguration.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: 1651
] } ```-----
v1.0 Intune Deviceconfig Androiddeviceownerderivedcredentialauthenticationconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androiddeviceownerderivedcredentialauthenticationconfiguration-update.md
Title: "Update androidDeviceOwnerDerivedCredentialAuthenticationConfiguration" description: "Update the properties of a androidDeviceOwnerDerivedCredentialAuthenticationConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [androidDeviceOwnerDerivedCredentialAuthenticationConfiguration](../resources/intune-deviceconfig-androiddeviceownerderivedcredentialauthenticationconfiguration.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: 1462
] } ```-----
v1.0 Intune Deviceconfig Androiddeviceownerenterprisewificonfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androiddeviceownerenterprisewificonfiguration-create.md
Title: "Create androidDeviceOwnerEnterpriseWiFiConfiguration" description: "Create a new androidDeviceOwnerEnterpriseWiFiConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [androidDeviceOwnerEnterpriseWiFiConfiguration](../resources/intune-deviceconfig-androiddeviceownerenterprisewificonfiguration.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: 2132
"outerIdentityPrivacyTemporaryValue": "Outer Identity Privacy Temporary Value value" } ```-----
v1.0 Intune Deviceconfig Androiddeviceownerenterprisewificonfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androiddeviceownerenterprisewificonfiguration-delete.md
Title: "Delete androidDeviceOwnerEnterpriseWiFiConfiguration" description: "Deletes a androidDeviceOwnerEnterpriseWiFiConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [androidDeviceOwnerEnterpriseWiFiConfiguration](../resources/intune-deviceconfig-androiddeviceownerenterprisewificonfiguration.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 Deviceconfig Androiddeviceownerenterprisewificonfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androiddeviceownerenterprisewificonfiguration-get.md
Title: "Get androidDeviceOwnerEnterpriseWiFiConfiguration" description: "Read properties and relationships of the androidDeviceOwnerEnterpriseWiFiConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidDeviceOwnerEnterpriseWiFiConfiguration](../resources/intune-deviceconfig-androiddeviceownerenterprisewificonfiguration.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: 2255
} } ```-----
v1.0 Intune Deviceconfig Androiddeviceownerenterprisewificonfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androiddeviceownerenterprisewificonfiguration-list.md
Title: "List androidDeviceOwnerEnterpriseWiFiConfigurations" description: "List properties and relationships of the androidDeviceOwnerEnterpriseWiFiConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidDeviceOwnerEnterpriseWiFiConfiguration](../resources/intune-deviceconfig-androiddeviceownerenterprisewificonfiguration.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: 2373
] } ```-----
v1.0 Intune Deviceconfig Androiddeviceownerenterprisewificonfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androiddeviceownerenterprisewificonfiguration-update.md
Title: "Update androidDeviceOwnerEnterpriseWiFiConfiguration" description: "Update the properties of a androidDeviceOwnerEnterpriseWiFiConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [androidDeviceOwnerEnterpriseWiFiConfiguration](../resources/intune-deviceconfig-androiddeviceownerenterprisewificonfiguration.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: 2132
"outerIdentityPrivacyTemporaryValue": "Outer Identity Privacy Temporary Value value" } ```-----
v1.0 Intune Deviceconfig Androiddeviceownergeneraldeviceconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androiddeviceownergeneraldeviceconfiguration-create.md
Title: "Create androidDeviceOwnerGeneralDeviceConfiguration" description: "Create a new androidDeviceOwnerGeneralDeviceConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [androidDeviceOwnerGeneralDeviceConfiguration](../resources/intune-deviceconfig-androiddeviceownergeneraldeviceconfiguration.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: 10262
"workProfilePasswordRequireUnlock": "daily" } ```-----
v1.0 Intune Deviceconfig Androiddeviceownergeneraldeviceconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androiddeviceownergeneraldeviceconfiguration-delete.md
Title: "Delete androidDeviceOwnerGeneralDeviceConfiguration" description: "Deletes a androidDeviceOwnerGeneralDeviceConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [androidDeviceOwnerGeneralDeviceConfiguration](../resources/intune-deviceconfig-androiddeviceownergeneraldeviceconfiguration.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 Deviceconfig Androiddeviceownergeneraldeviceconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androiddeviceownergeneraldeviceconfiguration-get.md
Title: "Get androidDeviceOwnerGeneralDeviceConfiguration" description: "Read properties and relationships of the androidDeviceOwnerGeneralDeviceConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidDeviceOwnerGeneralDeviceConfiguration](../resources/intune-deviceconfig-androiddeviceownergeneraldeviceconfiguration.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: 10805
} } ```-----
v1.0 Intune Deviceconfig Androiddeviceownergeneraldeviceconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androiddeviceownergeneraldeviceconfiguration-list.md
Title: "List androidDeviceOwnerGeneralDeviceConfigurations" description: "List properties and relationships of the androidDeviceOwnerGeneralDeviceConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidDeviceOwnerGeneralDeviceConfiguration](../resources/intune-deviceconfig-androiddeviceownergeneraldeviceconfiguration.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: 11343
] } ```-----
v1.0 Intune Deviceconfig Androiddeviceownergeneraldeviceconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androiddeviceownergeneraldeviceconfiguration-update.md
Title: "Update androidDeviceOwnerGeneralDeviceConfiguration" description: "Update the properties of a androidDeviceOwnerGeneralDeviceConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [androidDeviceOwnerGeneralDeviceConfiguration](../resources/intune-deviceconfig-androiddeviceownergeneraldeviceconfiguration.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: 10262
"workProfilePasswordRequireUnlock": "daily" } ```-----
v1.0 Intune Deviceconfig Androiddeviceownerimportedpfxcertificateprofile Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androiddeviceownerimportedpfxcertificateprofile-create.md
Title: "Create androidDeviceOwnerImportedPFXCertificateProfile" description: "Create a new androidDeviceOwnerImportedPFXCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [androidDeviceOwnerImportedPFXCertificateProfile](../resources/intune-deviceconfig-androiddeviceownerimportedpfxcertificateprofile.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: 1900
] } ```-----
v1.0 Intune Deviceconfig Androiddeviceownerimportedpfxcertificateprofile Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androiddeviceownerimportedpfxcertificateprofile-delete.md
Title: "Delete androidDeviceOwnerImportedPFXCertificateProfile" description: "Deletes a androidDeviceOwnerImportedPFXCertificateProfile."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [androidDeviceOwnerImportedPFXCertificateProfile](../resources/intune-deviceconfig-androiddeviceownerimportedpfxcertificateprofile.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 Deviceconfig Androiddeviceownerimportedpfxcertificateprofile Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androiddeviceownerimportedpfxcertificateprofile-get.md
Title: "Get androidDeviceOwnerImportedPFXCertificateProfile" description: "Read properties and relationships of the androidDeviceOwnerImportedPFXCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidDeviceOwnerImportedPFXCertificateProfile](../resources/intune-deviceconfig-androiddeviceownerimportedpfxcertificateprofile.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: 2023
} } ```-----
v1.0 Intune Deviceconfig Androiddeviceownerimportedpfxcertificateprofile List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androiddeviceownerimportedpfxcertificateprofile-list.md
Title: "List androidDeviceOwnerImportedPFXCertificateProfiles" description: "List properties and relationships of the androidDeviceOwnerImportedPFXCertificateProfile objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidDeviceOwnerImportedPFXCertificateProfile](../resources/intune-deviceconfig-androiddeviceownerimportedpfxcertificateprofile.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: 2141
] } ```-----
v1.0 Intune Deviceconfig Androiddeviceownerimportedpfxcertificateprofile Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androiddeviceownerimportedpfxcertificateprofile-update.md
Title: "Update androidDeviceOwnerImportedPFXCertificateProfile" description: "Update the properties of a androidDeviceOwnerImportedPFXCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [androidDeviceOwnerImportedPFXCertificateProfile](../resources/intune-deviceconfig-androiddeviceownerimportedpfxcertificateprofile.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: 1900
] } ```-----
v1.0 Intune Deviceconfig Androiddeviceownerpkcscertificateprofile Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androiddeviceownerpkcscertificateprofile-create.md
Title: "Create androidDeviceOwnerPkcsCertificateProfile" description: "Create a new androidDeviceOwnerPkcsCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [androidDeviceOwnerPkcsCertificateProfile](../resources/intune-deviceconfig-androiddeviceownerpkcscertificateprofile.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: 2475
] } ```-----
v1.0 Intune Deviceconfig Androiddeviceownerpkcscertificateprofile Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androiddeviceownerpkcscertificateprofile-delete.md
Title: "Delete androidDeviceOwnerPkcsCertificateProfile" description: "Deletes a androidDeviceOwnerPkcsCertificateProfile."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [androidDeviceOwnerPkcsCertificateProfile](../resources/intune-deviceconfig-androiddeviceownerpkcscertificateprofile.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 Deviceconfig Androiddeviceownerpkcscertificateprofile Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androiddeviceownerpkcscertificateprofile-get.md
Title: "Get androidDeviceOwnerPkcsCertificateProfile" description: "Read properties and relationships of the androidDeviceOwnerPkcsCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidDeviceOwnerPkcsCertificateProfile](../resources/intune-deviceconfig-androiddeviceownerpkcscertificateprofile.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: 2624
} } ```-----
v1.0 Intune Deviceconfig Androiddeviceownerpkcscertificateprofile List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androiddeviceownerpkcscertificateprofile-list.md
Title: "List androidDeviceOwnerPkcsCertificateProfiles" description: "List properties and relationships of the androidDeviceOwnerPkcsCertificateProfile objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidDeviceOwnerPkcsCertificateProfile](../resources/intune-deviceconfig-androiddeviceownerpkcscertificateprofile.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: 2768
] } ```-----
v1.0 Intune Deviceconfig Androiddeviceownerpkcscertificateprofile Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androiddeviceownerpkcscertificateprofile-update.md
Title: "Update androidDeviceOwnerPkcsCertificateProfile" description: "Update the properties of a androidDeviceOwnerPkcsCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [androidDeviceOwnerPkcsCertificateProfile](../resources/intune-deviceconfig-androiddeviceownerpkcscertificateprofile.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: 2475
] } ```-----
v1.0 Intune Deviceconfig Androiddeviceownerscepcertificateprofile Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androiddeviceownerscepcertificateprofile-create.md
Title: "Create androidDeviceOwnerScepCertificateProfile" description: "Create a new androidDeviceOwnerScepCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [androidDeviceOwnerScepCertificateProfile](../resources/intune-deviceconfig-androiddeviceownerscepcertificateprofile.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: 2379
] } ```-----
v1.0 Intune Deviceconfig Androiddeviceownerscepcertificateprofile Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androiddeviceownerscepcertificateprofile-delete.md
Title: "Delete androidDeviceOwnerScepCertificateProfile" description: "Deletes a androidDeviceOwnerScepCertificateProfile."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [androidDeviceOwnerScepCertificateProfile](../resources/intune-deviceconfig-androiddeviceownerscepcertificateprofile.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 Deviceconfig Androiddeviceownerscepcertificateprofile Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androiddeviceownerscepcertificateprofile-get.md
Title: "Get androidDeviceOwnerScepCertificateProfile" description: "Read properties and relationships of the androidDeviceOwnerScepCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidDeviceOwnerScepCertificateProfile](../resources/intune-deviceconfig-androiddeviceownerscepcertificateprofile.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: 2532
} } ```-----
v1.0 Intune Deviceconfig Androiddeviceownerscepcertificateprofile List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androiddeviceownerscepcertificateprofile-list.md
Title: "List androidDeviceOwnerScepCertificateProfiles" description: "List properties and relationships of the androidDeviceOwnerScepCertificateProfile objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidDeviceOwnerScepCertificateProfile](../resources/intune-deviceconfig-androiddeviceownerscepcertificateprofile.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: 2680
] } ```-----
v1.0 Intune Deviceconfig Androiddeviceownerscepcertificateprofile Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androiddeviceownerscepcertificateprofile-update.md
Title: "Update androidDeviceOwnerScepCertificateProfile" description: "Update the properties of a androidDeviceOwnerScepCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [androidDeviceOwnerScepCertificateProfile](../resources/intune-deviceconfig-androiddeviceownerscepcertificateprofile.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: 2379
] } ```-----
v1.0 Intune Deviceconfig Androiddeviceownertrustedrootcertificate Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androiddeviceownertrustedrootcertificate-create.md
Title: "Create androidDeviceOwnerTrustedRootCertificate" description: "Create a new androidDeviceOwnerTrustedRootCertificate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [androidDeviceOwnerTrustedRootCertificate](../resources/intune-deviceconfig-androiddeviceownertrustedrootcertificate.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: 1323
"certFileName": "Cert File Name value" } ```-----
v1.0 Intune Deviceconfig Androiddeviceownertrustedrootcertificate Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androiddeviceownertrustedrootcertificate-delete.md
Title: "Delete androidDeviceOwnerTrustedRootCertificate" description: "Deletes a androidDeviceOwnerTrustedRootCertificate."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [androidDeviceOwnerTrustedRootCertificate](../resources/intune-deviceconfig-androiddeviceownertrustedrootcertificate.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 Deviceconfig Androiddeviceownertrustedrootcertificate Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androiddeviceownertrustedrootcertificate-get.md
Title: "Get androidDeviceOwnerTrustedRootCertificate" description: "Read properties and relationships of the androidDeviceOwnerTrustedRootCertificate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidDeviceOwnerTrustedRootCertificate](../resources/intune-deviceconfig-androiddeviceownertrustedrootcertificate.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: 1410
} } ```-----
v1.0 Intune Deviceconfig Androiddeviceownertrustedrootcertificate List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androiddeviceownertrustedrootcertificate-list.md
Title: "List androidDeviceOwnerTrustedRootCertificates" description: "List properties and relationships of the androidDeviceOwnerTrustedRootCertificate objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidDeviceOwnerTrustedRootCertificate](../resources/intune-deviceconfig-androiddeviceownertrustedrootcertificate.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: 1492
] } ```-----
v1.0 Intune Deviceconfig Androiddeviceownertrustedrootcertificate Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androiddeviceownertrustedrootcertificate-update.md
Title: "Update androidDeviceOwnerTrustedRootCertificate" description: "Update the properties of a androidDeviceOwnerTrustedRootCertificate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [androidDeviceOwnerTrustedRootCertificate](../resources/intune-deviceconfig-androiddeviceownertrustedrootcertificate.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: 1323
"certFileName": "Cert File Name value" } ```-----
v1.0 Intune Deviceconfig Androiddeviceownervpnconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androiddeviceownervpnconfiguration-create.md
Title: "Create androidDeviceOwnerVpnConfiguration" description: "Create a new androidDeviceOwnerVpnConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [androidDeviceOwnerVpnConfiguration](../resources/intune-deviceconfig-androiddeviceownervpnconfiguration.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
|alwaysOnLockdown|Boolean|If always-on VPN connection is enabled, whether or not to lock network traffic when that VPN is disconnected.| |microsoftTunnelSiteId|String|Microsoft Tunnel site ID.| |customData|[keyValue](../resources/intune-deviceconfig-keyvalue.md) collection|Custom data to define key/value pairs specific to a VPN provider. This collection can contain a maximum of 25 elements.|
-|customKeyValueData|[keyValuePair](../resources/intune-shared-keyvaluepair.md) collection|Custom data to define key/value pairs specific to a VPN provider. This collection can contain a maximum of 25 elements.|
+|customKeyValueData|[keyValuePair](../resources/intune-deviceconfig-keyvaluepair.md) collection|Custom data to define key/value pairs specific to a VPN provider. This collection can contain a maximum of 25 elements.|
Content-Length: 2555
] } ```-----
v1.0 Intune Deviceconfig Androiddeviceownervpnconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androiddeviceownervpnconfiguration-delete.md
Title: "Delete androidDeviceOwnerVpnConfiguration" description: "Deletes a androidDeviceOwnerVpnConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [androidDeviceOwnerVpnConfiguration](../resources/intune-deviceconfig-androiddeviceownervpnconfiguration.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 Deviceconfig Androiddeviceownervpnconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androiddeviceownervpnconfiguration-get.md
Title: "Get androidDeviceOwnerVpnConfiguration" description: "Read properties and relationships of the androidDeviceOwnerVpnConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidDeviceOwnerVpnConfiguration](../resources/intune-deviceconfig-androiddeviceownervpnconfiguration.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: 2734
} } ```-----
v1.0 Intune Deviceconfig Androiddeviceownervpnconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androiddeviceownervpnconfiguration-list.md
Title: "List androidDeviceOwnerVpnConfigurations" description: "List properties and relationships of the androidDeviceOwnerVpnConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidDeviceOwnerVpnConfiguration](../resources/intune-deviceconfig-androiddeviceownervpnconfiguration.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: 2908
] } ```-----
v1.0 Intune Deviceconfig Androiddeviceownervpnconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androiddeviceownervpnconfiguration-update.md
Title: "Update androidDeviceOwnerVpnConfiguration" description: "Update the properties of a androidDeviceOwnerVpnConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [androidDeviceOwnerVpnConfiguration](../resources/intune-deviceconfig-androiddeviceownervpnconfiguration.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 [
|alwaysOnLockdown|Boolean|If always-on VPN connection is enabled, whether or not to lock network traffic when that VPN is disconnected.| |microsoftTunnelSiteId|String|Microsoft Tunnel site ID.| |customData|[keyValue](../resources/intune-deviceconfig-keyvalue.md) collection|Custom data to define key/value pairs specific to a VPN provider. This collection can contain a maximum of 25 elements.|
-|customKeyValueData|[keyValuePair](../resources/intune-shared-keyvaluepair.md) collection|Custom data to define key/value pairs specific to a VPN provider. This collection can contain a maximum of 25 elements.|
+|customKeyValueData|[keyValuePair](../resources/intune-deviceconfig-keyvaluepair.md) collection|Custom data to define key/value pairs specific to a VPN provider. This collection can contain a maximum of 25 elements.|
Content-Length: 2555
] } ```-----
v1.0 Intune Deviceconfig Androiddeviceownerwificonfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androiddeviceownerwificonfiguration-create.md
Title: "Create androidDeviceOwnerWiFiConfiguration" description: "Create a new androidDeviceOwnerWiFiConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [androidDeviceOwnerWiFiConfiguration](../resources/intune-deviceconfig-androiddeviceownerwificonfiguration.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: 1712
"proxyExclusionList": "Proxy Exclusion List value" } ```-----
v1.0 Intune Deviceconfig Androiddeviceownerwificonfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androiddeviceownerwificonfiguration-delete.md
Title: "Delete androidDeviceOwnerWiFiConfiguration" description: "Deletes a androidDeviceOwnerWiFiConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [androidDeviceOwnerWiFiConfiguration](../resources/intune-deviceconfig-androiddeviceownerwificonfiguration.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 Deviceconfig Androiddeviceownerwificonfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androiddeviceownerwificonfiguration-get.md
Title: "Get androidDeviceOwnerWiFiConfiguration" description: "Read properties and relationships of the androidDeviceOwnerWiFiConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidDeviceOwnerWiFiConfiguration](../resources/intune-deviceconfig-androiddeviceownerwificonfiguration.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: 1819
} } ```-----
v1.0 Intune Deviceconfig Androiddeviceownerwificonfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androiddeviceownerwificonfiguration-list.md
Title: "List androidDeviceOwnerWiFiConfigurations" description: "List properties and relationships of the androidDeviceOwnerWiFiConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidDeviceOwnerWiFiConfiguration](../resources/intune-deviceconfig-androiddeviceownerwificonfiguration.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: 1921
] } ```-----
v1.0 Intune Deviceconfig Androiddeviceownerwificonfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androiddeviceownerwificonfiguration-update.md
Title: "Update androidDeviceOwnerWiFiConfiguration" description: "Update the properties of a androidDeviceOwnerWiFiConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [androidDeviceOwnerWiFiConfiguration](../resources/intune-deviceconfig-androiddeviceownerwificonfiguration.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: 1712
"proxyExclusionList": "Proxy Exclusion List value" } ```-----
v1.0 Intune Deviceconfig Androideasemailprofileconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androideasemailprofileconfiguration-create.md
Title: "Create androidEasEmailProfileConfiguration" description: "Create a new androidEasEmailProfileConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [androidEasEmailProfileConfiguration](../resources/intune-deviceconfig-androideasemailprofileconfiguration.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: 1738
"customDomainName": "Custom Domain Name value" } ```-----
v1.0 Intune Deviceconfig Androideasemailprofileconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androideasemailprofileconfiguration-delete.md
Title: "Delete androidEasEmailProfileConfiguration" description: "Deletes a androidEasEmailProfileConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [androidEasEmailProfileConfiguration](../resources/intune-deviceconfig-androideasemailprofileconfiguration.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 Deviceconfig Androideasemailprofileconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androideasemailprofileconfiguration-get.md
Title: "Get androidEasEmailProfileConfiguration" description: "Read properties and relationships of the androidEasEmailProfileConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidEasEmailProfileConfiguration](../resources/intune-deviceconfig-androideasemailprofileconfiguration.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: 1851
} } ```-----
v1.0 Intune Deviceconfig Androideasemailprofileconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androideasemailprofileconfiguration-list.md
Title: "List androidEasEmailProfileConfigurations" description: "List properties and relationships of the androidEasEmailProfileConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidEasEmailProfileConfiguration](../resources/intune-deviceconfig-androideasemailprofileconfiguration.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: 1959
] } ```-----
v1.0 Intune Deviceconfig Androideasemailprofileconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androideasemailprofileconfiguration-update.md
Title: "Update androidEasEmailProfileConfiguration" description: "Update the properties of a androidEasEmailProfileConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [androidEasEmailProfileConfiguration](../resources/intune-deviceconfig-androideasemailprofileconfiguration.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: 1738
"customDomainName": "Custom Domain Name value" } ```-----
v1.0 Intune Deviceconfig Androidenterprisewificonfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidenterprisewificonfiguration-create.md
Title: "Create androidEnterpriseWiFiConfiguration" description: "Create a new androidEnterpriseWiFiConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [androidEnterpriseWiFiConfiguration](../resources/intune-deviceconfig-androidenterprisewificonfiguration.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: 1961
"preSharedKey": "Pre Shared Key value" } ```-----
v1.0 Intune Deviceconfig Androidenterprisewificonfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidenterprisewificonfiguration-delete.md
Title: "Delete androidEnterpriseWiFiConfiguration" description: "Deletes a androidEnterpriseWiFiConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [androidEnterpriseWiFiConfiguration](../resources/intune-deviceconfig-androidenterprisewificonfiguration.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 Deviceconfig Androidenterprisewificonfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidenterprisewificonfiguration-get.md
Title: "Get androidEnterpriseWiFiConfiguration" description: "Read properties and relationships of the androidEnterpriseWiFiConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidEnterpriseWiFiConfiguration](../resources/intune-deviceconfig-androidenterprisewificonfiguration.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: 2076
} } ```-----
v1.0 Intune Deviceconfig Androidenterprisewificonfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidenterprisewificonfiguration-list.md
Title: "List androidEnterpriseWiFiConfigurations" description: "List properties and relationships of the androidEnterpriseWiFiConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidEnterpriseWiFiConfiguration](../resources/intune-deviceconfig-androidenterprisewificonfiguration.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: 2186
] } ```-----
v1.0 Intune Deviceconfig Androidenterprisewificonfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidenterprisewificonfiguration-update.md
Title: "Update androidEnterpriseWiFiConfiguration" description: "Update the properties of a androidEnterpriseWiFiConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [androidEnterpriseWiFiConfiguration](../resources/intune-deviceconfig-androidenterprisewificonfiguration.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: 1961
"preSharedKey": "Pre Shared Key value" } ```-----
v1.0 Intune Deviceconfig Androidforworkcertificateprofilebase Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworkcertificateprofilebase-get.md
Title: "Get androidForWorkCertificateProfileBase" description: "Read properties and relationships of the androidForWorkCertificateProfileBase object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidForWorkCertificateProfileBase](../resources/intune-deviceconfig-androidforworkcertificateprofilebase.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: 1730
} } ```-----
v1.0 Intune Deviceconfig Androidforworkcertificateprofilebase List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworkcertificateprofilebase-list.md
Title: "List androidForWorkCertificateProfileBases" description: "List properties and relationships of the androidForWorkCertificateProfileBase objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidForWorkCertificateProfileBase](../resources/intune-deviceconfig-androidforworkcertificateprofilebase.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: 1832
] } ```-----
v1.0 Intune Deviceconfig Androidforworkcompliancepolicy Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworkcompliancepolicy-create.md
Title: "Create androidForWorkCompliancePolicy" description: "Create a new androidForWorkCompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [androidForWorkCompliancePolicy](../resources/intune-deviceconfig-androidforworkcompliancepolicy.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: 1566
"securityRequiredAndroidSafetyNetEvaluationType": "hardwareBacked" } ```-----
v1.0 Intune Deviceconfig Androidforworkcompliancepolicy Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworkcompliancepolicy-delete.md
Title: "Delete androidForWorkCompliancePolicy" description: "Deletes a androidForWorkCompliancePolicy."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [androidForWorkCompliancePolicy](../resources/intune-deviceconfig-androidforworkcompliancepolicy.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 Deviceconfig Androidforworkcompliancepolicy Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworkcompliancepolicy-get.md
Title: "Get androidForWorkCompliancePolicy" description: "Read properties and relationships of the androidForWorkCompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidForWorkCompliancePolicy](../resources/intune-deviceconfig-androidforworkcompliancepolicy.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: 1653
} } ```-----
v1.0 Intune Deviceconfig Androidforworkcompliancepolicy List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworkcompliancepolicy-list.md
Title: "List androidForWorkCompliancePolicies" description: "List properties and relationships of the androidForWorkCompliancePolicy objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidForWorkCompliancePolicy](../resources/intune-deviceconfig-androidforworkcompliancepolicy.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: 1735
] } ```-----
v1.0 Intune Deviceconfig Androidforworkcompliancepolicy Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworkcompliancepolicy-update.md
Title: "Update androidForWorkCompliancePolicy" description: "Update the properties of a androidForWorkCompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [androidForWorkCompliancePolicy](../resources/intune-deviceconfig-androidforworkcompliancepolicy.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: 1566
"securityRequiredAndroidSafetyNetEvaluationType": "hardwareBacked" } ```-----
v1.0 Intune Deviceconfig Androidforworkcustomconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworkcustomconfiguration-create.md
Title: "Create androidForWorkCustomConfiguration" description: "Create a new androidForWorkCustomConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [androidForWorkCustomConfiguration](../resources/intune-deviceconfig-androidforworkcustomconfiguration.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: 1516
] } ```-----
v1.0 Intune Deviceconfig Androidforworkcustomconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworkcustomconfiguration-delete.md
Title: "Delete androidForWorkCustomConfiguration" description: "Deletes a androidForWorkCustomConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [androidForWorkCustomConfiguration](../resources/intune-deviceconfig-androidforworkcustomconfiguration.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 Deviceconfig Androidforworkcustomconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworkcustomconfiguration-get.md
Title: "Get androidForWorkCustomConfiguration" description: "Read properties and relationships of the androidForWorkCustomConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidForWorkCustomConfiguration](../resources/intune-deviceconfig-androidforworkcustomconfiguration.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: 1619
} } ```-----
v1.0 Intune Deviceconfig Androidforworkcustomconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworkcustomconfiguration-list.md
Title: "List androidForWorkCustomConfigurations" description: "List properties and relationships of the androidForWorkCustomConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidForWorkCustomConfiguration](../resources/intune-deviceconfig-androidforworkcustomconfiguration.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: 1717
] } ```-----
v1.0 Intune Deviceconfig Androidforworkcustomconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworkcustomconfiguration-update.md
Title: "Update androidForWorkCustomConfiguration" description: "Update the properties of a androidForWorkCustomConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [androidForWorkCustomConfiguration](../resources/intune-deviceconfig-androidforworkcustomconfiguration.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: 1516
] } ```-----
v1.0 Intune Deviceconfig Androidforworkeasemailprofilebase Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworkeasemailprofilebase-get.md
Title: "Get androidForWorkEasEmailProfileBase" description: "Read properties and relationships of the androidForWorkEasEmailProfileBase object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidForWorkEasEmailProfileBase](../resources/intune-deviceconfig-androidforworkeasemailprofilebase.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: 1529
} } ```-----
v1.0 Intune Deviceconfig Androidforworkeasemailprofilebase List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworkeasemailprofilebase-list.md
Title: "List androidForWorkEasEmailProfileBases" description: "List properties and relationships of the androidForWorkEasEmailProfileBase objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidForWorkEasEmailProfileBase](../resources/intune-deviceconfig-androidforworkeasemailprofilebase.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: 1619
] } ```-----
v1.0 Intune Deviceconfig Androidforworkenterprisewificonfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworkenterprisewificonfiguration-create.md
Title: "Create androidForWorkEnterpriseWiFiConfiguration" description: "Create a new androidForWorkEnterpriseWiFiConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [androidForWorkEnterpriseWiFiConfiguration](../resources/intune-deviceconfig-androidforworkenterprisewificonfiguration.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: 1807
"outerIdentityPrivacyTemporaryValue": "Outer Identity Privacy Temporary Value value" } ```-----
v1.0 Intune Deviceconfig Androidforworkenterprisewificonfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworkenterprisewificonfiguration-delete.md
Title: "Delete androidForWorkEnterpriseWiFiConfiguration" description: "Deletes a androidForWorkEnterpriseWiFiConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [androidForWorkEnterpriseWiFiConfiguration](../resources/intune-deviceconfig-androidforworkenterprisewificonfiguration.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 Deviceconfig Androidforworkenterprisewificonfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworkenterprisewificonfiguration-get.md
Title: "Get androidForWorkEnterpriseWiFiConfiguration" description: "Read properties and relationships of the androidForWorkEnterpriseWiFiConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidForWorkEnterpriseWiFiConfiguration](../resources/intune-deviceconfig-androidforworkenterprisewificonfiguration.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: 1916
} } ```-----
v1.0 Intune Deviceconfig Androidforworkenterprisewificonfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworkenterprisewificonfiguration-list.md
Title: "List androidForWorkEnterpriseWiFiConfigurations" description: "List properties and relationships of the androidForWorkEnterpriseWiFiConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidForWorkEnterpriseWiFiConfiguration](../resources/intune-deviceconfig-androidforworkenterprisewificonfiguration.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: 2020
] } ```-----
v1.0 Intune Deviceconfig Androidforworkenterprisewificonfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworkenterprisewificonfiguration-update.md
Title: "Update androidForWorkEnterpriseWiFiConfiguration" description: "Update the properties of a androidForWorkEnterpriseWiFiConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [androidForWorkEnterpriseWiFiConfiguration](../resources/intune-deviceconfig-androidforworkenterprisewificonfiguration.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: 1807
"outerIdentityPrivacyTemporaryValue": "Outer Identity Privacy Temporary Value value" } ```-----
v1.0 Intune Deviceconfig Androidforworkgeneraldeviceconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworkgeneraldeviceconfiguration-create.md
Title: "Create androidForWorkGeneralDeviceConfiguration" description: "Create a new androidForWorkGeneralDeviceConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [androidForWorkGeneralDeviceConfiguration](../resources/intune-deviceconfig-androidforworkgeneraldeviceconfiguration.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: 3342
"workProfileBlockPersonalAppInstallsFromUnknownSources": true } ```-----
v1.0 Intune Deviceconfig Androidforworkgeneraldeviceconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworkgeneraldeviceconfiguration-delete.md
Title: "Delete androidForWorkGeneralDeviceConfiguration" description: "Deletes a androidForWorkGeneralDeviceConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [androidForWorkGeneralDeviceConfiguration](../resources/intune-deviceconfig-androidforworkgeneraldeviceconfiguration.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 Deviceconfig Androidforworkgeneraldeviceconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworkgeneraldeviceconfiguration-get.md
Title: "Get androidForWorkGeneralDeviceConfiguration" description: "Read properties and relationships of the androidForWorkGeneralDeviceConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidForWorkGeneralDeviceConfiguration](../resources/intune-deviceconfig-androidforworkgeneraldeviceconfiguration.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: 3513
} } ```-----
v1.0 Intune Deviceconfig Androidforworkgeneraldeviceconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworkgeneraldeviceconfiguration-list.md
Title: "List androidForWorkGeneralDeviceConfigurations" description: "List properties and relationships of the androidForWorkGeneralDeviceConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidForWorkGeneralDeviceConfiguration](../resources/intune-deviceconfig-androidforworkgeneraldeviceconfiguration.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: 3679
] } ```-----
v1.0 Intune Deviceconfig Androidforworkgeneraldeviceconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworkgeneraldeviceconfiguration-update.md
Title: "Update androidForWorkGeneralDeviceConfiguration" description: "Update the properties of a androidForWorkGeneralDeviceConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [androidForWorkGeneralDeviceConfiguration](../resources/intune-deviceconfig-androidforworkgeneraldeviceconfiguration.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: 3342
"workProfileBlockPersonalAppInstallsFromUnknownSources": true } ```-----
v1.0 Intune Deviceconfig Androidforworkgmaileasconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworkgmaileasconfiguration-create.md
Title: "Create androidForWorkGmailEasConfiguration" description: "Create a new androidForWorkGmailEasConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [androidForWorkGmailEasConfiguration](../resources/intune-deviceconfig-androidforworkgmaileasconfiguration.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: 1436
"usernameSource": "userPrincipalName" } ```-----
v1.0 Intune Deviceconfig Androidforworkgmaileasconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworkgmaileasconfiguration-delete.md
Title: "Delete androidForWorkGmailEasConfiguration" description: "Deletes a androidForWorkGmailEasConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [androidForWorkGmailEasConfiguration](../resources/intune-deviceconfig-androidforworkgmaileasconfiguration.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 Deviceconfig Androidforworkgmaileasconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworkgmaileasconfiguration-get.md
Title: "Get androidForWorkGmailEasConfiguration" description: "Read properties and relationships of the androidForWorkGmailEasConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidForWorkGmailEasConfiguration](../resources/intune-deviceconfig-androidforworkgmaileasconfiguration.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: 1531
} } ```-----
v1.0 Intune Deviceconfig Androidforworkgmaileasconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworkgmaileasconfiguration-list.md
Title: "List androidForWorkGmailEasConfigurations" description: "List properties and relationships of the androidForWorkGmailEasConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidForWorkGmailEasConfiguration](../resources/intune-deviceconfig-androidforworkgmaileasconfiguration.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: 1621
] } ```-----
v1.0 Intune Deviceconfig Androidforworkgmaileasconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworkgmaileasconfiguration-update.md
Title: "Update androidForWorkGmailEasConfiguration" description: "Update the properties of a androidForWorkGmailEasConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [androidForWorkGmailEasConfiguration](../resources/intune-deviceconfig-androidforworkgmaileasconfiguration.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: 1436
"usernameSource": "userPrincipalName" } ```-----
v1.0 Intune Deviceconfig Androidforworkimportedpfxcertificateprofile Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworkimportedpfxcertificateprofile-create.md
Title: "Create androidForWorkImportedPFXCertificateProfile" description: "Create a new androidForWorkImportedPFXCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [androidForWorkImportedPFXCertificateProfile](../resources/intune-deviceconfig-androidforworkimportedpfxcertificateprofile.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: 1671
"intendedPurpose": "smimeEncryption" } ```-----
v1.0 Intune Deviceconfig Androidforworkimportedpfxcertificateprofile Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworkimportedpfxcertificateprofile-delete.md
Title: "Delete androidForWorkImportedPFXCertificateProfile" description: "Deletes a androidForWorkImportedPFXCertificateProfile."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [androidForWorkImportedPFXCertificateProfile](../resources/intune-deviceconfig-androidforworkimportedpfxcertificateprofile.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 Deviceconfig Androidforworkimportedpfxcertificateprofile Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworkimportedpfxcertificateprofile-get.md
Title: "Get androidForWorkImportedPFXCertificateProfile" description: "Read properties and relationships of the androidForWorkImportedPFXCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidForWorkImportedPFXCertificateProfile](../resources/intune-deviceconfig-androidforworkimportedpfxcertificateprofile.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: 1780
} } ```-----
v1.0 Intune Deviceconfig Androidforworkimportedpfxcertificateprofile List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworkimportedpfxcertificateprofile-list.md
Title: "List androidForWorkImportedPFXCertificateProfiles" description: "List properties and relationships of the androidForWorkImportedPFXCertificateProfile objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidForWorkImportedPFXCertificateProfile](../resources/intune-deviceconfig-androidforworkimportedpfxcertificateprofile.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: 1884
] } ```-----
v1.0 Intune Deviceconfig Androidforworkimportedpfxcertificateprofile Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworkimportedpfxcertificateprofile-update.md
Title: "Update androidForWorkImportedPFXCertificateProfile" description: "Update the properties of a androidForWorkImportedPFXCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [androidForWorkImportedPFXCertificateProfile](../resources/intune-deviceconfig-androidforworkimportedpfxcertificateprofile.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: 1671
"intendedPurpose": "smimeEncryption" } ```-----
v1.0 Intune Deviceconfig Androidforworknineworkeasconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworknineworkeasconfiguration-create.md
Title: "Create androidForWorkNineWorkEasConfiguration" description: "Create a new androidForWorkNineWorkEasConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [androidForWorkNineWorkEasConfiguration](../resources/intune-deviceconfig-androidforworknineworkeasconfiguration.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: 1511
"syncTasks": true } ```-----
v1.0 Intune Deviceconfig Androidforworknineworkeasconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworknineworkeasconfiguration-delete.md
Title: "Delete androidForWorkNineWorkEasConfiguration" description: "Deletes a androidForWorkNineWorkEasConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [androidForWorkNineWorkEasConfiguration](../resources/intune-deviceconfig-androidforworknineworkeasconfiguration.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 Deviceconfig Androidforworknineworkeasconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworknineworkeasconfiguration-get.md
Title: "Get androidForWorkNineWorkEasConfiguration" description: "Read properties and relationships of the androidForWorkNineWorkEasConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidForWorkNineWorkEasConfiguration](../resources/intune-deviceconfig-androidforworknineworkeasconfiguration.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: 1612
} } ```-----
v1.0 Intune Deviceconfig Androidforworknineworkeasconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworknineworkeasconfiguration-list.md
Title: "List androidForWorkNineWorkEasConfigurations" description: "List properties and relationships of the androidForWorkNineWorkEasConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidForWorkNineWorkEasConfiguration](../resources/intune-deviceconfig-androidforworknineworkeasconfiguration.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: 1708
] } ```-----
v1.0 Intune Deviceconfig Androidforworknineworkeasconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworknineworkeasconfiguration-update.md
Title: "Update androidForWorkNineWorkEasConfiguration" description: "Update the properties of a androidForWorkNineWorkEasConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [androidForWorkNineWorkEasConfiguration](../resources/intune-deviceconfig-androidforworknineworkeasconfiguration.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: 1511
"syncTasks": true } ```-----
v1.0 Intune Deviceconfig Androidforworkpkcscertificateprofile Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworkpkcscertificateprofile-create.md
Title: "Create androidForWorkPkcsCertificateProfile" description: "Create a new androidForWorkPkcsCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [androidForWorkPkcsCertificateProfile](../resources/intune-deviceconfig-androidforworkpkcscertificateprofile.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: 1910
"subjectAlternativeNameFormatString": "Subject Alternative Name Format String value" } ```-----
v1.0 Intune Deviceconfig Androidforworkpkcscertificateprofile Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworkpkcscertificateprofile-delete.md
Title: "Delete androidForWorkPkcsCertificateProfile" description: "Deletes a androidForWorkPkcsCertificateProfile."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [androidForWorkPkcsCertificateProfile](../resources/intune-deviceconfig-androidforworkpkcscertificateprofile.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 Deviceconfig Androidforworkpkcscertificateprofile Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworkpkcscertificateprofile-get.md
Title: "Get androidForWorkPkcsCertificateProfile" description: "Read properties and relationships of the androidForWorkPkcsCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidForWorkPkcsCertificateProfile](../resources/intune-deviceconfig-androidforworkpkcscertificateprofile.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: 2025
} } ```-----
v1.0 Intune Deviceconfig Androidforworkpkcscertificateprofile List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworkpkcscertificateprofile-list.md
Title: "List androidForWorkPkcsCertificateProfiles" description: "List properties and relationships of the androidForWorkPkcsCertificateProfile objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidForWorkPkcsCertificateProfile](../resources/intune-deviceconfig-androidforworkpkcscertificateprofile.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: 2135
] } ```-----
v1.0 Intune Deviceconfig Androidforworkpkcscertificateprofile Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworkpkcscertificateprofile-update.md
Title: "Update androidForWorkPkcsCertificateProfile" description: "Update the properties of a androidForWorkPkcsCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [androidForWorkPkcsCertificateProfile](../resources/intune-deviceconfig-androidforworkpkcscertificateprofile.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: 1910
"subjectAlternativeNameFormatString": "Subject Alternative Name Format String value" } ```-----
v1.0 Intune Deviceconfig Androidforworkscepcertificateprofile Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworkscepcertificateprofile-create.md
Title: "Create androidForWorkScepCertificateProfile" description: "Create a new androidForWorkScepCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [androidForWorkScepCertificateProfile](../resources/intune-deviceconfig-androidforworkscepcertificateprofile.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: 2150
] } ```-----
v1.0 Intune Deviceconfig Androidforworkscepcertificateprofile Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworkscepcertificateprofile-delete.md
Title: "Delete androidForWorkScepCertificateProfile" description: "Deletes a androidForWorkScepCertificateProfile."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [androidForWorkScepCertificateProfile](../resources/intune-deviceconfig-androidforworkscepcertificateprofile.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 Deviceconfig Androidforworkscepcertificateprofile Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworkscepcertificateprofile-get.md
Title: "Get androidForWorkScepCertificateProfile" description: "Read properties and relationships of the androidForWorkScepCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidForWorkScepCertificateProfile](../resources/intune-deviceconfig-androidforworkscepcertificateprofile.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: 2289
} } ```-----
v1.0 Intune Deviceconfig Androidforworkscepcertificateprofile List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworkscepcertificateprofile-list.md
Title: "List androidForWorkScepCertificateProfiles" description: "List properties and relationships of the androidForWorkScepCertificateProfile objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidForWorkScepCertificateProfile](../resources/intune-deviceconfig-androidforworkscepcertificateprofile.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: 2423
] } ```-----
v1.0 Intune Deviceconfig Androidforworkscepcertificateprofile Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworkscepcertificateprofile-update.md
Title: "Update androidForWorkScepCertificateProfile" description: "Update the properties of a androidForWorkScepCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [androidForWorkScepCertificateProfile](../resources/intune-deviceconfig-androidforworkscepcertificateprofile.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: 2150
] } ```-----
v1.0 Intune Deviceconfig Androidforworktrustedrootcertificate Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworktrustedrootcertificate-create.md
Title: "Create androidForWorkTrustedRootCertificate" description: "Create a new androidForWorkTrustedRootCertificate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [androidForWorkTrustedRootCertificate](../resources/intune-deviceconfig-androidforworktrustedrootcertificate.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: 1319
"certFileName": "Cert File Name value" } ```-----
v1.0 Intune Deviceconfig Androidforworktrustedrootcertificate Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworktrustedrootcertificate-delete.md
Title: "Delete androidForWorkTrustedRootCertificate" description: "Deletes a androidForWorkTrustedRootCertificate."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [androidForWorkTrustedRootCertificate](../resources/intune-deviceconfig-androidforworktrustedrootcertificate.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 Deviceconfig Androidforworktrustedrootcertificate Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworktrustedrootcertificate-get.md
Title: "Get androidForWorkTrustedRootCertificate" description: "Read properties and relationships of the androidForWorkTrustedRootCertificate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidForWorkTrustedRootCertificate](../resources/intune-deviceconfig-androidforworktrustedrootcertificate.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: 1406
} } ```-----
v1.0 Intune Deviceconfig Androidforworktrustedrootcertificate List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworktrustedrootcertificate-list.md
Title: "List androidForWorkTrustedRootCertificates" description: "List properties and relationships of the androidForWorkTrustedRootCertificate objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidForWorkTrustedRootCertificate](../resources/intune-deviceconfig-androidforworktrustedrootcertificate.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: 1488
] } ```-----
v1.0 Intune Deviceconfig Androidforworktrustedrootcertificate Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworktrustedrootcertificate-update.md
Title: "Update androidForWorkTrustedRootCertificate" description: "Update the properties of a androidForWorkTrustedRootCertificate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [androidForWorkTrustedRootCertificate](../resources/intune-deviceconfig-androidforworktrustedrootcertificate.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: 1319
"certFileName": "Cert File Name value" } ```-----
v1.0 Intune Deviceconfig Androidforworkvpnconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworkvpnconfiguration-create.md
Title: "Create androidForWorkVpnConfiguration" description: "Create a new androidForWorkVpnConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [androidForWorkVpnConfiguration](../resources/intune-deviceconfig-androidforworkvpnconfiguration.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
|servers|[vpnServer](../resources/intune-deviceconfig-vpnserver.md) collection|List of VPN Servers on the network. Make sure end users can access these network locations. This collection can contain a maximum of 500 elements.| |fingerprint|String|Fingerprint is a string that will be used to verify the VPN server can be trusted, which is only applicable when connection type is Check Point Capsule VPN.| |customData|[keyValue](../resources/intune-deviceconfig-keyvalue.md) collection|Custom data when connection type is set to Citrix. This collection can contain a maximum of 25 elements.|
-|customKeyValueData|[keyValuePair](../resources/intune-shared-keyvaluepair.md) collection|Custom data when connection type is set to Citrix. This collection can contain a maximum of 25 elements.|
+|customKeyValueData|[keyValuePair](../resources/intune-deviceconfig-keyvaluepair.md) collection|Custom data when connection type is set to Citrix. This collection can contain a maximum of 25 elements.|
|authenticationMethod|[vpnAuthenticationMethod](../resources/intune-deviceconfig-vpnauthenticationmethod.md)|Authentication method. Possible values are: `certificate`, `usernameAndPassword`, `sharedSecret`, `derivedCredential`, `azureAD`.|
Content-Length: 1930
"authenticationMethod": "usernameAndPassword" } ```-----
v1.0 Intune Deviceconfig Androidforworkvpnconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworkvpnconfiguration-delete.md
Title: "Delete androidForWorkVpnConfiguration" description: "Deletes a androidForWorkVpnConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [androidForWorkVpnConfiguration](../resources/intune-deviceconfig-androidforworkvpnconfiguration.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 Deviceconfig Androidforworkvpnconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworkvpnconfiguration-get.md
Title: "Get androidForWorkVpnConfiguration" description: "Read properties and relationships of the androidForWorkVpnConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidForWorkVpnConfiguration](../resources/intune-deviceconfig-androidforworkvpnconfiguration.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: 2069
} } ```-----
v1.0 Intune Deviceconfig Androidforworkvpnconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworkvpnconfiguration-list.md
Title: "List androidForWorkVpnConfigurations" description: "List properties and relationships of the androidForWorkVpnConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidForWorkVpnConfiguration](../resources/intune-deviceconfig-androidforworkvpnconfiguration.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: 2203
] } ```-----
v1.0 Intune Deviceconfig Androidforworkvpnconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworkvpnconfiguration-update.md
Title: "Update androidForWorkVpnConfiguration" description: "Update the properties of a androidForWorkVpnConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [androidForWorkVpnConfiguration](../resources/intune-deviceconfig-androidforworkvpnconfiguration.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 [
|servers|[vpnServer](../resources/intune-deviceconfig-vpnserver.md) collection|List of VPN Servers on the network. Make sure end users can access these network locations. This collection can contain a maximum of 500 elements.| |fingerprint|String|Fingerprint is a string that will be used to verify the VPN server can be trusted, which is only applicable when connection type is Check Point Capsule VPN.| |customData|[keyValue](../resources/intune-deviceconfig-keyvalue.md) collection|Custom data when connection type is set to Citrix. This collection can contain a maximum of 25 elements.|
-|customKeyValueData|[keyValuePair](../resources/intune-shared-keyvaluepair.md) collection|Custom data when connection type is set to Citrix. This collection can contain a maximum of 25 elements.|
+|customKeyValueData|[keyValuePair](../resources/intune-deviceconfig-keyvaluepair.md) collection|Custom data when connection type is set to Citrix. This collection can contain a maximum of 25 elements.|
|authenticationMethod|[vpnAuthenticationMethod](../resources/intune-deviceconfig-vpnauthenticationmethod.md)|Authentication method. Possible values are: `certificate`, `usernameAndPassword`, `sharedSecret`, `derivedCredential`, `azureAD`.|
Content-Length: 1930
"authenticationMethod": "usernameAndPassword" } ```-----
v1.0 Intune Deviceconfig Androidforworkwificonfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworkwificonfiguration-create.md
Title: "Create androidForWorkWiFiConfiguration" description: "Create a new androidForWorkWiFiConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [androidForWorkWiFiConfiguration](../resources/intune-deviceconfig-androidforworkwificonfiguration.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: 1387
"wiFiSecurityType": "wpaEnterprise" } ```-----
v1.0 Intune Deviceconfig Androidforworkwificonfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworkwificonfiguration-delete.md
Title: "Delete androidForWorkWiFiConfiguration" description: "Deletes a androidForWorkWiFiConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [androidForWorkWiFiConfiguration](../resources/intune-deviceconfig-androidforworkwificonfiguration.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 Deviceconfig Androidforworkwificonfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworkwificonfiguration-get.md
Title: "Get androidForWorkWiFiConfiguration" description: "Read properties and relationships of the androidForWorkWiFiConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidForWorkWiFiConfiguration](../resources/intune-deviceconfig-androidforworkwificonfiguration.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: 1480
} } ```-----
v1.0 Intune Deviceconfig Androidforworkwificonfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworkwificonfiguration-list.md
Title: "List androidForWorkWiFiConfigurations" description: "List properties and relationships of the androidForWorkWiFiConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidForWorkWiFiConfiguration](../resources/intune-deviceconfig-androidforworkwificonfiguration.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: 1568
] } ```-----
v1.0 Intune Deviceconfig Androidforworkwificonfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidforworkwificonfiguration-update.md
Title: "Update androidForWorkWiFiConfiguration" description: "Update the properties of a androidForWorkWiFiConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [androidForWorkWiFiConfiguration](../resources/intune-deviceconfig-androidforworkwificonfiguration.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: 1387
"wiFiSecurityType": "wpaEnterprise" } ```-----
v1.0 Intune Deviceconfig Androidgeneraldeviceconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidgeneraldeviceconfiguration-create.md
Title: "Create androidGeneralDeviceConfiguration" description: "Create a new androidGeneralDeviceConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [androidGeneralDeviceConfiguration](../resources/intune-deviceconfig-androidgeneraldeviceconfiguration.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: 4146
"securityRequireVerifyApps": true } ```-----
v1.0 Intune Deviceconfig Androidgeneraldeviceconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidgeneraldeviceconfiguration-delete.md
Title: "Delete androidGeneralDeviceConfiguration" description: "Deletes a androidGeneralDeviceConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [androidGeneralDeviceConfiguration](../resources/intune-deviceconfig-androidgeneraldeviceconfiguration.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 Deviceconfig Androidgeneraldeviceconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidgeneraldeviceconfiguration-get.md
Title: "Get androidGeneralDeviceConfiguration" description: "Read properties and relationships of the androidGeneralDeviceConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidGeneralDeviceConfiguration](../resources/intune-deviceconfig-androidgeneraldeviceconfiguration.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: 4409
} } ```-----
v1.0 Intune Deviceconfig Androidgeneraldeviceconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidgeneraldeviceconfiguration-list.md
Title: "List androidGeneralDeviceConfigurations" description: "List properties and relationships of the androidGeneralDeviceConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidGeneralDeviceConfiguration](../resources/intune-deviceconfig-androidgeneraldeviceconfiguration.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: 4667
] } ```-----
v1.0 Intune Deviceconfig Androidgeneraldeviceconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidgeneraldeviceconfiguration-update.md
Title: "Update androidGeneralDeviceConfiguration" description: "Update the properties of a androidGeneralDeviceConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [androidGeneralDeviceConfiguration](../resources/intune-deviceconfig-androidgeneraldeviceconfiguration.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: 4146
"securityRequireVerifyApps": true } ```-----
v1.0 Intune Deviceconfig Androidimportedpfxcertificateprofile Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidimportedpfxcertificateprofile-create.md
Title: "Create androidImportedPFXCertificateProfile" description: "Create a new androidImportedPFXCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [androidImportedPFXCertificateProfile](../resources/intune-deviceconfig-androidimportedpfxcertificateprofile.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: 1664
"intendedPurpose": "smimeEncryption" } ```-----
v1.0 Intune Deviceconfig Androidimportedpfxcertificateprofile Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidimportedpfxcertificateprofile-delete.md
Title: "Delete androidImportedPFXCertificateProfile" description: "Deletes a androidImportedPFXCertificateProfile."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [androidImportedPFXCertificateProfile](../resources/intune-deviceconfig-androidimportedpfxcertificateprofile.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 Deviceconfig Androidimportedpfxcertificateprofile Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidimportedpfxcertificateprofile-get.md
Title: "Get androidImportedPFXCertificateProfile" description: "Read properties and relationships of the androidImportedPFXCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidImportedPFXCertificateProfile](../resources/intune-deviceconfig-androidimportedpfxcertificateprofile.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: 1773
} } ```-----
v1.0 Intune Deviceconfig Androidimportedpfxcertificateprofile List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidimportedpfxcertificateprofile-list.md
Title: "List androidImportedPFXCertificateProfiles" description: "List properties and relationships of the androidImportedPFXCertificateProfile objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidImportedPFXCertificateProfile](../resources/intune-deviceconfig-androidimportedpfxcertificateprofile.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: 1877
] } ```-----
v1.0 Intune Deviceconfig Androidimportedpfxcertificateprofile Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidimportedpfxcertificateprofile-update.md
Title: "Update androidImportedPFXCertificateProfile" description: "Update the properties of a androidImportedPFXCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [androidImportedPFXCertificateProfile](../resources/intune-deviceconfig-androidimportedpfxcertificateprofile.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: 1664
"intendedPurpose": "smimeEncryption" } ```-----
v1.0 Intune Deviceconfig Androidomacpconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidomacpconfiguration-create.md
Title: "Create androidOmaCpConfiguration" description: "Create a new androidOmaCpConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [androidOmaCpConfiguration](../resources/intune-deviceconfig-androidomacpconfiguration.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: 1251
"configurationXml": "Y29uZmlndXJhdGlvblhtbA==" } ```-----
v1.0 Intune Deviceconfig Androidomacpconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidomacpconfiguration-delete.md
Title: "Delete androidOmaCpConfiguration" description: "Deletes a androidOmaCpConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [androidOmaCpConfiguration](../resources/intune-deviceconfig-androidomacpconfiguration.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 Deviceconfig Androidomacpconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidomacpconfiguration-get.md
Title: "Get androidOmaCpConfiguration" description: "Read properties and relationships of the androidOmaCpConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidOmaCpConfiguration](../resources/intune-deviceconfig-androidomacpconfiguration.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: 1336
} } ```-----
v1.0 Intune Deviceconfig Androidomacpconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidomacpconfiguration-list.md
Title: "List androidOmaCpConfigurations" description: "List properties and relationships of the androidOmaCpConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidOmaCpConfiguration](../resources/intune-deviceconfig-androidomacpconfiguration.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: 1416
] } ```-----
v1.0 Intune Deviceconfig Androidomacpconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidomacpconfiguration-update.md
Title: "Update androidOmaCpConfiguration" description: "Update the properties of a androidOmaCpConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [androidOmaCpConfiguration](../resources/intune-deviceconfig-androidomacpconfiguration.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: 1251
"configurationXml": "Y29uZmlndXJhdGlvblhtbA==" } ```-----
v1.0 Intune Deviceconfig Androidpkcscertificateprofile Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidpkcscertificateprofile-create.md
Title: "Create androidPkcsCertificateProfile" description: "Create a new androidPkcsCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [androidPkcsCertificateProfile](../resources/intune-deviceconfig-androidpkcscertificateprofile.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: 1903
"subjectAlternativeNameFormatString": "Subject Alternative Name Format String value" } ```-----
v1.0 Intune Deviceconfig Androidpkcscertificateprofile Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidpkcscertificateprofile-delete.md
Title: "Delete androidPkcsCertificateProfile" description: "Deletes a androidPkcsCertificateProfile."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [androidPkcsCertificateProfile](../resources/intune-deviceconfig-androidpkcscertificateprofile.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 Deviceconfig Androidpkcscertificateprofile Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidpkcscertificateprofile-get.md
Title: "Get androidPkcsCertificateProfile" description: "Read properties and relationships of the androidPkcsCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidPkcsCertificateProfile](../resources/intune-deviceconfig-androidpkcscertificateprofile.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: 2018
} } ```-----
v1.0 Intune Deviceconfig Androidpkcscertificateprofile List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidpkcscertificateprofile-list.md
Title: "List androidPkcsCertificateProfiles" description: "List properties and relationships of the androidPkcsCertificateProfile objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidPkcsCertificateProfile](../resources/intune-deviceconfig-androidpkcscertificateprofile.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: 2128
] } ```-----
v1.0 Intune Deviceconfig Androidpkcscertificateprofile Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidpkcscertificateprofile-update.md
Title: "Update androidPkcsCertificateProfile" description: "Update the properties of a androidPkcsCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [androidPkcsCertificateProfile](../resources/intune-deviceconfig-androidpkcscertificateprofile.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: 1903
"subjectAlternativeNameFormatString": "Subject Alternative Name Format String value" } ```-----
v1.0 Intune Deviceconfig Androidscepcertificateprofile Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidscepcertificateprofile-create.md
Title: "Create androidScepCertificateProfile" description: "Create a new androidScepCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [androidScepCertificateProfile](../resources/intune-deviceconfig-androidscepcertificateprofile.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: 1919
"subjectAlternativeNameFormatString": "Subject Alternative Name Format String value" } ```-----
v1.0 Intune Deviceconfig Androidscepcertificateprofile Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidscepcertificateprofile-delete.md
Title: "Delete androidScepCertificateProfile" description: "Deletes a androidScepCertificateProfile."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [androidScepCertificateProfile](../resources/intune-deviceconfig-androidscepcertificateprofile.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 Deviceconfig Androidscepcertificateprofile Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidscepcertificateprofile-get.md
Title: "Get androidScepCertificateProfile" description: "Read properties and relationships of the androidScepCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidScepCertificateProfile](../resources/intune-deviceconfig-androidscepcertificateprofile.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: 2042
} } ```-----
v1.0 Intune Deviceconfig Androidscepcertificateprofile List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidscepcertificateprofile-list.md
Title: "List androidScepCertificateProfiles" description: "List properties and relationships of the androidScepCertificateProfile objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidScepCertificateProfile](../resources/intune-deviceconfig-androidscepcertificateprofile.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: 2160
] } ```-----
v1.0 Intune Deviceconfig Androidscepcertificateprofile Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidscepcertificateprofile-update.md
Title: "Update androidScepCertificateProfile" description: "Update the properties of a androidScepCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [androidScepCertificateProfile](../resources/intune-deviceconfig-androidscepcertificateprofile.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: 1919
"subjectAlternativeNameFormatString": "Subject Alternative Name Format String value" } ```-----
v1.0 Intune Deviceconfig Androidtrustedrootcertificate Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidtrustedrootcertificate-create.md
Title: "Create androidTrustedRootCertificate" description: "Create a new androidTrustedRootCertificate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [androidTrustedRootCertificate](../resources/intune-deviceconfig-androidtrustedrootcertificate.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: 1312
"certFileName": "Cert File Name value" } ```-----
v1.0 Intune Deviceconfig Androidtrustedrootcertificate Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidtrustedrootcertificate-delete.md
Title: "Delete androidTrustedRootCertificate" description: "Deletes a androidTrustedRootCertificate."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [androidTrustedRootCertificate](../resources/intune-deviceconfig-androidtrustedrootcertificate.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 Deviceconfig Androidtrustedrootcertificate Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidtrustedrootcertificate-get.md
Title: "Get androidTrustedRootCertificate" description: "Read properties and relationships of the androidTrustedRootCertificate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidTrustedRootCertificate](../resources/intune-deviceconfig-androidtrustedrootcertificate.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: 1399
} } ```-----
v1.0 Intune Deviceconfig Androidtrustedrootcertificate List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidtrustedrootcertificate-list.md
Title: "List androidTrustedRootCertificates" description: "List properties and relationships of the androidTrustedRootCertificate objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidTrustedRootCertificate](../resources/intune-deviceconfig-androidtrustedrootcertificate.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: 1481
] } ```-----
v1.0 Intune Deviceconfig Androidtrustedrootcertificate Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidtrustedrootcertificate-update.md
Title: "Update androidTrustedRootCertificate" description: "Update the properties of a androidTrustedRootCertificate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [androidTrustedRootCertificate](../resources/intune-deviceconfig-androidtrustedrootcertificate.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: 1312
"certFileName": "Cert File Name value" } ```-----
v1.0 Intune Deviceconfig Androidvpnconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidvpnconfiguration-create.md
Title: "Create androidVpnConfiguration" description: "Create a new androidVpnConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [androidVpnConfiguration](../resources/intune-deviceconfig-androidvpnconfiguration.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
|servers|[vpnServer](../resources/intune-deviceconfig-vpnserver.md) collection|List of VPN Servers on the network. Make sure end users can access these network locations. This collection can contain a maximum of 500 elements.| |fingerprint|String|Fingerprint is a string that will be used to verify the VPN server can be trusted, which is only applicable when connection type is Check Point Capsule VPN.| |customData|[keyValue](../resources/intune-deviceconfig-keyvalue.md) collection|Custom data when connection type is set to Citrix. This collection can contain a maximum of 25 elements.|
-|customKeyValueData|[keyValuePair](../resources/intune-shared-keyvaluepair.md) collection|Custom data when connection type is set to Citrix. This collection can contain a maximum of 25 elements.|
+|customKeyValueData|[keyValuePair](../resources/intune-deviceconfig-keyvaluepair.md) collection|Custom data when connection type is set to Citrix. This collection can contain a maximum of 25 elements.|
|authenticationMethod|[vpnAuthenticationMethod](../resources/intune-deviceconfig-vpnauthenticationmethod.md)|Authentication method. Possible values are: `certificate`, `usernameAndPassword`, `sharedSecret`, `derivedCredential`, `azureAD`.|
Content-Length: 1923
"authenticationMethod": "usernameAndPassword" } ```-----
v1.0 Intune Deviceconfig Androidvpnconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidvpnconfiguration-delete.md
Title: "Delete androidVpnConfiguration" description: "Deletes a androidVpnConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [androidVpnConfiguration](../resources/intune-deviceconfig-androidvpnconfiguration.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 Deviceconfig Androidvpnconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidvpnconfiguration-get.md
Title: "Get androidVpnConfiguration" description: "Read properties and relationships of the androidVpnConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidVpnConfiguration](../resources/intune-deviceconfig-androidvpnconfiguration.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: 2062
} } ```-----
v1.0 Intune Deviceconfig Androidvpnconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidvpnconfiguration-list.md
Title: "List androidVpnConfigurations" description: "List properties and relationships of the androidVpnConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidVpnConfiguration](../resources/intune-deviceconfig-androidvpnconfiguration.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: 2196
] } ```-----
v1.0 Intune Deviceconfig Androidvpnconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidvpnconfiguration-update.md
Title: "Update androidVpnConfiguration" description: "Update the properties of a androidVpnConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [androidVpnConfiguration](../resources/intune-deviceconfig-androidvpnconfiguration.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 [
|servers|[vpnServer](../resources/intune-deviceconfig-vpnserver.md) collection|List of VPN Servers on the network. Make sure end users can access these network locations. This collection can contain a maximum of 500 elements.| |fingerprint|String|Fingerprint is a string that will be used to verify the VPN server can be trusted, which is only applicable when connection type is Check Point Capsule VPN.| |customData|[keyValue](../resources/intune-deviceconfig-keyvalue.md) collection|Custom data when connection type is set to Citrix. This collection can contain a maximum of 25 elements.|
-|customKeyValueData|[keyValuePair](../resources/intune-shared-keyvaluepair.md) collection|Custom data when connection type is set to Citrix. This collection can contain a maximum of 25 elements.|
+|customKeyValueData|[keyValuePair](../resources/intune-deviceconfig-keyvaluepair.md) collection|Custom data when connection type is set to Citrix. This collection can contain a maximum of 25 elements.|
|authenticationMethod|[vpnAuthenticationMethod](../resources/intune-deviceconfig-vpnauthenticationmethod.md)|Authentication method. Possible values are: `certificate`, `usernameAndPassword`, `sharedSecret`, `derivedCredential`, `azureAD`.|
Content-Length: 1923
"authenticationMethod": "usernameAndPassword" } ```-----
v1.0 Intune Deviceconfig Androidwificonfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidwificonfiguration-create.md
Title: "Create androidWiFiConfiguration" description: "Create a new androidWiFiConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [androidWiFiConfiguration](../resources/intune-deviceconfig-androidwificonfiguration.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: 1380
"wiFiSecurityType": "wpaEnterprise" } ```-----
v1.0 Intune Deviceconfig Androidwificonfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidwificonfiguration-delete.md
Title: "Delete androidWiFiConfiguration" description: "Deletes a androidWiFiConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [androidWiFiConfiguration](../resources/intune-deviceconfig-androidwificonfiguration.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 Deviceconfig Androidwificonfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidwificonfiguration-get.md
Title: "Get androidWiFiConfiguration" description: "Read properties and relationships of the androidWiFiConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidWiFiConfiguration](../resources/intune-deviceconfig-androidwificonfiguration.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: 1473
} } ```-----
v1.0 Intune Deviceconfig Androidwificonfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidwificonfiguration-list.md
Title: "List androidWiFiConfigurations" description: "List properties and relationships of the androidWiFiConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidWiFiConfiguration](../resources/intune-deviceconfig-androidwificonfiguration.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: 1561
] } ```-----
v1.0 Intune Deviceconfig Androidwificonfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidwificonfiguration-update.md
Title: "Update androidWiFiConfiguration" description: "Update the properties of a androidWiFiConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [androidWiFiConfiguration](../resources/intune-deviceconfig-androidwificonfiguration.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: 1380
"wiFiSecurityType": "wpaEnterprise" } ```-----
v1.0 Intune Deviceconfig Androidworkprofilecertificateprofilebase Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofilecertificateprofilebase-get.md
Title: "Get androidWorkProfileCertificateProfileBase" description: "Read properties and relationships of the androidWorkProfileCertificateProfileBase object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidWorkProfileCertificateProfileBase](../resources/intune-deviceconfig-androidworkprofilecertificateprofilebase.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
} } ```-----
v1.0 Intune Deviceconfig Androidworkprofilecertificateprofilebase List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofilecertificateprofilebase-list.md
Title: "List androidWorkProfileCertificateProfileBases" description: "List properties and relationships of the androidWorkProfileCertificateProfileBase objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidWorkProfileCertificateProfileBase](../resources/intune-deviceconfig-androidworkprofilecertificateprofilebase.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: 1836
] } ```-----
v1.0 Intune Deviceconfig Androidworkprofilecompliancepolicy Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofilecompliancepolicy-create.md
Title: "Create androidWorkProfileCompliancePolicy" description: "Create a new androidWorkProfileCompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [androidWorkProfileCompliancePolicy](../resources/intune-deviceconfig-androidworkprofilecompliancepolicy.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: 1633
"securityRequiredAndroidSafetyNetEvaluationType": "hardwareBacked" } ```-----
v1.0 Intune Deviceconfig Androidworkprofilecompliancepolicy Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofilecompliancepolicy-delete.md
Title: "Delete androidWorkProfileCompliancePolicy" description: "Deletes a androidWorkProfileCompliancePolicy."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [androidWorkProfileCompliancePolicy](../resources/intune-deviceconfig-androidworkprofilecompliancepolicy.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 Deviceconfig Androidworkprofilecompliancepolicy Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofilecompliancepolicy-get.md
Title: "Get androidWorkProfileCompliancePolicy" description: "Read properties and relationships of the androidWorkProfileCompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidWorkProfileCompliancePolicy](../resources/intune-deviceconfig-androidworkprofilecompliancepolicy.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: 1722
} } ```-----
v1.0 Intune Deviceconfig Androidworkprofilecompliancepolicy List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofilecompliancepolicy-list.md
Title: "List androidWorkProfileCompliancePolicies" description: "List properties and relationships of the androidWorkProfileCompliancePolicy objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidWorkProfileCompliancePolicy](../resources/intune-deviceconfig-androidworkprofilecompliancepolicy.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: 1806
] } ```-----
v1.0 Intune Deviceconfig Androidworkprofilecompliancepolicy Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofilecompliancepolicy-update.md
Title: "Update androidWorkProfileCompliancePolicy" description: "Update the properties of a androidWorkProfileCompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [androidWorkProfileCompliancePolicy](../resources/intune-deviceconfig-androidworkprofilecompliancepolicy.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: 1633
"securityRequiredAndroidSafetyNetEvaluationType": "hardwareBacked" } ```-----
v1.0 Intune Deviceconfig Androidworkprofilecustomconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofilecustomconfiguration-create.md
Title: "Create androidWorkProfileCustomConfiguration" description: "Create a new androidWorkProfileCustomConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [androidWorkProfileCustomConfiguration](../resources/intune-deviceconfig-androidworkprofilecustomconfiguration.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: 1520
] } ```-----
v1.0 Intune Deviceconfig Androidworkprofilecustomconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofilecustomconfiguration-delete.md
Title: "Delete androidWorkProfileCustomConfiguration" description: "Deletes a androidWorkProfileCustomConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [androidWorkProfileCustomConfiguration](../resources/intune-deviceconfig-androidworkprofilecustomconfiguration.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 Deviceconfig Androidworkprofilecustomconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofilecustomconfiguration-get.md
Title: "Get androidWorkProfileCustomConfiguration" description: "Read properties and relationships of the androidWorkProfileCustomConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidWorkProfileCustomConfiguration](../resources/intune-deviceconfig-androidworkprofilecustomconfiguration.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: 1623
} } ```-----
v1.0 Intune Deviceconfig Androidworkprofilecustomconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofilecustomconfiguration-list.md
Title: "List androidWorkProfileCustomConfigurations" description: "List properties and relationships of the androidWorkProfileCustomConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidWorkProfileCustomConfiguration](../resources/intune-deviceconfig-androidworkprofilecustomconfiguration.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: 1721
] } ```-----
v1.0 Intune Deviceconfig Androidworkprofilecustomconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofilecustomconfiguration-update.md
Title: "Update androidWorkProfileCustomConfiguration" description: "Update the properties of a androidWorkProfileCustomConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [androidWorkProfileCustomConfiguration](../resources/intune-deviceconfig-androidworkprofilecustomconfiguration.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: 1520
] } ```-----
v1.0 Intune Deviceconfig Androidworkprofileeasemailprofilebase Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofileeasemailprofilebase-get.md
Title: "Get androidWorkProfileEasEmailProfileBase" description: "Read properties and relationships of the androidWorkProfileEasEmailProfileBase object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidWorkProfileEasEmailProfileBase](../resources/intune-deviceconfig-androidworkprofileeasemailprofilebase.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 Deviceconfig Androidworkprofileeasemailprofilebase List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofileeasemailprofilebase-list.md
Title: "List androidWorkProfileEasEmailProfileBases" description: "List properties and relationships of the androidWorkProfileEasEmailProfileBase objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidWorkProfileEasEmailProfileBase](../resources/intune-deviceconfig-androidworkprofileeasemailprofilebase.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: 1623
] } ```-----
v1.0 Intune Deviceconfig Androidworkprofileenterprisewificonfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofileenterprisewificonfiguration-create.md
Title: "Create androidWorkProfileEnterpriseWiFiConfiguration" description: "Create a new androidWorkProfileEnterpriseWiFiConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [androidWorkProfileEnterpriseWiFiConfiguration](../resources/intune-deviceconfig-androidworkprofileenterprisewificonfiguration.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: 1933
"proxyAutomaticConfigurationUrl": "https://example.com/proxyAutomaticConfigurationUrl/" } ```-----
v1.0 Intune Deviceconfig Androidworkprofileenterprisewificonfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofileenterprisewificonfiguration-delete.md
Title: "Delete androidWorkProfileEnterpriseWiFiConfiguration" description: "Deletes a androidWorkProfileEnterpriseWiFiConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [androidWorkProfileEnterpriseWiFiConfiguration](../resources/intune-deviceconfig-androidworkprofileenterprisewificonfiguration.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 Deviceconfig Androidworkprofileenterprisewificonfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofileenterprisewificonfiguration-get.md
Title: "Get androidWorkProfileEnterpriseWiFiConfiguration" description: "Read properties and relationships of the androidWorkProfileEnterpriseWiFiConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidWorkProfileEnterpriseWiFiConfiguration](../resources/intune-deviceconfig-androidworkprofileenterprisewificonfiguration.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: 2046
} } ```-----
v1.0 Intune Deviceconfig Androidworkprofileenterprisewificonfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofileenterprisewificonfiguration-list.md
Title: "List androidWorkProfileEnterpriseWiFiConfigurations" description: "List properties and relationships of the androidWorkProfileEnterpriseWiFiConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidWorkProfileEnterpriseWiFiConfiguration](../resources/intune-deviceconfig-androidworkprofileenterprisewificonfiguration.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: 2154
] } ```-----
v1.0 Intune Deviceconfig Androidworkprofileenterprisewificonfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofileenterprisewificonfiguration-update.md
Title: "Update androidWorkProfileEnterpriseWiFiConfiguration" description: "Update the properties of a androidWorkProfileEnterpriseWiFiConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [androidWorkProfileEnterpriseWiFiConfiguration](../resources/intune-deviceconfig-androidworkprofileenterprisewificonfiguration.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: 1933
"proxyAutomaticConfigurationUrl": "https://example.com/proxyAutomaticConfigurationUrl/" } ```-----
v1.0 Intune Deviceconfig Androidworkprofilegeneraldeviceconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofilegeneraldeviceconfiguration-create.md
Title: "Create androidWorkProfileGeneralDeviceConfiguration" description: "Create a new androidWorkProfileGeneralDeviceConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [androidWorkProfileGeneralDeviceConfiguration](../resources/intune-deviceconfig-androidworkprofilegeneraldeviceconfiguration.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: 3404
"workProfileBlockPersonalAppInstallsFromUnknownSources": true } ```-----
v1.0 Intune Deviceconfig Androidworkprofilegeneraldeviceconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofilegeneraldeviceconfiguration-delete.md
Title: "Delete androidWorkProfileGeneralDeviceConfiguration" description: "Deletes a androidWorkProfileGeneralDeviceConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [androidWorkProfileGeneralDeviceConfiguration](../resources/intune-deviceconfig-androidworkprofilegeneraldeviceconfiguration.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 Deviceconfig Androidworkprofilegeneraldeviceconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofilegeneraldeviceconfiguration-get.md
Title: "Get androidWorkProfileGeneralDeviceConfiguration" description: "Read properties and relationships of the androidWorkProfileGeneralDeviceConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidWorkProfileGeneralDeviceConfiguration](../resources/intune-deviceconfig-androidworkprofilegeneraldeviceconfiguration.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: 3577
} } ```-----
v1.0 Intune Deviceconfig Androidworkprofilegeneraldeviceconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofilegeneraldeviceconfiguration-list.md
Title: "List androidWorkProfileGeneralDeviceConfigurations" description: "List properties and relationships of the androidWorkProfileGeneralDeviceConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidWorkProfileGeneralDeviceConfiguration](../resources/intune-deviceconfig-androidworkprofilegeneraldeviceconfiguration.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: 3745
] } ```-----
v1.0 Intune Deviceconfig Androidworkprofilegeneraldeviceconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofilegeneraldeviceconfiguration-update.md
Title: "Update androidWorkProfileGeneralDeviceConfiguration" description: "Update the properties of a androidWorkProfileGeneralDeviceConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [androidWorkProfileGeneralDeviceConfiguration](../resources/intune-deviceconfig-androidworkprofilegeneraldeviceconfiguration.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: 3404
"workProfileBlockPersonalAppInstallsFromUnknownSources": true } ```-----
v1.0 Intune Deviceconfig Androidworkprofilegmaileasconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofilegmaileasconfiguration-create.md
Title: "Create androidWorkProfileGmailEasConfiguration" description: "Create a new androidWorkProfileGmailEasConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [androidWorkProfileGmailEasConfiguration](../resources/intune-deviceconfig-androidworkprofilegmaileasconfiguration.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: 1440
"usernameSource": "userPrincipalName" } ```-----
v1.0 Intune Deviceconfig Androidworkprofilegmaileasconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofilegmaileasconfiguration-delete.md
Title: "Delete androidWorkProfileGmailEasConfiguration" description: "Deletes a androidWorkProfileGmailEasConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [androidWorkProfileGmailEasConfiguration](../resources/intune-deviceconfig-androidworkprofilegmaileasconfiguration.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 Deviceconfig Androidworkprofilegmaileasconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofilegmaileasconfiguration-get.md
Title: "Get androidWorkProfileGmailEasConfiguration" description: "Read properties and relationships of the androidWorkProfileGmailEasConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidWorkProfileGmailEasConfiguration](../resources/intune-deviceconfig-androidworkprofilegmaileasconfiguration.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: 1535
} } ```-----
v1.0 Intune Deviceconfig Androidworkprofilegmaileasconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofilegmaileasconfiguration-list.md
Title: "List androidWorkProfileGmailEasConfigurations" description: "List properties and relationships of the androidWorkProfileGmailEasConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidWorkProfileGmailEasConfiguration](../resources/intune-deviceconfig-androidworkprofilegmaileasconfiguration.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: 1625
] } ```-----
v1.0 Intune Deviceconfig Androidworkprofilegmaileasconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofilegmaileasconfiguration-update.md
Title: "Update androidWorkProfileGmailEasConfiguration" description: "Update the properties of a androidWorkProfileGmailEasConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [androidWorkProfileGmailEasConfiguration](../resources/intune-deviceconfig-androidworkprofilegmaileasconfiguration.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: 1440
"usernameSource": "userPrincipalName" } ```-----
v1.0 Intune Deviceconfig Androidworkprofilenineworkeasconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofilenineworkeasconfiguration-create.md
Title: "Create androidWorkProfileNineWorkEasConfiguration" description: "Create a new androidWorkProfileNineWorkEasConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [androidWorkProfileNineWorkEasConfiguration](../resources/intune-deviceconfig-androidworkprofilenineworkeasconfiguration.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: 1515
"syncTasks": true } ```-----
v1.0 Intune Deviceconfig Androidworkprofilenineworkeasconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofilenineworkeasconfiguration-delete.md
Title: "Delete androidWorkProfileNineWorkEasConfiguration" description: "Deletes a androidWorkProfileNineWorkEasConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [androidWorkProfileNineWorkEasConfiguration](../resources/intune-deviceconfig-androidworkprofilenineworkeasconfiguration.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 Deviceconfig Androidworkprofilenineworkeasconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofilenineworkeasconfiguration-get.md
Title: "Get androidWorkProfileNineWorkEasConfiguration" description: "Read properties and relationships of the androidWorkProfileNineWorkEasConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidWorkProfileNineWorkEasConfiguration](../resources/intune-deviceconfig-androidworkprofilenineworkeasconfiguration.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 Deviceconfig Androidworkprofilenineworkeasconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofilenineworkeasconfiguration-list.md
Title: "List androidWorkProfileNineWorkEasConfigurations" description: "List properties and relationships of the androidWorkProfileNineWorkEasConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidWorkProfileNineWorkEasConfiguration](../resources/intune-deviceconfig-androidworkprofilenineworkeasconfiguration.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: 1712
] } ```-----
v1.0 Intune Deviceconfig Androidworkprofilenineworkeasconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofilenineworkeasconfiguration-update.md
Title: "Update androidWorkProfileNineWorkEasConfiguration" description: "Update the properties of a androidWorkProfileNineWorkEasConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [androidWorkProfileNineWorkEasConfiguration](../resources/intune-deviceconfig-androidworkprofilenineworkeasconfiguration.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: 1515
"syncTasks": true } ```-----
v1.0 Intune Deviceconfig Androidworkprofilepkcscertificateprofile Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofilepkcscertificateprofile-create.md
Title: "Create androidWorkProfilePkcsCertificateProfile" description: "Create a new androidWorkProfilePkcsCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [androidWorkProfilePkcsCertificateProfile](../resources/intune-deviceconfig-androidworkprofilepkcscertificateprofile.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: 2204
] } ```-----
v1.0 Intune Deviceconfig Androidworkprofilepkcscertificateprofile Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofilepkcscertificateprofile-delete.md
Title: "Delete androidWorkProfilePkcsCertificateProfile" description: "Deletes a androidWorkProfilePkcsCertificateProfile."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [androidWorkProfilePkcsCertificateProfile](../resources/intune-deviceconfig-androidworkprofilepkcscertificateprofile.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 Deviceconfig Androidworkprofilepkcscertificateprofile Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofilepkcscertificateprofile-get.md
Title: "Get androidWorkProfilePkcsCertificateProfile" description: "Read properties and relationships of the androidWorkProfilePkcsCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidWorkProfilePkcsCertificateProfile](../resources/intune-deviceconfig-androidworkprofilepkcscertificateprofile.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: 2337
} } ```-----
v1.0 Intune Deviceconfig Androidworkprofilepkcscertificateprofile List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofilepkcscertificateprofile-list.md
Title: "List androidWorkProfilePkcsCertificateProfiles" description: "List properties and relationships of the androidWorkProfilePkcsCertificateProfile objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidWorkProfilePkcsCertificateProfile](../resources/intune-deviceconfig-androidworkprofilepkcscertificateprofile.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: 2465
] } ```-----
v1.0 Intune Deviceconfig Androidworkprofilepkcscertificateprofile Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofilepkcscertificateprofile-update.md
Title: "Update androidWorkProfilePkcsCertificateProfile" description: "Update the properties of a androidWorkProfilePkcsCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [androidWorkProfilePkcsCertificateProfile](../resources/intune-deviceconfig-androidworkprofilepkcscertificateprofile.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: 2204
] } ```-----
v1.0 Intune Deviceconfig Androidworkprofilescepcertificateprofile Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofilescepcertificateprofile-create.md
Title: "Create androidWorkProfileScepCertificateProfile" description: "Create a new androidWorkProfileScepCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [androidWorkProfileScepCertificateProfile](../resources/intune-deviceconfig-androidworkprofilescepcertificateprofile.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: 2154
] } ```-----
v1.0 Intune Deviceconfig Androidworkprofilescepcertificateprofile Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofilescepcertificateprofile-delete.md
Title: "Delete androidWorkProfileScepCertificateProfile" description: "Deletes a androidWorkProfileScepCertificateProfile."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [androidWorkProfileScepCertificateProfile](../resources/intune-deviceconfig-androidworkprofilescepcertificateprofile.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 Deviceconfig Androidworkprofilescepcertificateprofile Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofilescepcertificateprofile-get.md
Title: "Get androidWorkProfileScepCertificateProfile" description: "Read properties and relationships of the androidWorkProfileScepCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidWorkProfileScepCertificateProfile](../resources/intune-deviceconfig-androidworkprofilescepcertificateprofile.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: 2293
} } ```-----
v1.0 Intune Deviceconfig Androidworkprofilescepcertificateprofile List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofilescepcertificateprofile-list.md
Title: "List androidWorkProfileScepCertificateProfiles" description: "List properties and relationships of the androidWorkProfileScepCertificateProfile objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidWorkProfileScepCertificateProfile](../resources/intune-deviceconfig-androidworkprofilescepcertificateprofile.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: 2427
] } ```-----
v1.0 Intune Deviceconfig Androidworkprofilescepcertificateprofile Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofilescepcertificateprofile-update.md
Title: "Update androidWorkProfileScepCertificateProfile" description: "Update the properties of a androidWorkProfileScepCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [androidWorkProfileScepCertificateProfile](../resources/intune-deviceconfig-androidworkprofilescepcertificateprofile.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: 2154
] } ```-----
v1.0 Intune Deviceconfig Androidworkprofiletrustedrootcertificate Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofiletrustedrootcertificate-create.md
Title: "Create androidWorkProfileTrustedRootCertificate" description: "Create a new androidWorkProfileTrustedRootCertificate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [androidWorkProfileTrustedRootCertificate](../resources/intune-deviceconfig-androidworkprofiletrustedrootcertificate.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: 1323
"certFileName": "Cert File Name value" } ```-----
v1.0 Intune Deviceconfig Androidworkprofiletrustedrootcertificate Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofiletrustedrootcertificate-delete.md
Title: "Delete androidWorkProfileTrustedRootCertificate" description: "Deletes a androidWorkProfileTrustedRootCertificate."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [androidWorkProfileTrustedRootCertificate](../resources/intune-deviceconfig-androidworkprofiletrustedrootcertificate.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 Deviceconfig Androidworkprofiletrustedrootcertificate Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofiletrustedrootcertificate-get.md
Title: "Get androidWorkProfileTrustedRootCertificate" description: "Read properties and relationships of the androidWorkProfileTrustedRootCertificate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidWorkProfileTrustedRootCertificate](../resources/intune-deviceconfig-androidworkprofiletrustedrootcertificate.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: 1410
} } ```-----
v1.0 Intune Deviceconfig Androidworkprofiletrustedrootcertificate List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofiletrustedrootcertificate-list.md
Title: "List androidWorkProfileTrustedRootCertificates" description: "List properties and relationships of the androidWorkProfileTrustedRootCertificate objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidWorkProfileTrustedRootCertificate](../resources/intune-deviceconfig-androidworkprofiletrustedrootcertificate.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: 1492
] } ```-----
v1.0 Intune Deviceconfig Androidworkprofiletrustedrootcertificate Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofiletrustedrootcertificate-update.md
Title: "Update androidWorkProfileTrustedRootCertificate" description: "Update the properties of a androidWorkProfileTrustedRootCertificate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [androidWorkProfileTrustedRootCertificate](../resources/intune-deviceconfig-androidworkprofiletrustedrootcertificate.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: 1323
"certFileName": "Cert File Name value" } ```-----
v1.0 Intune Deviceconfig Androidworkprofilevpnconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofilevpnconfiguration-create.md
Title: "Create androidWorkProfileVpnConfiguration" description: "Create a new androidWorkProfileVpnConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [androidWorkProfileVpnConfiguration](../resources/intune-deviceconfig-androidworkprofilevpnconfiguration.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
|servers|[vpnServer](../resources/intune-deviceconfig-vpnserver.md) collection|List of VPN Servers on the network. Make sure end users can access these network locations. This collection can contain a maximum of 500 elements.| |fingerprint|String|Fingerprint is a string that will be used to verify the VPN server can be trusted, which is only applicable when connection type is Check Point Capsule VPN.| |customData|[keyValue](../resources/intune-deviceconfig-keyvalue.md) collection|Custom data when connection type is set to Citrix. This collection can contain a maximum of 25 elements.|
-|customKeyValueData|[keyValuePair](../resources/intune-shared-keyvaluepair.md) collection|Custom data when connection type is set to Citrix. This collection can contain a maximum of 25 elements.|
+|customKeyValueData|[keyValuePair](../resources/intune-deviceconfig-keyvaluepair.md) collection|Custom data when connection type is set to Citrix. This collection can contain a maximum of 25 elements.|
|authenticationMethod|[vpnAuthenticationMethod](../resources/intune-deviceconfig-vpnauthenticationmethod.md)|Authentication method. Possible values are: `certificate`, `usernameAndPassword`, `sharedSecret`, `derivedCredential`, `azureAD`.| |proxyServer|[vpnProxyServer](../resources/intune-deviceconfig-vpnproxyserver.md)|Proxy server.| |targetedPackageIds|String collection|Targeted App package IDs.|
Content-Length: 2594
"microsoftTunnelSiteId": "Microsoft Tunnel Site Id value" } ```-----
v1.0 Intune Deviceconfig Androidworkprofilevpnconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofilevpnconfiguration-delete.md
Title: "Delete androidWorkProfileVpnConfiguration" description: "Deletes a androidWorkProfileVpnConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [androidWorkProfileVpnConfiguration](../resources/intune-deviceconfig-androidworkprofilevpnconfiguration.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 Deviceconfig Androidworkprofilevpnconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofilevpnconfiguration-get.md
Title: "Get androidWorkProfileVpnConfiguration" description: "Read properties and relationships of the androidWorkProfileVpnConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidWorkProfileVpnConfiguration](../resources/intune-deviceconfig-androidworkprofilevpnconfiguration.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: 2775
} } ```-----
v1.0 Intune Deviceconfig Androidworkprofilevpnconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofilevpnconfiguration-list.md
Title: "List androidWorkProfileVpnConfigurations" description: "List properties and relationships of the androidWorkProfileVpnConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidWorkProfileVpnConfiguration](../resources/intune-deviceconfig-androidworkprofilevpnconfiguration.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: 2951
] } ```-----
v1.0 Intune Deviceconfig Androidworkprofilevpnconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofilevpnconfiguration-update.md
Title: "Update androidWorkProfileVpnConfiguration" description: "Update the properties of a androidWorkProfileVpnConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [androidWorkProfileVpnConfiguration](../resources/intune-deviceconfig-androidworkprofilevpnconfiguration.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 [
|servers|[vpnServer](../resources/intune-deviceconfig-vpnserver.md) collection|List of VPN Servers on the network. Make sure end users can access these network locations. This collection can contain a maximum of 500 elements.| |fingerprint|String|Fingerprint is a string that will be used to verify the VPN server can be trusted, which is only applicable when connection type is Check Point Capsule VPN.| |customData|[keyValue](../resources/intune-deviceconfig-keyvalue.md) collection|Custom data when connection type is set to Citrix. This collection can contain a maximum of 25 elements.|
-|customKeyValueData|[keyValuePair](../resources/intune-shared-keyvaluepair.md) collection|Custom data when connection type is set to Citrix. This collection can contain a maximum of 25 elements.|
+|customKeyValueData|[keyValuePair](../resources/intune-deviceconfig-keyvaluepair.md) collection|Custom data when connection type is set to Citrix. This collection can contain a maximum of 25 elements.|
|authenticationMethod|[vpnAuthenticationMethod](../resources/intune-deviceconfig-vpnauthenticationmethod.md)|Authentication method. Possible values are: `certificate`, `usernameAndPassword`, `sharedSecret`, `derivedCredential`, `azureAD`.| |proxyServer|[vpnProxyServer](../resources/intune-deviceconfig-vpnproxyserver.md)|Proxy server.| |targetedPackageIds|String collection|Targeted App package IDs.|
Content-Length: 2594
"microsoftTunnelSiteId": "Microsoft Tunnel Site Id value" } ```-----
v1.0 Intune Deviceconfig Androidworkprofilewificonfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofilewificonfiguration-create.md
Title: "Create androidWorkProfileWiFiConfiguration" description: "Create a new androidWorkProfileWiFiConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [androidWorkProfileWiFiConfiguration](../resources/intune-deviceconfig-androidworkprofilewificonfiguration.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: 1391
"wiFiSecurityType": "wpaEnterprise" } ```-----
v1.0 Intune Deviceconfig Androidworkprofilewificonfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofilewificonfiguration-delete.md
Title: "Delete androidWorkProfileWiFiConfiguration" description: "Deletes a androidWorkProfileWiFiConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [androidWorkProfileWiFiConfiguration](../resources/intune-deviceconfig-androidworkprofilewificonfiguration.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 Deviceconfig Androidworkprofilewificonfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofilewificonfiguration-get.md
Title: "Get androidWorkProfileWiFiConfiguration" description: "Read properties and relationships of the androidWorkProfileWiFiConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidWorkProfileWiFiConfiguration](../resources/intune-deviceconfig-androidworkprofilewificonfiguration.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: 1484
} } ```-----
v1.0 Intune Deviceconfig Androidworkprofilewificonfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofilewificonfiguration-list.md
Title: "List androidWorkProfileWiFiConfigurations" description: "List properties and relationships of the androidWorkProfileWiFiConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidWorkProfileWiFiConfiguration](../resources/intune-deviceconfig-androidworkprofilewificonfiguration.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: 1572
] } ```-----
v1.0 Intune Deviceconfig Androidworkprofilewificonfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-androidworkprofilewificonfiguration-update.md
Title: "Update androidWorkProfileWiFiConfiguration" description: "Update the properties of a androidWorkProfileWiFiConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [androidWorkProfileWiFiConfiguration](../resources/intune-deviceconfig-androidworkprofilewificonfiguration.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: 1391
"wiFiSecurityType": "wpaEnterprise" } ```-----
v1.0 Intune Deviceconfig Aospdeviceownercertificateprofilebase Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-aospdeviceownercertificateprofilebase-get.md
Title: "Get aospDeviceOwnerCertificateProfileBase" description: "Read properties and relationships of the aospDeviceOwnerCertificateProfileBase object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [aospDeviceOwnerCertificateProfileBase](../resources/intune-deviceconfig-aospdeviceownercertificateprofilebase.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: 1731
} } ```-----
v1.0 Intune Deviceconfig Aospdeviceownercertificateprofilebase List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-aospdeviceownercertificateprofilebase-list.md
Title: "List aospDeviceOwnerCertificateProfileBases" description: "List properties and relationships of the aospDeviceOwnerCertificateProfileBase objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [aospDeviceOwnerCertificateProfileBase](../resources/intune-deviceconfig-aospdeviceownercertificateprofilebase.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: 1833
] } ```-----
v1.0 Intune Deviceconfig Aospdeviceownercompliancepolicy Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-aospdeviceownercompliancepolicy-create.md
Title: "Create aospDeviceOwnerCompliancePolicy" description: "Create a new aospDeviceOwnerCompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [aospDeviceOwnerCompliancePolicy](../resources/intune-deviceconfig-aospdeviceownercompliancepolicy.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: 808
"storageRequireEncryption": true } ```-----
v1.0 Intune Deviceconfig Aospdeviceownercompliancepolicy Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-aospdeviceownercompliancepolicy-delete.md
Title: "Delete aospDeviceOwnerCompliancePolicy" description: "Deletes a aospDeviceOwnerCompliancePolicy."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [aospDeviceOwnerCompliancePolicy](../resources/intune-deviceconfig-aospdeviceownercompliancepolicy.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 Deviceconfig Aospdeviceownercompliancepolicy Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-aospdeviceownercompliancepolicy-get.md
Title: "Get aospDeviceOwnerCompliancePolicy" description: "Read properties and relationships of the aospDeviceOwnerCompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [aospDeviceOwnerCompliancePolicy](../resources/intune-deviceconfig-aospdeviceownercompliancepolicy.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: 865
} } ```-----
v1.0 Intune Deviceconfig Aospdeviceownercompliancepolicy List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-aospdeviceownercompliancepolicy-list.md
Title: "List aospDeviceOwnerCompliancePolicies" description: "List properties and relationships of the aospDeviceOwnerCompliancePolicy objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [aospDeviceOwnerCompliancePolicy](../resources/intune-deviceconfig-aospdeviceownercompliancepolicy.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: 917
] } ```-----
v1.0 Intune Deviceconfig Aospdeviceownercompliancepolicy Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-aospdeviceownercompliancepolicy-update.md
Title: "Update aospDeviceOwnerCompliancePolicy" description: "Update the properties of a aospDeviceOwnerCompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [aospDeviceOwnerCompliancePolicy](../resources/intune-deviceconfig-aospdeviceownercompliancepolicy.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: 808
"storageRequireEncryption": true } ```-----
v1.0 Intune Deviceconfig Aospdeviceownerdeviceconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-aospdeviceownerdeviceconfiguration-create.md
Title: "Create aospDeviceOwnerDeviceConfiguration" description: "Create a new aospDeviceOwnerDeviceConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [aospDeviceOwnerDeviceConfiguration](../resources/intune-deviceconfig-aospdeviceownerdeviceconfiguration.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: 1759
"wifiBlockEditConfigurations": true } ```-----
v1.0 Intune Deviceconfig Aospdeviceownerdeviceconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-aospdeviceownerdeviceconfiguration-delete.md
Title: "Delete aospDeviceOwnerDeviceConfiguration" description: "Deletes a aospDeviceOwnerDeviceConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [aospDeviceOwnerDeviceConfiguration](../resources/intune-deviceconfig-aospdeviceownerdeviceconfiguration.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 Deviceconfig Aospdeviceownerdeviceconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-aospdeviceownerdeviceconfiguration-get.md
Title: "Get aospDeviceOwnerDeviceConfiguration" description: "Read properties and relationships of the aospDeviceOwnerDeviceConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [aospDeviceOwnerDeviceConfiguration](../resources/intune-deviceconfig-aospdeviceownerdeviceconfiguration.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: 1870
} } ```-----
v1.0 Intune Deviceconfig Aospdeviceownerdeviceconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-aospdeviceownerdeviceconfiguration-list.md
Title: "List aospDeviceOwnerDeviceConfigurations" description: "List properties and relationships of the aospDeviceOwnerDeviceConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [aospDeviceOwnerDeviceConfiguration](../resources/intune-deviceconfig-aospdeviceownerdeviceconfiguration.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: 1976
] } ```-----
v1.0 Intune Deviceconfig Aospdeviceownerdeviceconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-aospdeviceownerdeviceconfiguration-update.md
Title: "Update aospDeviceOwnerDeviceConfiguration" description: "Update the properties of a aospDeviceOwnerDeviceConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [aospDeviceOwnerDeviceConfiguration](../resources/intune-deviceconfig-aospdeviceownerdeviceconfiguration.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: 1759
"wifiBlockEditConfigurations": true } ```-----
v1.0 Intune Deviceconfig Aospdeviceownerenterprisewificonfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-aospdeviceownerenterprisewificonfiguration-create.md
Title: "Create aospDeviceOwnerEnterpriseWiFiConfiguration" description: "Create a new aospDeviceOwnerEnterpriseWiFiConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [aospDeviceOwnerEnterpriseWiFiConfiguration](../resources/intune-deviceconfig-aospdeviceownerenterprisewificonfiguration.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: 1871
"outerIdentityPrivacyTemporaryValue": "Outer Identity Privacy Temporary Value value" } ```-----
v1.0 Intune Deviceconfig Aospdeviceownerenterprisewificonfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-aospdeviceownerenterprisewificonfiguration-delete.md
Title: "Delete aospDeviceOwnerEnterpriseWiFiConfiguration" description: "Deletes a aospDeviceOwnerEnterpriseWiFiConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [aospDeviceOwnerEnterpriseWiFiConfiguration](../resources/intune-deviceconfig-aospdeviceownerenterprisewificonfiguration.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 Deviceconfig Aospdeviceownerenterprisewificonfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-aospdeviceownerenterprisewificonfiguration-get.md
Title: "Get aospDeviceOwnerEnterpriseWiFiConfiguration" description: "Read properties and relationships of the aospDeviceOwnerEnterpriseWiFiConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [aospDeviceOwnerEnterpriseWiFiConfiguration](../resources/intune-deviceconfig-aospdeviceownerenterprisewificonfiguration.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: 1984
} } ```-----
v1.0 Intune Deviceconfig Aospdeviceownerenterprisewificonfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-aospdeviceownerenterprisewificonfiguration-list.md
Title: "List aospDeviceOwnerEnterpriseWiFiConfigurations" description: "List properties and relationships of the aospDeviceOwnerEnterpriseWiFiConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [aospDeviceOwnerEnterpriseWiFiConfiguration](../resources/intune-deviceconfig-aospdeviceownerenterprisewificonfiguration.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: 2092
] } ```-----
v1.0 Intune Deviceconfig Aospdeviceownerenterprisewificonfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-aospdeviceownerenterprisewificonfiguration-update.md
Title: "Update aospDeviceOwnerEnterpriseWiFiConfiguration" description: "Update the properties of a aospDeviceOwnerEnterpriseWiFiConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [aospDeviceOwnerEnterpriseWiFiConfiguration](../resources/intune-deviceconfig-aospdeviceownerenterprisewificonfiguration.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: 1871
"outerIdentityPrivacyTemporaryValue": "Outer Identity Privacy Temporary Value value" } ```-----
v1.0 Intune Deviceconfig Aospdeviceownerpkcscertificateprofile Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-aospdeviceownerpkcscertificateprofile-create.md
Title: "Create aospDeviceOwnerPkcsCertificateProfile" description: "Create a new aospDeviceOwnerPkcsCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [aospDeviceOwnerPkcsCertificateProfile](../resources/intune-deviceconfig-aospdeviceownerpkcscertificateprofile.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: 2247
] } ```-----
v1.0 Intune Deviceconfig Aospdeviceownerpkcscertificateprofile Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-aospdeviceownerpkcscertificateprofile-delete.md
Title: "Delete aospDeviceOwnerPkcsCertificateProfile" description: "Deletes a aospDeviceOwnerPkcsCertificateProfile."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [aospDeviceOwnerPkcsCertificateProfile](../resources/intune-deviceconfig-aospdeviceownerpkcscertificateprofile.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 Deviceconfig Aospdeviceownerpkcscertificateprofile Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-aospdeviceownerpkcscertificateprofile-get.md
Title: "Get aospDeviceOwnerPkcsCertificateProfile" description: "Read properties and relationships of the aospDeviceOwnerPkcsCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [aospDeviceOwnerPkcsCertificateProfile](../resources/intune-deviceconfig-aospdeviceownerpkcscertificateprofile.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: 2382
} } ```-----
v1.0 Intune Deviceconfig Aospdeviceownerpkcscertificateprofile List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-aospdeviceownerpkcscertificateprofile-list.md
Title: "List aospDeviceOwnerPkcsCertificateProfiles" description: "List properties and relationships of the aospDeviceOwnerPkcsCertificateProfile objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [aospDeviceOwnerPkcsCertificateProfile](../resources/intune-deviceconfig-aospdeviceownerpkcscertificateprofile.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: 2512
] } ```-----
v1.0 Intune Deviceconfig Aospdeviceownerpkcscertificateprofile Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-aospdeviceownerpkcscertificateprofile-update.md
Title: "Update aospDeviceOwnerPkcsCertificateProfile" description: "Update the properties of a aospDeviceOwnerPkcsCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [aospDeviceOwnerPkcsCertificateProfile](../resources/intune-deviceconfig-aospdeviceownerpkcscertificateprofile.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: 2247
] } ```-----
v1.0 Intune Deviceconfig Aospdeviceownerscepcertificateprofile Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-aospdeviceownerscepcertificateprofile-create.md
Title: "Create aospDeviceOwnerScepCertificateProfile" description: "Create a new aospDeviceOwnerScepCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [aospDeviceOwnerScepCertificateProfile](../resources/intune-deviceconfig-aospdeviceownerscepcertificateprofile.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: 2151
] } ```-----
v1.0 Intune Deviceconfig Aospdeviceownerscepcertificateprofile Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-aospdeviceownerscepcertificateprofile-delete.md
Title: "Delete aospDeviceOwnerScepCertificateProfile" description: "Deletes a aospDeviceOwnerScepCertificateProfile."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [aospDeviceOwnerScepCertificateProfile](../resources/intune-deviceconfig-aospdeviceownerscepcertificateprofile.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 Deviceconfig Aospdeviceownerscepcertificateprofile Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-aospdeviceownerscepcertificateprofile-get.md
Title: "Get aospDeviceOwnerScepCertificateProfile" description: "Read properties and relationships of the aospDeviceOwnerScepCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [aospDeviceOwnerScepCertificateProfile](../resources/intune-deviceconfig-aospdeviceownerscepcertificateprofile.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: 2290
} } ```-----
v1.0 Intune Deviceconfig Aospdeviceownerscepcertificateprofile List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-aospdeviceownerscepcertificateprofile-list.md
Title: "List aospDeviceOwnerScepCertificateProfiles" description: "List properties and relationships of the aospDeviceOwnerScepCertificateProfile objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [aospDeviceOwnerScepCertificateProfile](../resources/intune-deviceconfig-aospdeviceownerscepcertificateprofile.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: 2424
] } ```-----
v1.0 Intune Deviceconfig Aospdeviceownerscepcertificateprofile Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-aospdeviceownerscepcertificateprofile-update.md
Title: "Update aospDeviceOwnerScepCertificateProfile" description: "Update the properties of a aospDeviceOwnerScepCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [aospDeviceOwnerScepCertificateProfile](../resources/intune-deviceconfig-aospdeviceownerscepcertificateprofile.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: 2151
] } ```-----
v1.0 Intune Deviceconfig Aospdeviceownertrustedrootcertificate Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-aospdeviceownertrustedrootcertificate-create.md
Title: "Create aospDeviceOwnerTrustedRootCertificate" description: "Create a new aospDeviceOwnerTrustedRootCertificate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [aospDeviceOwnerTrustedRootCertificate](../resources/intune-deviceconfig-aospdeviceownertrustedrootcertificate.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: 1320
"certFileName": "Cert File Name value" } ```-----
v1.0 Intune Deviceconfig Aospdeviceownertrustedrootcertificate Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-aospdeviceownertrustedrootcertificate-delete.md
Title: "Delete aospDeviceOwnerTrustedRootCertificate" description: "Deletes a aospDeviceOwnerTrustedRootCertificate."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [aospDeviceOwnerTrustedRootCertificate](../resources/intune-deviceconfig-aospdeviceownertrustedrootcertificate.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 Deviceconfig Aospdeviceownertrustedrootcertificate Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-aospdeviceownertrustedrootcertificate-get.md
Title: "Get aospDeviceOwnerTrustedRootCertificate" description: "Read properties and relationships of the aospDeviceOwnerTrustedRootCertificate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [aospDeviceOwnerTrustedRootCertificate](../resources/intune-deviceconfig-aospdeviceownertrustedrootcertificate.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: 1407
} } ```-----
v1.0 Intune Deviceconfig Aospdeviceownertrustedrootcertificate List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-aospdeviceownertrustedrootcertificate-list.md
Title: "List aospDeviceOwnerTrustedRootCertificates" description: "List properties and relationships of the aospDeviceOwnerTrustedRootCertificate objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [aospDeviceOwnerTrustedRootCertificate](../resources/intune-deviceconfig-aospdeviceownertrustedrootcertificate.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: 1489
] } ```-----
v1.0 Intune Deviceconfig Aospdeviceownertrustedrootcertificate Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-aospdeviceownertrustedrootcertificate-update.md
Title: "Update aospDeviceOwnerTrustedRootCertificate" description: "Update the properties of a aospDeviceOwnerTrustedRootCertificate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [aospDeviceOwnerTrustedRootCertificate](../resources/intune-deviceconfig-aospdeviceownertrustedrootcertificate.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: 1320
"certFileName": "Cert File Name value" } ```-----
v1.0 Intune Deviceconfig Aospdeviceownerwificonfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-aospdeviceownerwificonfiguration-create.md
Title: "Create aospDeviceOwnerWiFiConfiguration" description: "Create a new aospDeviceOwnerWiFiConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [aospDeviceOwnerWiFiConfiguration](../resources/intune-deviceconfig-aospdeviceownerwificonfiguration.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: 1451
"preSharedKeyIsSet": true } ```-----
v1.0 Intune Deviceconfig Aospdeviceownerwificonfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-aospdeviceownerwificonfiguration-delete.md
Title: "Delete aospDeviceOwnerWiFiConfiguration" description: "Deletes a aospDeviceOwnerWiFiConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [aospDeviceOwnerWiFiConfiguration](../resources/intune-deviceconfig-aospdeviceownerwificonfiguration.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 Deviceconfig Aospdeviceownerwificonfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-aospdeviceownerwificonfiguration-get.md
Title: "Get aospDeviceOwnerWiFiConfiguration" description: "Read properties and relationships of the aospDeviceOwnerWiFiConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [aospDeviceOwnerWiFiConfiguration](../resources/intune-deviceconfig-aospdeviceownerwificonfiguration.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: 1548
} } ```-----
v1.0 Intune Deviceconfig Aospdeviceownerwificonfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-aospdeviceownerwificonfiguration-list.md
Title: "List aospDeviceOwnerWiFiConfigurations" description: "List properties and relationships of the aospDeviceOwnerWiFiConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [aospDeviceOwnerWiFiConfiguration](../resources/intune-deviceconfig-aospdeviceownerwificonfiguration.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: 1640
] } ```-----
v1.0 Intune Deviceconfig Aospdeviceownerwificonfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-aospdeviceownerwificonfiguration-update.md
Title: "Update aospDeviceOwnerWiFiConfiguration" description: "Update the properties of a aospDeviceOwnerWiFiConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [aospDeviceOwnerWiFiConfiguration](../resources/intune-deviceconfig-aospdeviceownerwificonfiguration.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: 1451
"preSharedKeyIsSet": true } ```-----
v1.0 Intune Deviceconfig Appledevicefeaturesconfigurationbase Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-appledevicefeaturesconfigurationbase-get.md
Title: "Get appleDeviceFeaturesConfigurationBase" description: "Read properties and relationships of the appleDeviceFeaturesConfigurationBase object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [appleDeviceFeaturesConfigurationBase](../resources/intune-deviceconfig-appledevicefeaturesconfigurationbase.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: 1550
} } ```-----
v1.0 Intune Deviceconfig Appledevicefeaturesconfigurationbase List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-appledevicefeaturesconfigurationbase-list.md
Title: "List appleDeviceFeaturesConfigurationBases" description: "List properties and relationships of the appleDeviceFeaturesConfigurationBase objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [appleDeviceFeaturesConfigurationBase](../resources/intune-deviceconfig-appledevicefeaturesconfigurationbase.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: 1646
] } ```-----
v1.0 Intune Deviceconfig Appleexpeditedcheckinconfigurationbase Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-appleexpeditedcheckinconfigurationbase-get.md
Title: "Get appleExpeditedCheckinConfigurationBase" description: "Read properties and relationships of the appleExpeditedCheckinConfigurationBase object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [appleExpeditedCheckinConfigurationBase](../resources/intune-deviceconfig-appleexpeditedcheckinconfigurationbase.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: 1333
} } ```-----
v1.0 Intune Deviceconfig Appleexpeditedcheckinconfigurationbase List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-appleexpeditedcheckinconfigurationbase-list.md
Title: "List appleExpeditedCheckinConfigurationBases" description: "List properties and relationships of the appleExpeditedCheckinConfigurationBase objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [appleExpeditedCheckinConfigurationBase](../resources/intune-deviceconfig-appleexpeditedcheckinconfigurationbase.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: 1413
] } ```-----
v1.0 Intune Deviceconfig Applevpnconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-applevpnconfiguration-get.md
Title: "Get appleVpnConfiguration" description: "Read properties and relationships of the appleVpnConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.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: 3419
} } ```-----
v1.0 Intune Deviceconfig Applevpnconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-applevpnconfiguration-list.md
Title: "List appleVpnConfigurations" description: "List properties and relationships of the appleVpnConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.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: 3639
] } ```-----
v1.0 Intune Deviceconfig Carttoclassassociation Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-carttoclassassociation-create.md
Title: "Create cartToClassAssociation" description: "Create a new cartToClassAssociation object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [cartToClassAssociation](../resources/intune-deviceconfig-carttoclassassociation.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: 443
] } ```-----
v1.0 Intune Deviceconfig Carttoclassassociation Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-carttoclassassociation-delete.md
Title: "Delete cartToClassAssociation" description: "Deletes a cartToClassAssociation."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [cartToClassAssociation](../resources/intune-deviceconfig-carttoclassassociation.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 Deviceconfig Carttoclassassociation Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-carttoclassassociation-get.md
Title: "Get cartToClassAssociation" description: "Read properties and relationships of the cartToClassAssociation object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [cartToClassAssociation](../resources/intune-deviceconfig-carttoclassassociation.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: 488
} } ```-----
v1.0 Intune Deviceconfig Carttoclassassociation List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-carttoclassassociation-list.md
Title: "List cartToClassAssociations" description: "List properties and relationships of the cartToClassAssociation objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [cartToClassAssociation](../resources/intune-deviceconfig-carttoclassassociation.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: 528
] } ```-----
v1.0 Intune Deviceconfig Carttoclassassociation Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-carttoclassassociation-update.md
Title: "Update cartToClassAssociation" description: "Update the properties of a cartToClassAssociation object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [cartToClassAssociation](../resources/intune-deviceconfig-carttoclassassociation.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: 443
] } ```-----
v1.0 Intune Deviceconfig Defaultdevicecompliancepolicy Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-defaultdevicecompliancepolicy-create.md
Title: "Create defaultDeviceCompliancePolicy" description: "Create a new defaultDeviceCompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [defaultDeviceCompliancePolicy](../resources/intune-deviceconfig-defaultdevicecompliancepolicy.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: 401
"version": 7 } ```-----
v1.0 Intune Deviceconfig Defaultdevicecompliancepolicy Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-defaultdevicecompliancepolicy-delete.md
Title: "Delete defaultDeviceCompliancePolicy" description: "Deletes a defaultDeviceCompliancePolicy."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [defaultDeviceCompliancePolicy](../resources/intune-deviceconfig-defaultdevicecompliancepolicy.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 Deviceconfig Defaultdevicecompliancepolicy Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-defaultdevicecompliancepolicy-get.md
Title: "Get defaultDeviceCompliancePolicy" description: "Read properties and relationships of the defaultDeviceCompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [defaultDeviceCompliancePolicy](../resources/intune-deviceconfig-defaultdevicecompliancepolicy.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: 440
} } ```-----
v1.0 Intune Deviceconfig Defaultdevicecompliancepolicy List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-defaultdevicecompliancepolicy-list.md
Title: "List defaultDeviceCompliancePolicies" description: "List properties and relationships of the defaultDeviceCompliancePolicy objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [defaultDeviceCompliancePolicy](../resources/intune-deviceconfig-defaultdevicecompliancepolicy.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 Deviceconfig Defaultdevicecompliancepolicy Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-defaultdevicecompliancepolicy-update.md
Title: "Update defaultDeviceCompliancePolicy" description: "Update the properties of a defaultDeviceCompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [defaultDeviceCompliancePolicy](../resources/intune-deviceconfig-defaultdevicecompliancepolicy.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: 401
"version": 7 } ```-----
v1.0 Intune Deviceconfig Devicecomplianceactionitem Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-devicecomplianceactionitem-create.md
Title: "Create deviceComplianceActionItem" description: "Create a new deviceComplianceActionItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceComplianceActionItem](../resources/intune-deviceconfig-devicecomplianceactionitem.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 Deviceconfig Devicecomplianceactionitem Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-devicecomplianceactionitem-delete.md
Title: "Delete deviceComplianceActionItem" description: "Deletes a deviceComplianceActionItem."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceComplianceActionItem](../resources/intune-deviceconfig-devicecomplianceactionitem.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 Deviceconfig Devicecomplianceactionitem Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-devicecomplianceactionitem-get.md
Title: "Get deviceComplianceActionItem" description: "Read properties and relationships of the deviceComplianceActionItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceComplianceActionItem](../resources/intune-deviceconfig-devicecomplianceactionitem.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
} } ```-----
v1.0 Intune Deviceconfig Devicecomplianceactionitem List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-devicecomplianceactionitem-list.md
Title: "List deviceComplianceActionItems" description: "List properties and relationships of the deviceComplianceActionItem objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceComplianceActionItem](../resources/intune-deviceconfig-devicecomplianceactionitem.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: 385
] } ```-----
v1.0 Intune Deviceconfig Devicecomplianceactionitem Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-devicecomplianceactionitem-update.md
Title: "Update deviceComplianceActionItem" description: "Update the properties of a deviceComplianceActionItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceComplianceActionItem](../resources/intune-deviceconfig-devicecomplianceactionitem.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 Deviceconfig Devicecompliancedeviceoverview Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-devicecompliancedeviceoverview-get.md
Title: "Get deviceComplianceDeviceOverview" description: "Read properties and relationships of the deviceComplianceDeviceOverview object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceComplianceDeviceOverview](../resources/intune-deviceconfig-devicecompliancedeviceoverview.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: 432
} } ```-----
v1.0 Intune Deviceconfig Devicecompliancedeviceoverview Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-devicecompliancedeviceoverview-update.md
Title: "Update deviceComplianceDeviceOverview" description: "Update the properties of a deviceComplianceDeviceOverview object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceComplianceDeviceOverview](../resources/intune-deviceconfig-devicecompliancedeviceoverview.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: 391
"configurationVersion": 4 } ```-----
v1.0 Intune Deviceconfig Devicecompliancedevicestatus Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-devicecompliancedevicestatus-create.md
Title: "Create deviceComplianceDeviceStatus" description: "Create a new deviceComplianceDeviceStatus object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceComplianceDeviceStatus](../resources/intune-deviceconfig-devicecompliancedevicestatus.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: 493
"userPrincipalName": "User Principal Name value" } ```-----
v1.0 Intune Deviceconfig Devicecompliancedevicestatus Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-devicecompliancedevicestatus-delete.md
Title: "Delete deviceComplianceDeviceStatus" description: "Deletes a deviceComplianceDeviceStatus."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceComplianceDeviceStatus](../resources/intune-deviceconfig-devicecompliancedevicestatus.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 Deviceconfig Devicecompliancedevicestatus Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-devicecompliancedevicestatus-get.md
Title: "Get deviceComplianceDeviceStatus" description: "Read properties and relationships of the deviceComplianceDeviceStatus object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceComplianceDeviceStatus](../resources/intune-deviceconfig-devicecompliancedevicestatus.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: 532
} } ```-----
v1.0 Intune Deviceconfig Devicecompliancedevicestatus List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-devicecompliancedevicestatus-list.md
Title: "List deviceComplianceDeviceStatuses" description: "List properties and relationships of the deviceComplianceDeviceStatus objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceComplianceDeviceStatus](../resources/intune-deviceconfig-devicecompliancedevicestatus.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: 566
] } ```-----
v1.0 Intune Deviceconfig Devicecompliancedevicestatus Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-devicecompliancedevicestatus-update.md
Title: "Update deviceComplianceDeviceStatus" description: "Update the properties of a deviceComplianceDeviceStatus object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceComplianceDeviceStatus](../resources/intune-deviceconfig-devicecompliancedevicestatus.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: 493
"userPrincipalName": "User Principal Name value" } ```-----
v1.0 Intune Deviceconfig Devicecompliancepolicy Getdevicesscheduledtoretire https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-devicecompliancepolicy-getdevicesscheduledtoretire.md
Title: "getDevicesScheduledToRetire 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: 670
] } ```-----
v1.0 Intune Deviceconfig Devicecompliancepolicy Getnoncompliantdevicestoretire https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-devicecompliancepolicy-getnoncompliantdevicestoretire.md
Title: "getNoncompliantDevicesToRetire 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: 99
"value": "Z2V0Tm9uY29tcGxpYW50RGV2aWNlc1RvUmV0aXJlIEludHVuZSBEb2MgU2FtcGxlIDMzMDg1MTMxNQ==" } ```-----
v1.0 Intune Deviceconfig Devicecompliancepolicy Setscheduledretirestate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-devicecompliancepolicy-setscheduledretirestate.md
Title: "setScheduledRetireState 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 Deviceconfig Devicecompliancepolicy Validatecompliancescript https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-devicecompliancepolicy-validatecompliancescript.md
Title: "validateComplianceScript 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: 1045
} } ```-----
v1.0 Intune Deviceconfig Devicecompliancepolicyassignment Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-devicecompliancepolicyassignment-create.md
Title: "Create deviceCompliancePolicyAssignment" description: "Create a new deviceCompliancePolicyAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceCompliancePolicyAssignment](../resources/intune-deviceconfig-devicecompliancepolicyassignment.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: 501
"sourceId": "Source Id value" } ```-----
v1.0 Intune Deviceconfig Devicecompliancepolicyassignment Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-devicecompliancepolicyassignment-delete.md
Title: "Delete deviceCompliancePolicyAssignment" description: "Deletes a deviceCompliancePolicyAssignment."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceCompliancePolicyAssignment](../resources/intune-deviceconfig-devicecompliancepolicyassignment.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 Deviceconfig Devicecompliancepolicyassignment Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-devicecompliancepolicyassignment-get.md
Title: "Get deviceCompliancePolicyAssignment" description: "Read properties and relationships of the deviceCompliancePolicyAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceCompliancePolicyAssignment](../resources/intune-deviceconfig-devicecompliancepolicyassignment.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: 540
} } ```-----
v1.0 Intune Deviceconfig Devicecompliancepolicyassignment List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-devicecompliancepolicyassignment-list.md
Title: "List deviceCompliancePolicyAssignments" description: "List properties and relationships of the deviceCompliancePolicyAssignment objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceCompliancePolicyAssignment](../resources/intune-deviceconfig-devicecompliancepolicyassignment.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: 574
] } ```-----
v1.0 Intune Deviceconfig Devicecompliancepolicyassignment Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-devicecompliancepolicyassignment-update.md
Title: "Update deviceCompliancePolicyAssignment" description: "Update the properties of a deviceCompliancePolicyAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceCompliancePolicyAssignment](../resources/intune-deviceconfig-devicecompliancepolicyassignment.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: 501
"sourceId": "Source Id value" } ```-----
v1.0 Intune Deviceconfig Devicecompliancepolicydevicestatesummary Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-devicecompliancepolicydevicestatesummary-get.md
Title: "Get deviceCompliancePolicyDeviceStateSummary" description: "Read properties and relationships of the deviceCompliancePolicyDeviceStateSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceCompliancePolicyDeviceStateSummary](../resources/intune-deviceconfig-devicecompliancepolicydevicestatesummary.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 Deviceconfig Devicecompliancepolicydevicestatesummary Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-devicecompliancepolicydevicestatesummary-update.md
Title: "Update deviceCompliancePolicyDeviceStateSummary" description: "Update the properties of a deviceCompliancePolicyDeviceStateSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceCompliancePolicyDeviceStateSummary](../resources/intune-deviceconfig-devicecompliancepolicydevicestatesummary.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: 398
"conflictDeviceCount": 3 } ```-----
v1.0 Intune Deviceconfig Devicecompliancepolicysettingstatesummary Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-devicecompliancepolicysettingstatesummary-create.md
Title: "Create deviceCompliancePolicySettingStateSummary" description: "Create a new deviceCompliancePolicySettingStateSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceCompliancePolicySettingStateSummary](../resources/intune-deviceconfig-devicecompliancepolicysettingstatesummary.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: 451
"conflictDeviceCount": 3 } ```-----
v1.0 Intune Deviceconfig Devicecompliancepolicysettingstatesummary Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-devicecompliancepolicysettingstatesummary-delete.md
Title: "Delete deviceCompliancePolicySettingStateSummary" description: "Deletes a deviceCompliancePolicySettingStateSummary."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceCompliancePolicySettingStateSummary](../resources/intune-deviceconfig-devicecompliancepolicysettingstatesummary.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 Deviceconfig Devicecompliancepolicysettingstatesummary Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-devicecompliancepolicysettingstatesummary-get.md
Title: "Get deviceCompliancePolicySettingStateSummary" description: "Read properties and relationships of the deviceCompliancePolicySettingStateSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceCompliancePolicySettingStateSummary](../resources/intune-deviceconfig-devicecompliancepolicysettingstatesummary.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: 494
} } ```-----
v1.0 Intune Deviceconfig Devicecompliancepolicysettingstatesummary List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-devicecompliancepolicysettingstatesummary-list.md
Title: "List deviceCompliancePolicySettingStateSummaries" description: "List properties and relationships of the deviceCompliancePolicySettingStateSummary objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceCompliancePolicySettingStateSummary](../resources/intune-deviceconfig-devicecompliancepolicysettingstatesummary.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: 532
] } ```-----
v1.0 Intune Deviceconfig Devicecompliancepolicysettingstatesummary Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-devicecompliancepolicysettingstatesummary-update.md
Title: "Update deviceCompliancePolicySettingStateSummary" description: "Update the properties of a deviceCompliancePolicySettingStateSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceCompliancePolicySettingStateSummary](../resources/intune-deviceconfig-devicecompliancepolicysettingstatesummary.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: 451
"conflictDeviceCount": 3 } ```-----
v1.0 Intune Deviceconfig Devicecompliancescheduledactionforrule Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-devicecompliancescheduledactionforrule-create.md
Title: "Create deviceComplianceScheduledActionForRule" description: "Create a new deviceComplianceScheduledActionForRule object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceComplianceScheduledActionForRule](../resources/intune-deviceconfig-devicecompliancescheduledactionforrule.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: 163
"ruleName": "Rule Name value" } ```-----
v1.0 Intune Deviceconfig Devicecompliancescheduledactionforrule Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-devicecompliancescheduledactionforrule-delete.md
Title: "Delete deviceComplianceScheduledActionForRule" description: "Deletes a deviceComplianceScheduledActionForRule."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceComplianceScheduledActionForRule](../resources/intune-deviceconfig-devicecompliancescheduledactionforrule.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 Deviceconfig Devicecompliancescheduledactionforrule Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-devicecompliancescheduledactionforrule-get.md
Title: "Get deviceComplianceScheduledActionForRule" description: "Read properties and relationships of the deviceComplianceScheduledActionForRule object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceComplianceScheduledActionForRule](../resources/intune-deviceconfig-devicecompliancescheduledactionforrule.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: 188
} } ```-----
v1.0 Intune Deviceconfig Devicecompliancescheduledactionforrule List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-devicecompliancescheduledactionforrule-list.md
Title: "List deviceComplianceScheduledActionForRules" description: "List properties and relationships of the deviceComplianceScheduledActionForRule objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceComplianceScheduledActionForRule](../resources/intune-deviceconfig-devicecompliancescheduledactionforrule.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: 208
] } ```-----
v1.0 Intune Deviceconfig Devicecompliancescheduledactionforrule Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-devicecompliancescheduledactionforrule-update.md
Title: "Update deviceComplianceScheduledActionForRule" description: "Update the properties of a deviceComplianceScheduledActionForRule object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceComplianceScheduledActionForRule](../resources/intune-deviceconfig-devicecompliancescheduledactionforrule.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: 163
"ruleName": "Rule Name value" } ```-----
v1.0 Intune Deviceconfig Devicecompliancesettingstate Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-devicecompliancesettingstate-create.md
Title: "Create deviceComplianceSettingState" description: "Create a new deviceComplianceSettingState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceComplianceSettingState](../resources/intune-deviceconfig-devicecompliancesettingstate.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 d
|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: 598
"complianceGracePeriodExpirationDateTime": "2016-12-31T23:56:44.951111-08:00" } ```-----
v1.0 Intune Deviceconfig Devicecompliancesettingstate Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-devicecompliancesettingstate-delete.md
Title: "Delete deviceComplianceSettingState" description: "Deletes a deviceComplianceSettingState."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceComplianceSettingState](../resources/intune-deviceconfig-devicecompliancesettingstate.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 Deviceconfig Devicecompliancesettingstate Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-devicecompliancesettingstate-get.md
Title: "Get deviceComplianceSettingState" description: "Read properties and relationships of the deviceComplianceSettingState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceComplianceSettingState](../resources/intune-deviceconfig-devicecompliancesettingstate.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: 645
} } ```-----
v1.0 Intune Deviceconfig Devicecompliancesettingstate List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-devicecompliancesettingstate-list.md
Title: "List deviceComplianceSettingStates" description: "List properties and relationships of the deviceComplianceSettingState objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceComplianceSettingState](../resources/intune-deviceconfig-devicecompliancesettingstate.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: 687
] } ```-----
v1.0 Intune Deviceconfig Devicecompliancesettingstate Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-devicecompliancesettingstate-update.md
Title: "Update deviceComplianceSettingState" description: "Update the properties of a deviceComplianceSettingState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceComplianceSettingState](../resources/intune-deviceconfig-devicecompliancesettingstate.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 [
|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: 598
"complianceGracePeriodExpirationDateTime": "2016-12-31T23:56:44.951111-08:00" } ```-----
v1.0 Intune Deviceconfig Devicecomplianceuseroverview Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-devicecomplianceuseroverview-get.md
Title: "Get deviceComplianceUserOverview" description: "Read properties and relationships of the deviceComplianceUserOverview object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceComplianceUserOverview](../resources/intune-deviceconfig-devicecomplianceuseroverview.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: 391
} } ```-----
v1.0 Intune Deviceconfig Devicecomplianceuseroverview Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-devicecomplianceuseroverview-update.md
Title: "Update deviceComplianceUserOverview" description: "Update the properties of a deviceComplianceUserOverview object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceComplianceUserOverview](../resources/intune-deviceconfig-devicecomplianceuseroverview.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: 352
"configurationVersion": 4 } ```-----
v1.0 Intune Deviceconfig Devicecomplianceuserstatus Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-devicecomplianceuserstatus-create.md
Title: "Create deviceComplianceUserStatus" description: "Create a new deviceComplianceUserStatus object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceComplianceUserStatus](../resources/intune-deviceconfig-devicecomplianceuserstatus.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: 336
"userPrincipalName": "User Principal Name value" } ```-----
v1.0 Intune Deviceconfig Devicecomplianceuserstatus Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-devicecomplianceuserstatus-delete.md
Title: "Delete deviceComplianceUserStatus" description: "Deletes a deviceComplianceUserStatus."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceComplianceUserStatus](../resources/intune-deviceconfig-devicecomplianceuserstatus.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 Deviceconfig Devicecomplianceuserstatus Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-devicecomplianceuserstatus-get.md
Title: "Get deviceComplianceUserStatus" description: "Read properties and relationships of the deviceComplianceUserStatus object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceComplianceUserStatus](../resources/intune-deviceconfig-devicecomplianceuserstatus.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: 369
} } ```-----
v1.0 Intune Deviceconfig Devicecomplianceuserstatus List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-devicecomplianceuserstatus-list.md
Title: "List deviceComplianceUserStatuses" description: "List properties and relationships of the deviceComplianceUserStatus objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceComplianceUserStatus](../resources/intune-deviceconfig-devicecomplianceuserstatus.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: 397
] } ```-----
v1.0 Intune Deviceconfig Devicecomplianceuserstatus Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-devicecomplianceuserstatus-update.md
Title: "Update deviceComplianceUserStatus" description: "Update the properties of a deviceComplianceUserStatus object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceComplianceUserStatus](../resources/intune-deviceconfig-devicecomplianceuserstatus.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: 336
"userPrincipalName": "User Principal Name value" } ```-----
v1.0 Intune Deviceconfig Deviceconfiguration Getomasettingplaintextvalue https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-deviceconfiguration-getomasettingplaintextvalue.md
Title: "getOmaSettingPlainTextValue 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
"value": "Get Oma Setting Plain Text Value value" } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationassignment Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-deviceconfigurationassignment-create.md
Title: "Create deviceConfigurationAssignment" description: "Create a new deviceConfigurationAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceConfigurationAssignment](../resources/intune-deviceconfig-deviceconfigurationassignment.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: 521
"intent": "remove" } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationassignment Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-deviceconfigurationassignment-delete.md
Title: "Delete deviceConfigurationAssignment" description: "Deletes a deviceConfigurationAssignment."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceConfigurationAssignment](../resources/intune-deviceconfig-deviceconfigurationassignment.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 Deviceconfig Deviceconfigurationassignment Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-deviceconfigurationassignment-get.md
Title: "Get deviceConfigurationAssignment" description: "Read properties and relationships of the deviceConfigurationAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceConfigurationAssignment](../resources/intune-deviceconfig-deviceconfigurationassignment.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: 562
} } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationassignment List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-deviceconfigurationassignment-list.md
Title: "List deviceConfigurationAssignments" description: "List properties and relationships of the deviceConfigurationAssignment objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceConfigurationAssignment](../resources/intune-deviceconfig-deviceconfigurationassignment.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: 598
] } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationassignment Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-deviceconfigurationassignment-update.md
Title: "Update deviceConfigurationAssignment" description: "Update the properties of a deviceConfigurationAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceConfigurationAssignment](../resources/intune-deviceconfig-deviceconfigurationassignment.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: 521
"intent": "remove" } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationconflictsummary Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-deviceconfigurationconflictsummary-create.md
Title: "Create deviceConfigurationConflictSummary" description: "Create a new deviceConfigurationConflictSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceConfigurationConflictSummary](../resources/intune-deviceconfig-deviceconfigurationconflictsummary.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: 447
"deviceCheckinsImpacted": 6 } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationconflictsummary Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-deviceconfigurationconflictsummary-delete.md
Title: "Delete deviceConfigurationConflictSummary" description: "Deletes a deviceConfigurationConflictSummary."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceConfigurationConflictSummary](../resources/intune-deviceconfig-deviceconfigurationconflictsummary.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 Deviceconfig Deviceconfigurationconflictsummary Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-deviceconfigurationconflictsummary-get.md
Title: "Get deviceConfigurationConflictSummary" description: "Read properties and relationships of the deviceConfigurationConflictSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceConfigurationConflictSummary](../resources/intune-deviceconfig-deviceconfigurationconflictsummary.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: 494
} } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationconflictsummary List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-deviceconfigurationconflictsummary-list.md
Title: "List deviceConfigurationConflictSummaries" description: "List properties and relationships of the deviceConfigurationConflictSummary objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceConfigurationConflictSummary](../resources/intune-deviceconfig-deviceconfigurationconflictsummary.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: 536
] } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationconflictsummary Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-deviceconfigurationconflictsummary-update.md
Title: "Update deviceConfigurationConflictSummary" description: "Update the properties of a deviceConfigurationConflictSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceConfigurationConflictSummary](../resources/intune-deviceconfig-deviceconfigurationconflictsummary.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: 447
"deviceCheckinsImpacted": 6 } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationdeviceoverview Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-deviceconfigurationdeviceoverview-get.md
Title: "Get deviceConfigurationDeviceOverview" description: "Read properties and relationships of the deviceConfigurationDeviceOverview object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceConfigurationDeviceOverview](../resources/intune-deviceconfig-deviceconfigurationdeviceoverview.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: 435
} } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationdeviceoverview Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-deviceconfigurationdeviceoverview-update.md
Title: "Update deviceConfigurationDeviceOverview" description: "Update the properties of a deviceConfigurationDeviceOverview object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceConfigurationDeviceOverview](../resources/intune-deviceconfig-deviceconfigurationdeviceoverview.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: 394
"configurationVersion": 4 } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationdevicestatesummary Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-deviceconfigurationdevicestatesummary-get.md
Title: "Get deviceConfigurationDeviceStateSummary" description: "Read properties and relationships of the deviceConfigurationDeviceStateSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceConfigurationDeviceStateSummary](../resources/intune-deviceconfig-deviceconfigurationdevicestatesummary.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
} } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationdevicestatesummary Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-deviceconfigurationdevicestatesummary-update.md
Title: "Update deviceConfigurationDeviceStateSummary" description: "Update the properties of a deviceConfigurationDeviceStateSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceConfigurationDeviceStateSummary](../resources/intune-deviceconfig-deviceconfigurationdevicestatesummary.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: 339
"conflictDeviceCount": 3 } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationdevicestatus Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-deviceconfigurationdevicestatus-create.md
Title: "Create deviceConfigurationDeviceStatus" description: "Create a new deviceConfigurationDeviceStatus object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceConfigurationDeviceStatus](../resources/intune-deviceconfig-deviceconfigurationdevicestatus.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: 496
"userPrincipalName": "User Principal Name value" } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationdevicestatus Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-deviceconfigurationdevicestatus-delete.md
Title: "Delete deviceConfigurationDeviceStatus" description: "Deletes a deviceConfigurationDeviceStatus."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceConfigurationDeviceStatus](../resources/intune-deviceconfig-deviceconfigurationdevicestatus.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 Deviceconfig Deviceconfigurationdevicestatus Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-deviceconfigurationdevicestatus-get.md
Title: "Get deviceConfigurationDeviceStatus" description: "Read properties and relationships of the deviceConfigurationDeviceStatus object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceConfigurationDeviceStatus](../resources/intune-deviceconfig-deviceconfigurationdevicestatus.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: 535
} } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationdevicestatus List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-deviceconfigurationdevicestatus-list.md
Title: "List deviceConfigurationDeviceStatuses" description: "List properties and relationships of the deviceConfigurationDeviceStatus objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceConfigurationDeviceStatus](../resources/intune-deviceconfig-deviceconfigurationdevicestatus.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: 569
] } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationdevicestatus Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-deviceconfigurationdevicestatus-update.md
Title: "Update deviceConfigurationDeviceStatus" description: "Update the properties of a deviceConfigurationDeviceStatus object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceConfigurationDeviceStatus](../resources/intune-deviceconfig-deviceconfigurationdevicestatus.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: 496
"userPrincipalName": "User Principal Name value" } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationgroupassignment Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-deviceconfigurationgroupassignment-create.md
Title: "Create deviceConfigurationGroupAssignment" description: "Create a new deviceConfigurationGroupAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceConfigurationGroupAssignment](../resources/intune-deviceconfig-deviceconfigurationgroupassignment.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: 195
"excludeGroup": true } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationgroupassignment Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-deviceconfigurationgroupassignment-delete.md
Title: "Delete deviceConfigurationGroupAssignment" description: "Deletes a deviceConfigurationGroupAssignment."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceConfigurationGroupAssignment](../resources/intune-deviceconfig-deviceconfigurationgroupassignment.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 Deviceconfig Deviceconfigurationgroupassignment Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-deviceconfigurationgroupassignment-get.md
Title: "Get deviceConfigurationGroupAssignment" description: "Read properties and relationships of the deviceConfigurationGroupAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceConfigurationGroupAssignment](../resources/intune-deviceconfig-deviceconfigurationgroupassignment.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: 222
} } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationgroupassignment List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-deviceconfigurationgroupassignment-list.md
Title: "List deviceConfigurationGroupAssignments" description: "List properties and relationships of the deviceConfigurationGroupAssignment objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceConfigurationGroupAssignment](../resources/intune-deviceconfig-deviceconfigurationgroupassignment.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: 244
] } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationgroupassignment Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-deviceconfigurationgroupassignment-update.md
Title: "Update deviceConfigurationGroupAssignment" description: "Update the properties of a deviceConfigurationGroupAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceConfigurationGroupAssignment](../resources/intune-deviceconfig-deviceconfigurationgroupassignment.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: 195
"excludeGroup": true } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationuseroverview Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-deviceconfigurationuseroverview-get.md
Title: "Get deviceConfigurationUserOverview" description: "Read properties and relationships of the deviceConfigurationUserOverview object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceConfigurationUserOverview](../resources/intune-deviceconfig-deviceconfigurationuseroverview.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: 394
} } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationuseroverview Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-deviceconfigurationuseroverview-update.md
Title: "Update deviceConfigurationUserOverview" description: "Update the properties of a deviceConfigurationUserOverview object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceConfigurationUserOverview](../resources/intune-deviceconfig-deviceconfigurationuseroverview.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
"configurationVersion": 4 } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationuserstatesummary Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-deviceconfigurationuserstatesummary-get.md
Title: "Get deviceConfigurationUserStateSummary" description: "Read properties and relationships of the deviceConfigurationUserStateSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceConfigurationUserStateSummary](../resources/intune-deviceconfig-deviceconfigurationuserstatesummary.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: 361
} } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationuserstatesummary Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-deviceconfigurationuserstatesummary-update.md
Title: "Update deviceConfigurationUserStateSummary" description: "Update the properties of a deviceConfigurationUserStateSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceConfigurationUserStateSummary](../resources/intune-deviceconfig-deviceconfigurationuserstatesummary.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: 324
"conflictUserCount": 1 } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationuserstatus Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-deviceconfigurationuserstatus-create.md
Title: "Create deviceConfigurationUserStatus" description: "Create a new deviceConfigurationUserStatus object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceConfigurationUserStatus](../resources/intune-deviceconfig-deviceconfigurationuserstatus.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: 339
"userPrincipalName": "User Principal Name value" } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationuserstatus Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-deviceconfigurationuserstatus-delete.md
Title: "Delete deviceConfigurationUserStatus" description: "Deletes a deviceConfigurationUserStatus."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceConfigurationUserStatus](../resources/intune-deviceconfig-deviceconfigurationuserstatus.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 Deviceconfig Deviceconfigurationuserstatus Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-deviceconfigurationuserstatus-get.md
Title: "Get deviceConfigurationUserStatus" description: "Read properties and relationships of the deviceConfigurationUserStatus object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceConfigurationUserStatus](../resources/intune-deviceconfig-deviceconfigurationuserstatus.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: 372
} } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationuserstatus List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-deviceconfigurationuserstatus-list.md
Title: "List deviceConfigurationUserStatuses" description: "List properties and relationships of the deviceConfigurationUserStatus objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceConfigurationUserStatus](../resources/intune-deviceconfig-deviceconfigurationuserstatus.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: 400
] } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationuserstatus Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-deviceconfigurationuserstatus-update.md
Title: "Update deviceConfigurationUserStatus" description: "Update the properties of a deviceConfigurationUserStatus object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceConfigurationUserStatus](../resources/intune-deviceconfig-deviceconfigurationuserstatus.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: 339
"userPrincipalName": "User Principal Name value" } ```-----
v1.0 Intune Deviceconfig Devicemanagement Enableandroiddeviceadministratorenrollment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-devicemanagement-enableandroiddeviceadministratorenrollment.md
Title: "enableAndroidDeviceAdministratorEnrollment 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 Deviceconfig Devicemanagement Enableunlicensedadminstrators https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-devicemanagement-enableunlicensedadminstrators.md
Title: "enableUnlicensedAdminstrators action" description: "Upon enabling, users assigned as administrators via Role Assignment Memberships will no longer require an assigned Intune license. You are limited to 350 unlicensed direct members for each AAD security group in a role assignment, but you can assign multiple AAD security groups to a role if you need to support more than 350 unlicensed administrators. Licensed administrators will continue to function as-is in that transitive memberships apply and are not subject to the 350 member limit."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Upon enabling, users assigned as administrators via Role Assignment Memberships will no longer require an assigned Intune license. You are limited to 350 unlicensed direct members for each AAD security group in a role assignment, but you can assign multiple AAD security groups to a role if you need to support more than 350 unlicensed administrators. Licensed administrators will continue to function as-is in that transitive memberships apply and are not subject to the 350 member limit.
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Deviceconfig Easemailprofileconfigurationbase Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-easemailprofileconfigurationbase-get.md
Title: "Get easEmailProfileConfigurationBase" description: "Read properties and relationships of the easEmailProfileConfigurationBase object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [easEmailProfileConfigurationBase](../resources/intune-deviceconfig-easemailprofileconfigurationbase.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: 1486
} } ```-----
v1.0 Intune Deviceconfig Easemailprofileconfigurationbase List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-easemailprofileconfigurationbase-list.md
Title: "List easEmailProfileConfigurationBases" description: "List properties and relationships of the easEmailProfileConfigurationBase objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [easEmailProfileConfigurationBase](../resources/intune-deviceconfig-easemailprofileconfigurationbase.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: 1572
] } ```-----
v1.0 Intune Deviceconfig Editionupgradeconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-editionupgradeconfiguration-create.md
Title: "Create editionUpgradeConfiguration" description: "Create a new editionUpgradeConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [editionUpgradeConfiguration](../resources/intune-deviceconfig-editionupgradeconfiguration.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: 1376
"windowsSMode": "block" } ```-----
v1.0 Intune Deviceconfig Editionupgradeconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-editionupgradeconfiguration-delete.md
Title: "Delete editionUpgradeConfiguration" description: "Deletes a editionUpgradeConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [editionUpgradeConfiguration](../resources/intune-deviceconfig-editionupgradeconfiguration.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 Deviceconfig Editionupgradeconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-editionupgradeconfiguration-get.md
Title: "Get editionUpgradeConfiguration" description: "Read properties and relationships of the editionUpgradeConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [editionUpgradeConfiguration](../resources/intune-deviceconfig-editionupgradeconfiguration.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: 1469
} } ```-----
v1.0 Intune Deviceconfig Editionupgradeconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-editionupgradeconfiguration-list.md
Title: "List editionUpgradeConfigurations" description: "List properties and relationships of the editionUpgradeConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [editionUpgradeConfiguration](../resources/intune-deviceconfig-editionupgradeconfiguration.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: 1557
] } ```-----
v1.0 Intune Deviceconfig Editionupgradeconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-editionupgradeconfiguration-update.md
Title: "Update editionUpgradeConfiguration" description: "Update the properties of a editionUpgradeConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [editionUpgradeConfiguration](../resources/intune-deviceconfig-editionupgradeconfiguration.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: 1376
"windowsSMode": "block" } ```-----
v1.0 Intune Deviceconfig Hardwareconfiguration Assign https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-hardwareconfiguration-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)|
Content-Length: 504
] } ```-----
v1.0 Intune Deviceconfig Hardwareconfiguration Assignhardwareconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-hardwareconfiguration-assignhardwareconfiguration.md
Title: "assignHardwareConfiguration 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: 504
] } ```-----
v1.0 Intune Deviceconfig Hardwareconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-hardwareconfiguration-create.md
Title: "Create hardwareConfiguration" description: "Create a new hardwareConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [hardwareConfiguration](../resources/intune-deviceconfig-hardwareconfiguration.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: 577
"perDevicePasswordDisabled": true } ```-----
v1.0 Intune Deviceconfig Hardwareconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-hardwareconfiguration-delete.md
Title: "Delete hardwareConfiguration" description: "Deletes a hardwareConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [hardwareConfiguration](../resources/intune-deviceconfig-hardwareconfiguration.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 Deviceconfig Hardwareconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-hardwareconfiguration-get.md
Title: "Get hardwareConfiguration" description: "Read properties and relationships of the hardwareConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [hardwareConfiguration](../resources/intune-deviceconfig-hardwareconfiguration.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: 624
} } ```-----
v1.0 Intune Deviceconfig Hardwareconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-hardwareconfiguration-list.md
Title: "List hardwareConfigurations" description: "List properties and relationships of the hardwareConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [hardwareConfiguration](../resources/intune-deviceconfig-hardwareconfiguration.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: 666
] } ```-----
v1.0 Intune Deviceconfig Hardwareconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-hardwareconfiguration-update.md
Title: "Update hardwareConfiguration" description: "Update the properties of a hardwareConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [hardwareConfiguration](../resources/intune-deviceconfig-hardwareconfiguration.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: 577
"perDevicePasswordDisabled": true } ```-----
v1.0 Intune Deviceconfig Hardwareconfigurationassignment Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-hardwareconfigurationassignment-create.md
Title: "Create hardwareConfigurationAssignment" description: "Create a new hardwareConfigurationAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [hardwareConfigurationAssignment](../resources/intune-deviceconfig-hardwareconfigurationassignment.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 Deviceconfig Hardwareconfigurationassignment Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-hardwareconfigurationassignment-delete.md
Title: "Delete hardwareConfigurationAssignment" description: "Deletes a hardwareConfigurationAssignment."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [hardwareConfigurationAssignment](../resources/intune-deviceconfig-hardwareconfigurationassignment.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 Deviceconfig Hardwareconfigurationassignment Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-hardwareconfigurationassignment-get.md
Title: "Get hardwareConfigurationAssignment" description: "Read properties and relationships of the hardwareConfigurationAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [hardwareConfigurationAssignment](../resources/intune-deviceconfig-hardwareconfigurationassignment.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: 474
} } ```-----
v1.0 Intune Deviceconfig Hardwareconfigurationassignment List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-hardwareconfigurationassignment-list.md
Title: "List hardwareConfigurationAssignments" description: "List properties and relationships of the hardwareConfigurationAssignment objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [hardwareConfigurationAssignment](../resources/intune-deviceconfig-hardwareconfigurationassignment.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: 504
] } ```-----
v1.0 Intune Deviceconfig Hardwareconfigurationassignment Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-hardwareconfigurationassignment-update.md
Title: "Update hardwareConfigurationAssignment" description: "Update the properties of a hardwareConfigurationAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [hardwareConfigurationAssignment](../resources/intune-deviceconfig-hardwareconfigurationassignment.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 Deviceconfig Hardwareconfigurationdevicestate Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-hardwareconfigurationdevicestate-create.md
Title: "Create hardwareConfigurationDeviceState" description: "Create a new hardwareConfigurationDeviceState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [hardwareConfigurationDeviceState](../resources/intune-deviceconfig-hardwareconfigurationdevicestate.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 h
|upn|String|User Principal Name (UPN).| |internalVersion|Int32|The Policy internal version| |lastStateUpdateDateTime|DateTimeOffset|The last timestamp of when the hardware configuration executed|
-|configurationState|[runState](../resources/intune-shared-runstate.md)|Configuration state from the lastest hardware configuration execution. Possible values are: `unknown`, `success`, `fail`, `scriptError`, `pending`, `notApplicable`.|
+|configurationState|[runState](../resources/intune-deviceconfig-runstate.md)|Configuration state from the lastest hardware configuration execution. Possible values are: `unknown`, `success`, `fail`, `scriptError`, `pending`, `notApplicable`.|
|configurationOutput|String|Output of the hardware configuration execution| |configurationError|String|Error from the hardware configuration execution|
Content-Length: 459
"configurationError": "Configuration Error value" } ```-----
v1.0 Intune Deviceconfig Hardwareconfigurationdevicestate Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-hardwareconfigurationdevicestate-delete.md
Title: "Delete hardwareConfigurationDeviceState" description: "Deletes a hardwareConfigurationDeviceState."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [hardwareConfigurationDeviceState](../resources/intune-deviceconfig-hardwareconfigurationdevicestate.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 Deviceconfig Hardwareconfigurationdevicestate Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-hardwareconfigurationdevicestate-get.md
Title: "Get hardwareConfigurationDeviceState" description: "Read properties and relationships of the hardwareConfigurationDeviceState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [hardwareConfigurationDeviceState](../resources/intune-deviceconfig-hardwareconfigurationdevicestate.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: 498
} } ```-----
v1.0 Intune Deviceconfig Hardwareconfigurationdevicestate List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-hardwareconfigurationdevicestate-list.md
Title: "List hardwareConfigurationDeviceStates" description: "List properties and relationships of the hardwareConfigurationDeviceState objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [hardwareConfigurationDeviceState](../resources/intune-deviceconfig-hardwareconfigurationdevicestate.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: 532
] } ```-----
v1.0 Intune Deviceconfig Hardwareconfigurationdevicestate Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-hardwareconfigurationdevicestate-update.md
Title: "Update hardwareConfigurationDeviceState" description: "Update the properties of a hardwareConfigurationDeviceState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [hardwareConfigurationDeviceState](../resources/intune-deviceconfig-hardwareconfigurationdevicestate.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 [
|upn|String|User Principal Name (UPN).| |internalVersion|Int32|The Policy internal version| |lastStateUpdateDateTime|DateTimeOffset|The last timestamp of when the hardware configuration executed|
-|configurationState|[runState](../resources/intune-shared-runstate.md)|Configuration state from the lastest hardware configuration execution. Possible values are: `unknown`, `success`, `fail`, `scriptError`, `pending`, `notApplicable`.|
+|configurationState|[runState](../resources/intune-deviceconfig-runstate.md)|Configuration state from the lastest hardware configuration execution. Possible values are: `unknown`, `success`, `fail`, `scriptError`, `pending`, `notApplicable`.|
|configurationOutput|String|Output of the hardware configuration execution| |configurationError|String|Error from the hardware configuration execution|
Content-Length: 459
"configurationError": "Configuration Error value" } ```-----
v1.0 Intune Deviceconfig Hardwareconfigurationrunsummary Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-hardwareconfigurationrunsummary-get.md
Title: "Get hardwareConfigurationRunSummary" description: "Read properties and relationships of the hardwareConfigurationRunSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [hardwareConfigurationRunSummary](../resources/intune-deviceconfig-hardwareconfigurationrunsummary.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 Deviceconfig Hardwareconfigurationrunsummary Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-hardwareconfigurationrunsummary-update.md
Title: "Update hardwareConfigurationRunSummary" description: "Update the properties of a hardwareConfigurationRunSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [hardwareConfigurationRunSummary](../resources/intune-deviceconfig-hardwareconfigurationrunsummary.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: 518
"lastRunDateTime": "2016-12-31T23:57:28.499537-08:00" } ```-----
v1.0 Intune Deviceconfig Hardwareconfigurationuserstate Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-hardwareconfigurationuserstate-create.md
Title: "Create hardwareConfigurationUserState" description: "Create a new hardwareConfigurationUserState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [hardwareConfigurationUserState](../resources/intune-deviceconfig-hardwareconfigurationuserstate.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: 455
"unknownDeviceCount": 2 } ```-----
v1.0 Intune Deviceconfig Hardwareconfigurationuserstate Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-hardwareconfigurationuserstate-delete.md
Title: "Delete hardwareConfigurationUserState" description: "Deletes a hardwareConfigurationUserState."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [hardwareConfigurationUserState](../resources/intune-deviceconfig-hardwareconfigurationuserstate.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 Deviceconfig Hardwareconfigurationuserstate Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-hardwareconfigurationuserstate-get.md
Title: "Get hardwareConfigurationUserState" description: "Read properties and relationships of the hardwareConfigurationUserState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [hardwareConfigurationUserState](../resources/intune-deviceconfig-hardwareconfigurationuserstate.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: 498
} } ```-----
v1.0 Intune Deviceconfig Hardwareconfigurationuserstate List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-hardwareconfigurationuserstate-list.md
Title: "List hardwareConfigurationUserStates" description: "List properties and relationships of the hardwareConfigurationUserState objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [hardwareConfigurationUserState](../resources/intune-deviceconfig-hardwareconfigurationuserstate.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: 536
] } ```-----
v1.0 Intune Deviceconfig Hardwareconfigurationuserstate Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-hardwareconfigurationuserstate-update.md
Title: "Update hardwareConfigurationUserState" description: "Update the properties of a hardwareConfigurationUserState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [hardwareConfigurationUserState](../resources/intune-deviceconfig-hardwareconfigurationuserstate.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: 455
"unknownDeviceCount": 2 } ```-----
v1.0 Intune Deviceconfig Hardwarepasswordinfo Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-hardwarepasswordinfo-create.md
Title: "Create hardwarePasswordInfo" description: "Create a new hardwarePasswordInfo object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [hardwarePasswordInfo](../resources/intune-deviceconfig-hardwarepasswordinfo.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: 265
] } ```-----
v1.0 Intune Deviceconfig Hardwarepasswordinfo Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-hardwarepasswordinfo-delete.md
Title: "Delete hardwarePasswordInfo" description: "Deletes a hardwarePasswordInfo."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [hardwarePasswordInfo](../resources/intune-deviceconfig-hardwarepasswordinfo.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 Deviceconfig Hardwarepasswordinfo Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-hardwarepasswordinfo-get.md
Title: "Get hardwarePasswordInfo" description: "Read properties and relationships of the hardwarePasswordInfo object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [hardwarePasswordInfo](../resources/intune-deviceconfig-hardwarepasswordinfo.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: 298
} } ```-----
v1.0 Intune Deviceconfig Hardwarepasswordinfo List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-hardwarepasswordinfo-list.md
Title: "List hardwarePasswordInfos" description: "List properties and relationships of the hardwarePasswordInfo objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [hardwarePasswordInfo](../resources/intune-deviceconfig-hardwarepasswordinfo.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: 326
] } ```-----
v1.0 Intune Deviceconfig Hardwarepasswordinfo Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-hardwarepasswordinfo-update.md
Title: "Update hardwarePasswordInfo" description: "Update the properties of a hardwarePasswordInfo object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [hardwarePasswordInfo](../resources/intune-deviceconfig-hardwarepasswordinfo.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: 265
] } ```-----
v1.0 Intune Deviceconfig Ioscertificateprofile Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-ioscertificateprofile-get.md
Title: "Get iosCertificateProfile" description: "Read properties and relationships of the iosCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [iosCertificateProfile](../resources/intune-deviceconfig-ioscertificateprofile.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: 1279
} } ```-----
v1.0 Intune Deviceconfig Ioscertificateprofile List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-ioscertificateprofile-list.md
Title: "List iosCertificateProfiles" description: "List properties and relationships of the iosCertificateProfile objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [iosCertificateProfile](../resources/intune-deviceconfig-ioscertificateprofile.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: 1357
] } ```-----
v1.0 Intune Deviceconfig Ioscertificateprofilebase Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-ioscertificateprofilebase-get.md
Title: "Get iosCertificateProfileBase" description: "Read properties and relationships of the iosCertificateProfileBase object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [iosCertificateProfileBase](../resources/intune-deviceconfig-ioscertificateprofilebase.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: 1512
} } ```-----
v1.0 Intune Deviceconfig Ioscertificateprofilebase List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-ioscertificateprofilebase-list.md
Title: "List iosCertificateProfileBases" description: "List properties and relationships of the iosCertificateProfileBase objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [iosCertificateProfileBase](../resources/intune-deviceconfig-ioscertificateprofilebase.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: 1600
] } ```-----
v1.0 Intune Deviceconfig Ioscompliancepolicy Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-ioscompliancepolicy-create.md
Title: "Create iosCompliancePolicy" description: "Create a new iosCompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [iosCompliancePolicy](../resources/intune-deviceconfig-ioscompliancepolicy.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: 1476
] } ```-----
v1.0 Intune Deviceconfig Ioscompliancepolicy Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-ioscompliancepolicy-delete.md
Title: "Delete iosCompliancePolicy" description: "Deletes a iosCompliancePolicy."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [iosCompliancePolicy](../resources/intune-deviceconfig-ioscompliancepolicy.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 Deviceconfig Ioscompliancepolicy Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-ioscompliancepolicy-get.md
Title: "Get iosCompliancePolicy" description: "Read properties and relationships of the iosCompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [iosCompliancePolicy](../resources/intune-deviceconfig-ioscompliancepolicy.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: 1569
} } ```-----
v1.0 Intune Deviceconfig Ioscompliancepolicy List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-ioscompliancepolicy-list.md
Title: "List iosCompliancePolicies" description: "List properties and relationships of the iosCompliancePolicy objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [iosCompliancePolicy](../resources/intune-deviceconfig-ioscompliancepolicy.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: 1657
] } ```-----
v1.0 Intune Deviceconfig Ioscompliancepolicy Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-ioscompliancepolicy-update.md
Title: "Update iosCompliancePolicy" description: "Update the properties of a iosCompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [iosCompliancePolicy](../resources/intune-deviceconfig-ioscompliancepolicy.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: 1476
] } ```-----
v1.0 Intune Deviceconfig Ioscustomconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-ioscustomconfiguration-create.md
Title: "Create iosCustomConfiguration" description: "Create a new iosCustomConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [iosCustomConfiguration](../resources/intune-deviceconfig-ioscustomconfiguration.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: 1316
"payload": "cGF5bG9hZA==" } ```-----
v1.0 Intune Deviceconfig Ioscustomconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-ioscustomconfiguration-delete.md
Title: "Delete iosCustomConfiguration" description: "Deletes a iosCustomConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [iosCustomConfiguration](../resources/intune-deviceconfig-ioscustomconfiguration.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 Deviceconfig Ioscustomconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-ioscustomconfiguration-get.md
Title: "Get iosCustomConfiguration" description: "Read properties and relationships of the iosCustomConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [iosCustomConfiguration](../resources/intune-deviceconfig-ioscustomconfiguration.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: 1405
} } ```-----
v1.0 Intune Deviceconfig Ioscustomconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-ioscustomconfiguration-list.md
Title: "List iosCustomConfigurations" description: "List properties and relationships of the iosCustomConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [iosCustomConfiguration](../resources/intune-deviceconfig-ioscustomconfiguration.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: 1489
] } ```-----
v1.0 Intune Deviceconfig Ioscustomconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-ioscustomconfiguration-update.md
Title: "Update iosCustomConfiguration" description: "Update the properties of a iosCustomConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [iosCustomConfiguration](../resources/intune-deviceconfig-ioscustomconfiguration.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: 1316
"payload": "cGF5bG9hZA==" } ```-----
v1.0 Intune Deviceconfig Iosderivedcredentialauthenticationconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosderivedcredentialauthenticationconfiguration-create.md
Title: "Create iosDerivedCredentialAuthenticationConfiguration" description: "Create a new iosDerivedCredentialAuthenticationConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [iosDerivedCredentialAuthenticationConfiguration](../resources/intune-deviceconfig-iosderivedcredentialauthenticationconfiguration.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: 1222
"version": 7 } ```-----
v1.0 Intune Deviceconfig Iosderivedcredentialauthenticationconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosderivedcredentialauthenticationconfiguration-delete.md
Title: "Delete iosDerivedCredentialAuthenticationConfiguration" description: "Deletes a iosDerivedCredentialAuthenticationConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [iosDerivedCredentialAuthenticationConfiguration](../resources/intune-deviceconfig-iosderivedcredentialauthenticationconfiguration.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 Deviceconfig Iosderivedcredentialauthenticationconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosderivedcredentialauthenticationconfiguration-get.md
Title: "Get iosDerivedCredentialAuthenticationConfiguration" description: "Read properties and relationships of the iosDerivedCredentialAuthenticationConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [iosDerivedCredentialAuthenticationConfiguration](../resources/intune-deviceconfig-iosderivedcredentialauthenticationconfiguration.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: 1305
} } ```-----
v1.0 Intune Deviceconfig Iosderivedcredentialauthenticationconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosderivedcredentialauthenticationconfiguration-list.md
Title: "List iosDerivedCredentialAuthenticationConfigurations" description: "List properties and relationships of the iosDerivedCredentialAuthenticationConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [iosDerivedCredentialAuthenticationConfiguration](../resources/intune-deviceconfig-iosderivedcredentialauthenticationconfiguration.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: 1383
] } ```-----
v1.0 Intune Deviceconfig Iosderivedcredentialauthenticationconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosderivedcredentialauthenticationconfiguration-update.md
Title: "Update iosDerivedCredentialAuthenticationConfiguration" description: "Update the properties of a iosDerivedCredentialAuthenticationConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [iosDerivedCredentialAuthenticationConfiguration](../resources/intune-deviceconfig-iosderivedcredentialauthenticationconfiguration.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: 1222
"version": 7 } ```-----
v1.0 Intune Deviceconfig Iosdevicefeaturesconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosdevicefeaturesconfiguration-create.md
Title: "Create iosDeviceFeaturesConfiguration" description: "Create a new iosDeviceFeaturesConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [iosDeviceFeaturesConfiguration](../resources/intune-deviceconfig-iosdevicefeaturesconfiguration.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: 7255
} } ```-----
v1.0 Intune Deviceconfig Iosdevicefeaturesconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosdevicefeaturesconfiguration-delete.md
Title: "Delete iosDeviceFeaturesConfiguration" description: "Deletes a iosDeviceFeaturesConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [iosDeviceFeaturesConfiguration](../resources/intune-deviceconfig-iosdevicefeaturesconfiguration.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 Deviceconfig Iosdevicefeaturesconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosdevicefeaturesconfiguration-get.md
Title: "Get iosDeviceFeaturesConfiguration" description: "Read properties and relationships of the iosDeviceFeaturesConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [iosDeviceFeaturesConfiguration](../resources/intune-deviceconfig-iosdevicefeaturesconfiguration.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: 7700
} } ```-----
v1.0 Intune Deviceconfig Iosdevicefeaturesconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosdevicefeaturesconfiguration-list.md
Title: "List iosDeviceFeaturesConfigurations" description: "List properties and relationships of the iosDeviceFeaturesConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [iosDeviceFeaturesConfiguration](../resources/intune-deviceconfig-iosdevicefeaturesconfiguration.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: 8140
] } ```-----
v1.0 Intune Deviceconfig Iosdevicefeaturesconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosdevicefeaturesconfiguration-update.md
Title: "Update iosDeviceFeaturesConfiguration" description: "Update the properties of a iosDeviceFeaturesConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [iosDeviceFeaturesConfiguration](../resources/intune-deviceconfig-iosdevicefeaturesconfiguration.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: 7255
} } ```-----
v1.0 Intune Deviceconfig Ioseasemailprofileconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-ioseasemailprofileconfiguration-create.md
Title: "Create iosEasEmailProfileConfiguration" description: "Create a new iosEasEmailProfileConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [iosEasEmailProfileConfiguration](../resources/intune-deviceconfig-ioseasemailprofileconfiguration.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: 2359
"perAppVPNProfileId": "Per App VPNProfile Id value" } ```-----
v1.0 Intune Deviceconfig Ioseasemailprofileconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-ioseasemailprofileconfiguration-delete.md
Title: "Delete iosEasEmailProfileConfiguration" description: "Deletes a iosEasEmailProfileConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [iosEasEmailProfileConfiguration](../resources/intune-deviceconfig-ioseasemailprofileconfiguration.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 Deviceconfig Ioseasemailprofileconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-ioseasemailprofileconfiguration-get.md
Title: "Get iosEasEmailProfileConfiguration" description: "Read properties and relationships of the iosEasEmailProfileConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [iosEasEmailProfileConfiguration](../resources/intune-deviceconfig-ioseasemailprofileconfiguration.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: 2496
} } ```-----
v1.0 Intune Deviceconfig Ioseasemailprofileconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-ioseasemailprofileconfiguration-list.md
Title: "List iosEasEmailProfileConfigurations" description: "List properties and relationships of the iosEasEmailProfileConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [iosEasEmailProfileConfiguration](../resources/intune-deviceconfig-ioseasemailprofileconfiguration.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: 2628
] } ```-----
v1.0 Intune Deviceconfig Ioseasemailprofileconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-ioseasemailprofileconfiguration-update.md
Title: "Update iosEasEmailProfileConfiguration" description: "Update the properties of a iosEasEmailProfileConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [iosEasEmailProfileConfiguration](../resources/intune-deviceconfig-ioseasemailprofileconfiguration.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: 2359
"perAppVPNProfileId": "Per App VPNProfile Id value" } ```-----
v1.0 Intune Deviceconfig Ioseducationdeviceconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-ioseducationdeviceconfiguration-create.md
Title: "Create iosEducationDeviceConfiguration" description: "Create a new iosEducationDeviceConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [iosEducationDeviceConfiguration](../resources/intune-deviceconfig-ioseducationdeviceconfiguration.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: 1206
"version": 7 } ```-----
v1.0 Intune Deviceconfig Ioseducationdeviceconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-ioseducationdeviceconfiguration-delete.md
Title: "Delete iosEducationDeviceConfiguration" description: "Deletes a iosEducationDeviceConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [iosEducationDeviceConfiguration](../resources/intune-deviceconfig-ioseducationdeviceconfiguration.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 Deviceconfig Ioseducationdeviceconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-ioseducationdeviceconfiguration-get.md
Title: "Get iosEducationDeviceConfiguration" description: "Read properties and relationships of the iosEducationDeviceConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [iosEducationDeviceConfiguration](../resources/intune-deviceconfig-ioseducationdeviceconfiguration.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: 1289
} } ```-----
v1.0 Intune Deviceconfig Ioseducationdeviceconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-ioseducationdeviceconfiguration-list.md
Title: "List iosEducationDeviceConfigurations" description: "List properties and relationships of the iosEducationDeviceConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [iosEducationDeviceConfiguration](../resources/intune-deviceconfig-ioseducationdeviceconfiguration.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: 1367
] } ```-----
v1.0 Intune Deviceconfig Ioseducationdeviceconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-ioseducationdeviceconfiguration-update.md
Title: "Update iosEducationDeviceConfiguration" description: "Update the properties of a iosEducationDeviceConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [iosEducationDeviceConfiguration](../resources/intune-deviceconfig-ioseducationdeviceconfiguration.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: 1206
"version": 7 } ```-----
v1.0 Intune Deviceconfig Iosedudeviceconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosedudeviceconfiguration-create.md
Title: "Create iosEduDeviceConfiguration" description: "Create a new iosEduDeviceConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [iosEduDeviceConfiguration](../resources/intune-deviceconfig-iosedudeviceconfiguration.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: 2855
} } ```-----
v1.0 Intune Deviceconfig Iosedudeviceconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosedudeviceconfiguration-delete.md
Title: "Delete iosEduDeviceConfiguration" description: "Deletes a iosEduDeviceConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [iosEduDeviceConfiguration](../resources/intune-deviceconfig-iosedudeviceconfiguration.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 Deviceconfig Iosedudeviceconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosedudeviceconfiguration-get.md
Title: "Get iosEduDeviceConfiguration" description: "Read properties and relationships of the iosEduDeviceConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [iosEduDeviceConfiguration](../resources/intune-deviceconfig-iosedudeviceconfiguration.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: 3004
} } ```-----
v1.0 Intune Deviceconfig Iosedudeviceconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosedudeviceconfiguration-list.md
Title: "List iosEduDeviceConfigurations" description: "List properties and relationships of the iosEduDeviceConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [iosEduDeviceConfiguration](../resources/intune-deviceconfig-iosedudeviceconfiguration.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: 3148
] } ```-----
v1.0 Intune Deviceconfig Iosedudeviceconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosedudeviceconfiguration-update.md
Title: "Update iosEduDeviceConfiguration" description: "Update the properties of a iosEduDeviceConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [iosEduDeviceConfiguration](../resources/intune-deviceconfig-iosedudeviceconfiguration.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: 2855
} } ```-----
v1.0 Intune Deviceconfig Iosenterprisewificonfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosenterprisewificonfiguration-create.md
Title: "Create iosEnterpriseWiFiConfiguration" description: "Create a new iosEnterpriseWiFiConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [iosEnterpriseWiFiConfiguration](../resources/intune-deviceconfig-iosenterprisewificonfiguration.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: 2189
"passwordFormatString": "Password Format String value" } ```-----
v1.0 Intune Deviceconfig Iosenterprisewificonfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosenterprisewificonfiguration-delete.md
Title: "Delete iosEnterpriseWiFiConfiguration" description: "Deletes a iosEnterpriseWiFiConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [iosEnterpriseWiFiConfiguration](../resources/intune-deviceconfig-iosenterprisewificonfiguration.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 Deviceconfig Iosenterprisewificonfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosenterprisewificonfiguration-get.md
Title: "Get iosEnterpriseWiFiConfiguration" description: "Read properties and relationships of the iosEnterpriseWiFiConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [iosEnterpriseWiFiConfiguration](../resources/intune-deviceconfig-iosenterprisewificonfiguration.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: 2314
} } ```-----
v1.0 Intune Deviceconfig Iosenterprisewificonfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosenterprisewificonfiguration-list.md
Title: "List iosEnterpriseWiFiConfigurations" description: "List properties and relationships of the iosEnterpriseWiFiConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [iosEnterpriseWiFiConfiguration](../resources/intune-deviceconfig-iosenterprisewificonfiguration.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: 2434
] } ```-----
v1.0 Intune Deviceconfig Iosenterprisewificonfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosenterprisewificonfiguration-update.md
Title: "Update iosEnterpriseWiFiConfiguration" description: "Update the properties of a iosEnterpriseWiFiConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [iosEnterpriseWiFiConfiguration](../resources/intune-deviceconfig-iosenterprisewificonfiguration.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: 2189
"passwordFormatString": "Password Format String value" } ```-----
v1.0 Intune Deviceconfig Iosexpeditedcheckinconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosexpeditedcheckinconfiguration-create.md
Title: "Create iosExpeditedCheckinConfiguration" description: "Create a new iosExpeditedCheckinConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [iosExpeditedCheckinConfiguration](../resources/intune-deviceconfig-iosexpeditedcheckinconfiguration.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
"enableExpeditedCheckin": true } ```-----
v1.0 Intune Deviceconfig Iosexpeditedcheckinconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosexpeditedcheckinconfiguration-delete.md
Title: "Delete iosExpeditedCheckinConfiguration" description: "Deletes a iosExpeditedCheckinConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [iosExpeditedCheckinConfiguration](../resources/intune-deviceconfig-iosexpeditedcheckinconfiguration.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 Deviceconfig Iosexpeditedcheckinconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosexpeditedcheckinconfiguration-get.md
Title: "Get iosExpeditedCheckinConfiguration" description: "Read properties and relationships of the iosExpeditedCheckinConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [iosExpeditedCheckinConfiguration](../resources/intune-deviceconfig-iosexpeditedcheckinconfiguration.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: 1327
} } ```-----
v1.0 Intune Deviceconfig Iosexpeditedcheckinconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosexpeditedcheckinconfiguration-list.md
Title: "List iosExpeditedCheckinConfigurations" description: "List properties and relationships of the iosExpeditedCheckinConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [iosExpeditedCheckinConfiguration](../resources/intune-deviceconfig-iosexpeditedcheckinconfiguration.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: 1407
] } ```-----
v1.0 Intune Deviceconfig Iosexpeditedcheckinconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosexpeditedcheckinconfiguration-update.md
Title: "Update iosExpeditedCheckinConfiguration" description: "Update the properties of a iosExpeditedCheckinConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [iosExpeditedCheckinConfiguration](../resources/intune-deviceconfig-iosexpeditedcheckinconfiguration.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
"enableExpeditedCheckin": true } ```-----
v1.0 Intune Deviceconfig Iosgeneraldeviceconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosgeneraldeviceconfiguration-create.md
Title: "Create iosGeneralDeviceConfiguration" description: "Create a new iosGeneralDeviceConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [iosGeneralDeviceConfiguration](../resources/intune-deviceconfig-iosgeneraldeviceconfiguration.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: 11117
"kioskModeAppType": "appStoreApp" } ```-----
v1.0 Intune Deviceconfig Iosgeneraldeviceconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosgeneraldeviceconfiguration-delete.md
Title: "Delete iosGeneralDeviceConfiguration" description: "Deletes a iosGeneralDeviceConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [iosGeneralDeviceConfiguration](../resources/intune-deviceconfig-iosgeneraldeviceconfiguration.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 Deviceconfig Iosgeneraldeviceconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosgeneraldeviceconfiguration-get.md
Title: "Get iosGeneralDeviceConfiguration" description: "Read properties and relationships of the iosGeneralDeviceConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [iosGeneralDeviceConfiguration](../resources/intune-deviceconfig-iosgeneraldeviceconfiguration.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: 11736
} } ```-----
v1.0 Intune Deviceconfig Iosgeneraldeviceconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosgeneraldeviceconfiguration-list.md
Title: "List iosGeneralDeviceConfigurations" description: "List properties and relationships of the iosGeneralDeviceConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [iosGeneralDeviceConfiguration](../resources/intune-deviceconfig-iosgeneraldeviceconfiguration.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: 12350
] } ```-----
v1.0 Intune Deviceconfig Iosgeneraldeviceconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosgeneraldeviceconfiguration-update.md
Title: "Update iosGeneralDeviceConfiguration" description: "Update the properties of a iosGeneralDeviceConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [iosGeneralDeviceConfiguration](../resources/intune-deviceconfig-iosgeneraldeviceconfiguration.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: 11117
"kioskModeAppType": "appStoreApp" } ```-----
v1.0 Intune Deviceconfig Iosikev2vpnconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosikev2vpnconfiguration-create.md
Title: "Create iosikEv2VpnConfiguration" description: "Create a new iosikEv2VpnConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [iosikEv2VpnConfiguration](../resources/intune-deviceconfig-iosikev2vpnconfiguration.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
|server|[vpnServer](../resources/intune-deviceconfig-vpnserver.md)|VPN Server on the network. Make sure end users can access this network location. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)| |identifier|String|Identifier provided by VPN vendor when connection type is set to Custom VPN. For example: Cisco AnyConnect uses an identifier of the form com.cisco.anyconnect.applevpn.plugin Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)| |customData|[keyValue](../resources/intune-deviceconfig-keyvalue.md) collection|Custom data when connection type is set to Custom VPN. Use this field to enable functionality not supported by Intune, but available in your VPN solution. Contact your VPN vendor to learn how to add these key/value pairs. This collection can contain a maximum of 25 elements. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)|
-|customKeyValueData|[keyValuePair](../resources/intune-shared-keyvaluepair.md) collection|Custom data when connection type is set to Custom VPN. Use this field to enable functionality not supported by Intune, but available in your VPN solution. Contact your VPN vendor to learn how to add these key/value pairs. This collection can contain a maximum of 25 elements. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)|
+|customKeyValueData|[keyValuePair](../resources/intune-deviceconfig-keyvaluepair.md) collection|Custom data when connection type is set to Custom VPN. Use this field to enable functionality not supported by Intune, but available in your VPN solution. Contact your VPN vendor to learn how to add these key/value pairs. This collection can contain a maximum of 25 elements. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)|
|enableSplitTunneling|Boolean|Send all network traffic through VPN. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)| |authenticationMethod|[vpnAuthenticationMethod](../resources/intune-deviceconfig-vpnauthenticationmethod.md)|Authentication method for this VPN connection. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md). Possible values are: `certificate`, `usernameAndPassword`, `sharedSecret`, `derivedCredential`, `azureAD`.| |enablePerApp|Boolean|Setting this to true creates Per-App VPN payload which can later be associated with Apps that can trigger this VPN conneciton on the end user's iOS device. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)|
Content-Length: 5861
"mtuSizeInBytes": 14 } ```-----
v1.0 Intune Deviceconfig Iosikev2vpnconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosikev2vpnconfiguration-delete.md
Title: "Delete iosikEv2VpnConfiguration" description: "Deletes a iosikEv2VpnConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [iosikEv2VpnConfiguration](../resources/intune-deviceconfig-iosikev2vpnconfiguration.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 Deviceconfig Iosikev2vpnconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosikev2vpnconfiguration-get.md
Title: "Get iosikEv2VpnConfiguration" description: "Read properties and relationships of the iosikEv2VpnConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [iosikEv2VpnConfiguration](../resources/intune-deviceconfig-iosikev2vpnconfiguration.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: 6222
} } ```-----
v1.0 Intune Deviceconfig Iosikev2vpnconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosikev2vpnconfiguration-list.md
Title: "List iosikEv2VpnConfigurations" description: "List properties and relationships of the iosikEv2VpnConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [iosikEv2VpnConfiguration](../resources/intune-deviceconfig-iosikev2vpnconfiguration.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: 6578
] } ```-----
v1.0 Intune Deviceconfig Iosikev2vpnconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosikev2vpnconfiguration-update.md
Title: "Update iosikEv2VpnConfiguration" description: "Update the properties of a iosikEv2VpnConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [iosikEv2VpnConfiguration](../resources/intune-deviceconfig-iosikev2vpnconfiguration.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 [
|server|[vpnServer](../resources/intune-deviceconfig-vpnserver.md)|VPN Server on the network. Make sure end users can access this network location. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)| |identifier|String|Identifier provided by VPN vendor when connection type is set to Custom VPN. For example: Cisco AnyConnect uses an identifier of the form com.cisco.anyconnect.applevpn.plugin Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)| |customData|[keyValue](../resources/intune-deviceconfig-keyvalue.md) collection|Custom data when connection type is set to Custom VPN. Use this field to enable functionality not supported by Intune, but available in your VPN solution. Contact your VPN vendor to learn how to add these key/value pairs. This collection can contain a maximum of 25 elements. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)|
-|customKeyValueData|[keyValuePair](../resources/intune-shared-keyvaluepair.md) collection|Custom data when connection type is set to Custom VPN. Use this field to enable functionality not supported by Intune, but available in your VPN solution. Contact your VPN vendor to learn how to add these key/value pairs. This collection can contain a maximum of 25 elements. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)|
+|customKeyValueData|[keyValuePair](../resources/intune-deviceconfig-keyvaluepair.md) collection|Custom data when connection type is set to Custom VPN. Use this field to enable functionality not supported by Intune, but available in your VPN solution. Contact your VPN vendor to learn how to add these key/value pairs. This collection can contain a maximum of 25 elements. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)|
|enableSplitTunneling|Boolean|Send all network traffic through VPN. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)| |authenticationMethod|[vpnAuthenticationMethod](../resources/intune-deviceconfig-vpnauthenticationmethod.md)|Authentication method for this VPN connection. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md). Possible values are: `certificate`, `usernameAndPassword`, `sharedSecret`, `derivedCredential`, `azureAD`.| |enablePerApp|Boolean|Setting this to true creates Per-App VPN payload which can later be associated with Apps that can trigger this VPN conneciton on the end user's iOS device. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)|
Content-Length: 5861
"mtuSizeInBytes": 14 } ```-----
v1.0 Intune Deviceconfig Iosimportedpfxcertificateprofile Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosimportedpfxcertificateprofile-create.md
Title: "Create iosImportedPFXCertificateProfile" description: "Create a new iosImportedPFXCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [iosImportedPFXCertificateProfile](../resources/intune-deviceconfig-iosimportedpfxcertificateprofile.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: 1248
"intendedPurpose": "smimeEncryption" } ```-----
v1.0 Intune Deviceconfig Iosimportedpfxcertificateprofile Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosimportedpfxcertificateprofile-delete.md
Title: "Delete iosImportedPFXCertificateProfile" description: "Deletes a iosImportedPFXCertificateProfile."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [iosImportedPFXCertificateProfile](../resources/intune-deviceconfig-iosimportedpfxcertificateprofile.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 Deviceconfig Iosimportedpfxcertificateprofile Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosimportedpfxcertificateprofile-get.md
Title: "Get iosImportedPFXCertificateProfile" description: "Read properties and relationships of the iosImportedPFXCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [iosImportedPFXCertificateProfile](../resources/intune-deviceconfig-iosimportedpfxcertificateprofile.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: 1333
} } ```-----
v1.0 Intune Deviceconfig Iosimportedpfxcertificateprofile List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosimportedpfxcertificateprofile-list.md
Title: "List iosImportedPFXCertificateProfiles" description: "List properties and relationships of the iosImportedPFXCertificateProfile objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [iosImportedPFXCertificateProfile](../resources/intune-deviceconfig-iosimportedpfxcertificateprofile.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: 1413
] } ```-----
v1.0 Intune Deviceconfig Iosimportedpfxcertificateprofile Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosimportedpfxcertificateprofile-update.md
Title: "Update iosImportedPFXCertificateProfile" description: "Update the properties of a iosImportedPFXCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [iosImportedPFXCertificateProfile](../resources/intune-deviceconfig-iosimportedpfxcertificateprofile.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: 1248
"intendedPurpose": "smimeEncryption" } ```-----
v1.0 Intune Deviceconfig Iospkcscertificateprofile Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iospkcscertificateprofile-create.md
Title: "Create iosPkcsCertificateProfile" description: "Create a new iosPkcsCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [iosPkcsCertificateProfile](../resources/intune-deviceconfig-iospkcscertificateprofile.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: 1996
] } ```-----
v1.0 Intune Deviceconfig Iospkcscertificateprofile Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iospkcscertificateprofile-delete.md
Title: "Delete iosPkcsCertificateProfile" description: "Deletes a iosPkcsCertificateProfile."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [iosPkcsCertificateProfile](../resources/intune-deviceconfig-iospkcscertificateprofile.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 Deviceconfig Iospkcscertificateprofile Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iospkcscertificateprofile-get.md
Title: "Get iosPkcsCertificateProfile" description: "Read properties and relationships of the iosPkcsCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [iosPkcsCertificateProfile](../resources/intune-deviceconfig-iospkcscertificateprofile.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: 2115
} } ```-----
v1.0 Intune Deviceconfig Iospkcscertificateprofile List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iospkcscertificateprofile-list.md
Title: "List iosPkcsCertificateProfiles" description: "List properties and relationships of the iosPkcsCertificateProfile objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [iosPkcsCertificateProfile](../resources/intune-deviceconfig-iospkcscertificateprofile.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: 2229
] } ```-----
v1.0 Intune Deviceconfig Iospkcscertificateprofile Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iospkcscertificateprofile-update.md
Title: "Update iosPkcsCertificateProfile" description: "Update the properties of a iosPkcsCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [iosPkcsCertificateProfile](../resources/intune-deviceconfig-iospkcscertificateprofile.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: 1996
] } ```-----
v1.0 Intune Deviceconfig Iosscepcertificateprofile Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosscepcertificateprofile-create.md
Title: "Create iosScepCertificateProfile" description: "Create a new iosScepCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [iosScepCertificateProfile](../resources/intune-deviceconfig-iosscepcertificateprofile.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: 2104
] } ```------
v1.0 Intune Deviceconfig Iosscepcertificateprofile Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosscepcertificateprofile-delete.md
Title: "Delete iosScepCertificateProfile" description: "Deletes a iosScepCertificateProfile."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [iosScepCertificateProfile](../resources/intune-deviceconfig-iosscepcertificateprofile.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 Deviceconfig Iosscepcertificateprofile Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosscepcertificateprofile-get.md
Title: "Get iosScepCertificateProfile" description: "Read properties and relationships of the iosScepCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [iosScepCertificateProfile](../resources/intune-deviceconfig-iosscepcertificateprofile.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: 2241
} } ```-----
v1.0 Intune Deviceconfig Iosscepcertificateprofile List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosscepcertificateprofile-list.md
Title: "List iosScepCertificateProfiles" description: "List properties and relationships of the iosScepCertificateProfile objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [iosScepCertificateProfile](../resources/intune-deviceconfig-iosscepcertificateprofile.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: 2373
] } ```-----
v1.0 Intune Deviceconfig Iosscepcertificateprofile Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosscepcertificateprofile-update.md
Title: "Update iosScepCertificateProfile" description: "Update the properties of a iosScepCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [iosScepCertificateProfile](../resources/intune-deviceconfig-iosscepcertificateprofile.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: 2104
] } ```------
v1.0 Intune Deviceconfig Iostrustedrootcertificate Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iostrustedrootcertificate-create.md
Title: "Create iosTrustedRootCertificate" description: "Create a new iosTrustedRootCertificate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [iosTrustedRootCertificate](../resources/intune-deviceconfig-iostrustedrootcertificate.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: 1308
"certFileName": "Cert File Name value" } ```-----
v1.0 Intune Deviceconfig Iostrustedrootcertificate Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iostrustedrootcertificate-delete.md
Title: "Delete iosTrustedRootCertificate" description: "Deletes a iosTrustedRootCertificate."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [iosTrustedRootCertificate](../resources/intune-deviceconfig-iostrustedrootcertificate.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 Deviceconfig Iostrustedrootcertificate Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iostrustedrootcertificate-get.md
Title: "Get iosTrustedRootCertificate" description: "Read properties and relationships of the iosTrustedRootCertificate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [iosTrustedRootCertificate](../resources/intune-deviceconfig-iostrustedrootcertificate.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: 1395
} } ```-----
v1.0 Intune Deviceconfig Iostrustedrootcertificate List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iostrustedrootcertificate-list.md
Title: "List iosTrustedRootCertificates" description: "List properties and relationships of the iosTrustedRootCertificate objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [iosTrustedRootCertificate](../resources/intune-deviceconfig-iostrustedrootcertificate.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: 1477
] } ```-----
v1.0 Intune Deviceconfig Iostrustedrootcertificate Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iostrustedrootcertificate-update.md
Title: "Update iosTrustedRootCertificate" description: "Update the properties of a iosTrustedRootCertificate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [iosTrustedRootCertificate](../resources/intune-deviceconfig-iostrustedrootcertificate.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: 1308
"certFileName": "Cert File Name value" } ```-----
v1.0 Intune Deviceconfig Iosupdateconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosupdateconfiguration-create.md
Title: "Create iosUpdateConfiguration" description: "Create a new iosUpdateConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [iosUpdateConfiguration](../resources/intune-deviceconfig-iosupdateconfiguration.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: 1768
] } ```-----
v1.0 Intune Deviceconfig Iosupdateconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosupdateconfiguration-delete.md
Title: "Delete iosUpdateConfiguration" description: "Deletes a iosUpdateConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [iosUpdateConfiguration](../resources/intune-deviceconfig-iosupdateconfiguration.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 Deviceconfig Iosupdateconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosupdateconfiguration-get.md
Title: "Get iosUpdateConfiguration" description: "Read properties and relationships of the iosUpdateConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [iosUpdateConfiguration](../resources/intune-deviceconfig-iosupdateconfiguration.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: 1889
} } ```-----
v1.0 Intune Deviceconfig Iosupdateconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosupdateconfiguration-list.md
Title: "List iosUpdateConfigurations" description: "List properties and relationships of the iosUpdateConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [iosUpdateConfiguration](../resources/intune-deviceconfig-iosupdateconfiguration.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: 2005
] } ```-----
v1.0 Intune Deviceconfig Iosupdateconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosupdateconfiguration-update.md
Title: "Update iosUpdateConfiguration" description: "Update the properties of a iosUpdateConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [iosUpdateConfiguration](../resources/intune-deviceconfig-iosupdateconfiguration.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: 1768
] } ```-----
v1.0 Intune Deviceconfig Iosupdatedevicestatus Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosupdatedevicestatus-create.md
Title: "Create iosUpdateDeviceStatus" description: "Create a new iosUpdateDeviceStatus object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [iosUpdateDeviceStatus](../resources/intune-deviceconfig-iosupdatedevicestatus.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: 619
"userPrincipalName": "User Principal Name value" } ```-----
v1.0 Intune Deviceconfig Iosupdatedevicestatus Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosupdatedevicestatus-delete.md
Title: "Delete iosUpdateDeviceStatus" description: "Deletes a iosUpdateDeviceStatus."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [iosUpdateDeviceStatus](../resources/intune-deviceconfig-iosupdatedevicestatus.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 Deviceconfig Iosupdatedevicestatus Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosupdatedevicestatus-get.md
Title: "Get iosUpdateDeviceStatus" description: "Read properties and relationships of the iosUpdateDeviceStatus object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [iosUpdateDeviceStatus](../resources/intune-deviceconfig-iosupdatedevicestatus.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: 666
} } ```-----
v1.0 Intune Deviceconfig Iosupdatedevicestatus List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosupdatedevicestatus-list.md
Title: "List iosUpdateDeviceStatuses" description: "List properties and relationships of the iosUpdateDeviceStatus objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [iosUpdateDeviceStatus](../resources/intune-deviceconfig-iosupdatedevicestatus.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: 708
] } ```-----
v1.0 Intune Deviceconfig Iosupdatedevicestatus Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosupdatedevicestatus-update.md
Title: "Update iosUpdateDeviceStatus" description: "Update the properties of a iosUpdateDeviceStatus object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [iosUpdateDeviceStatus](../resources/intune-deviceconfig-iosupdatedevicestatus.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: 619
"userPrincipalName": "User Principal Name value" } ```-----
v1.0 Intune Deviceconfig Iosvpnconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosvpnconfiguration-create.md
Title: "Create iosVpnConfiguration" description: "Create a new iosVpnConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [iosVpnConfiguration](../resources/intune-deviceconfig-iosvpnconfiguration.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
|server|[vpnServer](../resources/intune-deviceconfig-vpnserver.md)|VPN Server on the network. Make sure end users can access this network location. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)| |identifier|String|Identifier provided by VPN vendor when connection type is set to Custom VPN. For example: Cisco AnyConnect uses an identifier of the form com.cisco.anyconnect.applevpn.plugin Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)| |customData|[keyValue](../resources/intune-deviceconfig-keyvalue.md) collection|Custom data when connection type is set to Custom VPN. Use this field to enable functionality not supported by Intune, but available in your VPN solution. Contact your VPN vendor to learn how to add these key/value pairs. This collection can contain a maximum of 25 elements. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)|
-|customKeyValueData|[keyValuePair](../resources/intune-shared-keyvaluepair.md) collection|Custom data when connection type is set to Custom VPN. Use this field to enable functionality not supported by Intune, but available in your VPN solution. Contact your VPN vendor to learn how to add these key/value pairs. This collection can contain a maximum of 25 elements. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)|
+|customKeyValueData|[keyValuePair](../resources/intune-deviceconfig-keyvaluepair.md) collection|Custom data when connection type is set to Custom VPN. Use this field to enable functionality not supported by Intune, but available in your VPN solution. Contact your VPN vendor to learn how to add these key/value pairs. This collection can contain a maximum of 25 elements. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)|
|enableSplitTunneling|Boolean|Send all network traffic through VPN. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)| |authenticationMethod|[vpnAuthenticationMethod](../resources/intune-deviceconfig-vpnauthenticationmethod.md)|Authentication method for this VPN connection. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md). Possible values are: `certificate`, `usernameAndPassword`, `sharedSecret`, `derivedCredential`, `azureAD`.| |enablePerApp|Boolean|Setting this to true creates Per-App VPN payload which can later be associated with Apps that can trigger this VPN conneciton on the end user's iOS device. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)|
Content-Length: 3667
"microsoftTunnelSiteId": "Microsoft Tunnel Site Id value" } ```-----
v1.0 Intune Deviceconfig Iosvpnconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosvpnconfiguration-delete.md
Title: "Delete iosVpnConfiguration" description: "Deletes a iosVpnConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [iosVpnConfiguration](../resources/intune-deviceconfig-iosvpnconfiguration.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 Deviceconfig Iosvpnconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosvpnconfiguration-get.md
Title: "Get iosVpnConfiguration" description: "Read properties and relationships of the iosVpnConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [iosVpnConfiguration](../resources/intune-deviceconfig-iosvpnconfiguration.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: 3924
} } ```-----
v1.0 Intune Deviceconfig Iosvpnconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosvpnconfiguration-list.md
Title: "List iosVpnConfigurations" description: "List properties and relationships of the iosVpnConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [iosVpnConfiguration](../resources/intune-deviceconfig-iosvpnconfiguration.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: 4176
] } ```-----
v1.0 Intune Deviceconfig Iosvpnconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-iosvpnconfiguration-update.md
Title: "Update iosVpnConfiguration" description: "Update the properties of a iosVpnConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [iosVpnConfiguration](../resources/intune-deviceconfig-iosvpnconfiguration.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 [
|server|[vpnServer](../resources/intune-deviceconfig-vpnserver.md)|VPN Server on the network. Make sure end users can access this network location. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)| |identifier|String|Identifier provided by VPN vendor when connection type is set to Custom VPN. For example: Cisco AnyConnect uses an identifier of the form com.cisco.anyconnect.applevpn.plugin Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)| |customData|[keyValue](../resources/intune-deviceconfig-keyvalue.md) collection|Custom data when connection type is set to Custom VPN. Use this field to enable functionality not supported by Intune, but available in your VPN solution. Contact your VPN vendor to learn how to add these key/value pairs. This collection can contain a maximum of 25 elements. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)|
-|customKeyValueData|[keyValuePair](../resources/intune-shared-keyvaluepair.md) collection|Custom data when connection type is set to Custom VPN. Use this field to enable functionality not supported by Intune, but available in your VPN solution. Contact your VPN vendor to learn how to add these key/value pairs. This collection can contain a maximum of 25 elements. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)|
+|customKeyValueData|[keyValuePair](../resources/intune-deviceconfig-keyvaluepair.md) collection|Custom data when connection type is set to Custom VPN. Use this field to enable functionality not supported by Intune, but available in your VPN solution. Contact your VPN vendor to learn how to add these key/value pairs. This collection can contain a maximum of 25 elements. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)|
|enableSplitTunneling|Boolean|Send all network traffic through VPN. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)| |authenticationMethod|[vpnAuthenticationMethod](../resources/intune-deviceconfig-vpnauthenticationmethod.md)|Authentication method for this VPN connection. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md). Possible values are: `certificate`, `usernameAndPassword`, `sharedSecret`, `derivedCredential`, `azureAD`.| |enablePerApp|Boolean|Setting this to true creates Per-App VPN payload which can later be associated with Apps that can trigger this VPN conneciton on the end user's iOS device. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)|
Content-Length: 3667
"microsoftTunnelSiteId": "Microsoft Tunnel Site Id value" } ```-----
v1.0 Intune Deviceconfig Ioswificonfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-ioswificonfiguration-create.md
Title: "Create iosWiFiConfiguration" description: "Create a new iosWiFiConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [iosWiFiConfiguration](../resources/intune-deviceconfig-ioswificonfiguration.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: 1663
"preSharedKey": "Pre Shared Key value" } ```-----
v1.0 Intune Deviceconfig Ioswificonfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-ioswificonfiguration-delete.md
Title: "Delete iosWiFiConfiguration" description: "Deletes a iosWiFiConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [iosWiFiConfiguration](../resources/intune-deviceconfig-ioswificonfiguration.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 Deviceconfig Ioswificonfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-ioswificonfiguration-get.md
Title: "Get iosWiFiConfiguration" description: "Read properties and relationships of the iosWiFiConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [iosWiFiConfiguration](../resources/intune-deviceconfig-ioswificonfiguration.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: 1768
} } ```-----
v1.0 Intune Deviceconfig Ioswificonfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-ioswificonfiguration-list.md
Title: "List iosWiFiConfigurations" description: "List properties and relationships of the iosWiFiConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [iosWiFiConfiguration](../resources/intune-deviceconfig-ioswificonfiguration.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: 1868
] } ```-----
v1.0 Intune Deviceconfig Ioswificonfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-ioswificonfiguration-update.md
Title: "Update iosWiFiConfiguration" description: "Update the properties of a iosWiFiConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [iosWiFiConfiguration](../resources/intune-deviceconfig-ioswificonfiguration.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: 1663
"preSharedKey": "Pre Shared Key value" } ```-----
v1.0 Intune Deviceconfig Macoscertificateprofilebase Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macoscertificateprofilebase-get.md
Title: "Get macOSCertificateProfileBase" description: "Read properties and relationships of the macOSCertificateProfileBase object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [macOSCertificateProfileBase](../resources/intune-deviceconfig-macoscertificateprofilebase.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: 1514
} } ```-----
v1.0 Intune Deviceconfig Macoscertificateprofilebase List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macoscertificateprofilebase-list.md
Title: "List macOSCertificateProfileBases" description: "List properties and relationships of the macOSCertificateProfileBase objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [macOSCertificateProfileBase](../resources/intune-deviceconfig-macoscertificateprofilebase.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: 1602
] } ```-----
v1.0 Intune Deviceconfig Macoscompliancepolicy Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macoscompliancepolicy-create.md
Title: "Create macOSCompliancePolicy" description: "Create a new macOSCompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [macOSCompliancePolicy](../resources/intune-deviceconfig-macoscompliancepolicy.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: 1318
"firewallEnableStealthMode": true } ```-----
v1.0 Intune Deviceconfig Macoscompliancepolicy Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macoscompliancepolicy-delete.md
Title: "Delete macOSCompliancePolicy" description: "Deletes a macOSCompliancePolicy."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [macOSCompliancePolicy](../resources/intune-deviceconfig-macoscompliancepolicy.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 Deviceconfig Macoscompliancepolicy Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macoscompliancepolicy-get.md
Title: "Get macOSCompliancePolicy" description: "Read properties and relationships of the macOSCompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [macOSCompliancePolicy](../resources/intune-deviceconfig-macoscompliancepolicy.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: 1399
} } ```-----
v1.0 Intune Deviceconfig Macoscompliancepolicy List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macoscompliancepolicy-list.md
Title: "List macOSCompliancePolicies" description: "List properties and relationships of the macOSCompliancePolicy objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [macOSCompliancePolicy](../resources/intune-deviceconfig-macoscompliancepolicy.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: 1475
] } ```-----
v1.0 Intune Deviceconfig Macoscompliancepolicy Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macoscompliancepolicy-update.md
Title: "Update macOSCompliancePolicy" description: "Update the properties of a macOSCompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [macOSCompliancePolicy](../resources/intune-deviceconfig-macoscompliancepolicy.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: 1318
"firewallEnableStealthMode": true } ```-----
v1.0 Intune Deviceconfig Macoscustomappconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macoscustomappconfiguration-create.md
Title: "Create macOSCustomAppConfiguration" description: "Create a new macOSCustomAppConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [macOSCustomAppConfiguration](../resources/intune-deviceconfig-macoscustomappconfiguration.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: 1321
"configurationXml": "Y29uZmlndXJhdGlvblhtbA==" } ```-----
v1.0 Intune Deviceconfig Macoscustomappconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macoscustomappconfiguration-delete.md
Title: "Delete macOSCustomAppConfiguration" description: "Deletes a macOSCustomAppConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [macOSCustomAppConfiguration](../resources/intune-deviceconfig-macoscustomappconfiguration.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 Deviceconfig Macoscustomappconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macoscustomappconfiguration-get.md
Title: "Get macOSCustomAppConfiguration" description: "Read properties and relationships of the macOSCustomAppConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [macOSCustomAppConfiguration](../resources/intune-deviceconfig-macoscustomappconfiguration.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: 1410
} } ```-----
v1.0 Intune Deviceconfig Macoscustomappconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macoscustomappconfiguration-list.md
Title: "List macOSCustomAppConfigurations" description: "List properties and relationships of the macOSCustomAppConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [macOSCustomAppConfiguration](../resources/intune-deviceconfig-macoscustomappconfiguration.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: 1494
] } ```-----
v1.0 Intune Deviceconfig Macoscustomappconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macoscustomappconfiguration-update.md
Title: "Update macOSCustomAppConfiguration" description: "Update the properties of a macOSCustomAppConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [macOSCustomAppConfiguration](../resources/intune-deviceconfig-macoscustomappconfiguration.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: 1321
"configurationXml": "Y29uZmlndXJhdGlvblhtbA==" } ```-----
v1.0 Intune Deviceconfig Macoscustomconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macoscustomconfiguration-create.md
Title: "Create macOSCustomConfiguration" description: "Create a new macOSCustomConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [macOSCustomConfiguration](../resources/intune-deviceconfig-macoscustomconfiguration.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: 1357
"deploymentChannel": "userChannel" } ```-----
v1.0 Intune Deviceconfig Macoscustomconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macoscustomconfiguration-delete.md
Title: "Delete macOSCustomConfiguration" description: "Deletes a macOSCustomConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [macOSCustomConfiguration](../resources/intune-deviceconfig-macoscustomconfiguration.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 Deviceconfig Macoscustomconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macoscustomconfiguration-get.md
Title: "Get macOSCustomConfiguration" description: "Read properties and relationships of the macOSCustomConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [macOSCustomConfiguration](../resources/intune-deviceconfig-macoscustomconfiguration.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: 1448
} } ```-----
v1.0 Intune Deviceconfig Macoscustomconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macoscustomconfiguration-list.md
Title: "List macOSCustomConfigurations" description: "List properties and relationships of the macOSCustomConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [macOSCustomConfiguration](../resources/intune-deviceconfig-macoscustomconfiguration.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: 1534
] } ```-----
v1.0 Intune Deviceconfig Macoscustomconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macoscustomconfiguration-update.md
Title: "Update macOSCustomConfiguration" description: "Update the properties of a macOSCustomConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [macOSCustomConfiguration](../resources/intune-deviceconfig-macoscustomconfiguration.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: 1357
"deploymentChannel": "userChannel" } ```-----
v1.0 Intune Deviceconfig Macosdevicefeaturesconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macosdevicefeaturesconfiguration-create.md
Title: "Create macOSDeviceFeaturesConfiguration" description: "Create a new macOSDeviceFeaturesConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [macOSDeviceFeaturesConfiguration](../resources/intune-deviceconfig-macosdevicefeaturesconfiguration.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 m
|powerOffDisabledWhileLoggedIn|Boolean|Whether the Power Off menu item on the login window will be disabled while the user is logged in.| |logOutDisabledWhileLoggedIn|Boolean|Whether the Log Out menu item on the login window will be disabled while the user is logged in.| |screenLockDisableImmediate|Boolean|Whether to disable the immediate screen lock functions.|
-|associatedDomains|[keyValuePair](../resources/intune-shared-keyvaluepair.md) collection|DEPRECATED: use appAssociatedDomains instead. Gets or sets a list that maps apps to their associated domains. The key should match the app's ID, and the value should be a string in the form of "service:domain" where domain is a fully qualified hostname (e.g. webcredentials:example.com). This collection can contain a maximum of 500 elements.|
+|associatedDomains|[keyValuePair](../resources/intune-deviceconfig-keyvaluepair.md) collection|DEPRECATED: use appAssociatedDomains instead. Gets or sets a list that maps apps to their associated domains. The key should match the app's ID, and the value should be a string in the form of "service:domain" where domain is a fully qualified hostname (e.g. webcredentials:example.com). This collection can contain a maximum of 500 elements.|
|appAssociatedDomains|[macOSAssociatedDomainsItem](../resources/intune-deviceconfig-macosassociateddomainsitem.md) collection|Gets or sets a list that maps apps to their associated domains. Application identifiers must be unique. This collection can contain a maximum of 500 elements.| |singleSignOnExtension|[singleSignOnExtension](../resources/intune-deviceconfig-singlesignonextension.md)|Gets or sets a single sign-on extension profile. Deprecated: use MacOSSingleSignOnExtension instead.| |macOSSingleSignOnExtension|[macOSSingleSignOnExtension](../resources/intune-deviceconfig-macossinglesignonextension.md)|Gets or sets a single sign-on extension profile.|
Content-Length: 6261
"contentCachingPort": 2 } ```-----
v1.0 Intune Deviceconfig Macosdevicefeaturesconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macosdevicefeaturesconfiguration-delete.md
Title: "Delete macOSDeviceFeaturesConfiguration" description: "Deletes a macOSDeviceFeaturesConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [macOSDeviceFeaturesConfiguration](../resources/intune-deviceconfig-macosdevicefeaturesconfiguration.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 Deviceconfig Macosdevicefeaturesconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macosdevicefeaturesconfiguration-get.md
Title: "Get macOSDeviceFeaturesConfiguration" description: "Read properties and relationships of the macOSDeviceFeaturesConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [macOSDeviceFeaturesConfiguration](../resources/intune-deviceconfig-macosdevicefeaturesconfiguration.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: 6648
} } ```-----
v1.0 Intune Deviceconfig Macosdevicefeaturesconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macosdevicefeaturesconfiguration-list.md
Title: "List macOSDeviceFeaturesConfigurations" description: "List properties and relationships of the macOSDeviceFeaturesConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [macOSDeviceFeaturesConfiguration](../resources/intune-deviceconfig-macosdevicefeaturesconfiguration.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: 7030
] } ```-----
v1.0 Intune Deviceconfig Macosdevicefeaturesconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macosdevicefeaturesconfiguration-update.md
Title: "Update macOSDeviceFeaturesConfiguration" description: "Update the properties of a macOSDeviceFeaturesConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [macOSDeviceFeaturesConfiguration](../resources/intune-deviceconfig-macosdevicefeaturesconfiguration.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 [
|powerOffDisabledWhileLoggedIn|Boolean|Whether the Power Off menu item on the login window will be disabled while the user is logged in.| |logOutDisabledWhileLoggedIn|Boolean|Whether the Log Out menu item on the login window will be disabled while the user is logged in.| |screenLockDisableImmediate|Boolean|Whether to disable the immediate screen lock functions.|
-|associatedDomains|[keyValuePair](../resources/intune-shared-keyvaluepair.md) collection|DEPRECATED: use appAssociatedDomains instead. Gets or sets a list that maps apps to their associated domains. The key should match the app's ID, and the value should be a string in the form of "service:domain" where domain is a fully qualified hostname (e.g. webcredentials:example.com). This collection can contain a maximum of 500 elements.|
+|associatedDomains|[keyValuePair](../resources/intune-deviceconfig-keyvaluepair.md) collection|DEPRECATED: use appAssociatedDomains instead. Gets or sets a list that maps apps to their associated domains. The key should match the app's ID, and the value should be a string in the form of "service:domain" where domain is a fully qualified hostname (e.g. webcredentials:example.com). This collection can contain a maximum of 500 elements.|
|appAssociatedDomains|[macOSAssociatedDomainsItem](../resources/intune-deviceconfig-macosassociateddomainsitem.md) collection|Gets or sets a list that maps apps to their associated domains. Application identifiers must be unique. This collection can contain a maximum of 500 elements.| |singleSignOnExtension|[singleSignOnExtension](../resources/intune-deviceconfig-singlesignonextension.md)|Gets or sets a single sign-on extension profile. Deprecated: use MacOSSingleSignOnExtension instead.| |macOSSingleSignOnExtension|[macOSSingleSignOnExtension](../resources/intune-deviceconfig-macossinglesignonextension.md)|Gets or sets a single sign-on extension profile.|
Content-Length: 6261
"contentCachingPort": 2 } ```-----
v1.0 Intune Deviceconfig Macosendpointprotectionconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macosendpointprotectionconfiguration-create.md
Title: "Create macOSEndpointProtectionConfiguration" description: "Create a new macOSEndpointProtectionConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [macOSEndpointProtectionConfiguration](../resources/intune-deviceconfig-macosendpointprotectionconfiguration.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: 2958
] } ```-----
v1.0 Intune Deviceconfig Macosendpointprotectionconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macosendpointprotectionconfiguration-delete.md
Title: "Delete macOSEndpointProtectionConfiguration" description: "Deletes a macOSEndpointProtectionConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [macOSEndpointProtectionConfiguration](../resources/intune-deviceconfig-macosendpointprotectionconfiguration.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 Deviceconfig Macosendpointprotectionconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macosendpointprotectionconfiguration-get.md
Title: "Get macOSEndpointProtectionConfiguration" description: "Read properties and relationships of the macOSEndpointProtectionConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [macOSEndpointProtectionConfiguration](../resources/intune-deviceconfig-macosendpointprotectionconfiguration.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: 3117
} } ```-----
v1.0 Intune Deviceconfig Macosendpointprotectionconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macosendpointprotectionconfiguration-list.md
Title: "List macOSEndpointProtectionConfigurations" description: "List properties and relationships of the macOSEndpointProtectionConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [macOSEndpointProtectionConfiguration](../resources/intune-deviceconfig-macosendpointprotectionconfiguration.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: 3271
] } ```-----
v1.0 Intune Deviceconfig Macosendpointprotectionconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macosendpointprotectionconfiguration-update.md
Title: "Update macOSEndpointProtectionConfiguration" description: "Update the properties of a macOSEndpointProtectionConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [macOSEndpointProtectionConfiguration](../resources/intune-deviceconfig-macosendpointprotectionconfiguration.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: 2958
] } ```-----
v1.0 Intune Deviceconfig Macosenterprisewificonfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macosenterprisewificonfiguration-create.md
Title: "Create macOSEnterpriseWiFiConfiguration" description: "Create a new macOSEnterpriseWiFiConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [macOSEnterpriseWiFiConfiguration](../resources/intune-deviceconfig-macosenterprisewificonfiguration.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: 2030
"outerIdentityPrivacyTemporaryValue": "Outer Identity Privacy Temporary Value value" } ```-----
v1.0 Intune Deviceconfig Macosenterprisewificonfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macosenterprisewificonfiguration-delete.md
Title: "Delete macOSEnterpriseWiFiConfiguration" description: "Deletes a macOSEnterpriseWiFiConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [macOSEnterpriseWiFiConfiguration](../resources/intune-deviceconfig-macosenterprisewificonfiguration.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 Deviceconfig Macosenterprisewificonfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macosenterprisewificonfiguration-get.md
Title: "Get macOSEnterpriseWiFiConfiguration" description: "Read properties and relationships of the macOSEnterpriseWiFiConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [macOSEnterpriseWiFiConfiguration](../resources/intune-deviceconfig-macosenterprisewificonfiguration.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: 2149
} } ```-----
v1.0 Intune Deviceconfig Macosenterprisewificonfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macosenterprisewificonfiguration-list.md
Title: "List macOSEnterpriseWiFiConfigurations" description: "List properties and relationships of the macOSEnterpriseWiFiConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [macOSEnterpriseWiFiConfiguration](../resources/intune-deviceconfig-macosenterprisewificonfiguration.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: 2263
] } ```-----
v1.0 Intune Deviceconfig Macosenterprisewificonfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macosenterprisewificonfiguration-update.md
Title: "Update macOSEnterpriseWiFiConfiguration" description: "Update the properties of a macOSEnterpriseWiFiConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [macOSEnterpriseWiFiConfiguration](../resources/intune-deviceconfig-macosenterprisewificonfiguration.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: 2030
"outerIdentityPrivacyTemporaryValue": "Outer Identity Privacy Temporary Value value" } ```-----
v1.0 Intune Deviceconfig Macosextensionsconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macosextensionsconfiguration-create.md
Title: "Create macOSExtensionsConfiguration" description: "Create a new macOSExtensionsConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [macOSExtensionsConfiguration](../resources/intune-deviceconfig-macosextensionsconfiguration.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: 2137
] } ```-----
v1.0 Intune Deviceconfig Macosextensionsconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macosextensionsconfiguration-delete.md
Title: "Delete macOSExtensionsConfiguration" description: "Deletes a macOSExtensionsConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [macOSExtensionsConfiguration](../resources/intune-deviceconfig-macosextensionsconfiguration.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 Deviceconfig Macosextensionsconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macosextensionsconfiguration-get.md
Title: "Get macOSExtensionsConfiguration" description: "Read properties and relationships of the macOSExtensionsConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [macOSExtensionsConfiguration](../resources/intune-deviceconfig-macosextensionsconfiguration.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: 2278
} } ```-----
v1.0 Intune Deviceconfig Macosextensionsconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macosextensionsconfiguration-list.md
Title: "List macOSExtensionsConfigurations" description: "List properties and relationships of the macOSExtensionsConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [macOSExtensionsConfiguration](../resources/intune-deviceconfig-macosextensionsconfiguration.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: 2414
] } ```-----
v1.0 Intune Deviceconfig Macosextensionsconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macosextensionsconfiguration-update.md
Title: "Update macOSExtensionsConfiguration" description: "Update the properties of a macOSExtensionsConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [macOSExtensionsConfiguration](../resources/intune-deviceconfig-macosextensionsconfiguration.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: 2137
] } ```-----
v1.0 Intune Deviceconfig Macosgeneraldeviceconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macosgeneraldeviceconfiguration-create.md
Title: "Create macOSGeneralDeviceConfiguration" description: "Create a new macOSGeneralDeviceConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [macOSGeneralDeviceConfiguration](../resources/intune-deviceconfig-macosgeneraldeviceconfiguration.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: 5186
"iCloudDesktopAndDocumentsBlocked": true } ```-----
v1.0 Intune Deviceconfig Macosgeneraldeviceconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macosgeneraldeviceconfiguration-delete.md
Title: "Delete macOSGeneralDeviceConfiguration" description: "Deletes a macOSGeneralDeviceConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [macOSGeneralDeviceConfiguration](../resources/intune-deviceconfig-macosgeneraldeviceconfiguration.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 Deviceconfig Macosgeneraldeviceconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macosgeneraldeviceconfiguration-get.md
Title: "Get macOSGeneralDeviceConfiguration" description: "Read properties and relationships of the macOSGeneralDeviceConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [macOSGeneralDeviceConfiguration](../resources/intune-deviceconfig-macosgeneraldeviceconfiguration.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: 5483
} } ```-----
v1.0 Intune Deviceconfig Macosgeneraldeviceconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macosgeneraldeviceconfiguration-list.md
Title: "List macOSGeneralDeviceConfigurations" description: "List properties and relationships of the macOSGeneralDeviceConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [macOSGeneralDeviceConfiguration](../resources/intune-deviceconfig-macosgeneraldeviceconfiguration.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: 5775
] } ```-----
v1.0 Intune Deviceconfig Macosgeneraldeviceconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macosgeneraldeviceconfiguration-update.md
Title: "Update macOSGeneralDeviceConfiguration" description: "Update the properties of a macOSGeneralDeviceConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [macOSGeneralDeviceConfiguration](../resources/intune-deviceconfig-macosgeneraldeviceconfiguration.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: 5186
"iCloudDesktopAndDocumentsBlocked": true } ```-----
v1.0 Intune Deviceconfig Macosimportedpfxcertificateprofile Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macosimportedpfxcertificateprofile-create.md
Title: "Create macOSImportedPFXCertificateProfile" description: "Create a new macOSImportedPFXCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [macOSImportedPFXCertificateProfile](../resources/intune-deviceconfig-macosimportedpfxcertificateprofile.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: 1469
"intendedPurpose": "smimeEncryption" } ```-----
v1.0 Intune Deviceconfig Macosimportedpfxcertificateprofile Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macosimportedpfxcertificateprofile-delete.md
Title: "Delete macOSImportedPFXCertificateProfile" description: "Deletes a macOSImportedPFXCertificateProfile."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [macOSImportedPFXCertificateProfile](../resources/intune-deviceconfig-macosimportedpfxcertificateprofile.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 Deviceconfig Macosimportedpfxcertificateprofile Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macosimportedpfxcertificateprofile-get.md
Title: "Get macOSImportedPFXCertificateProfile" description: "Read properties and relationships of the macOSImportedPFXCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [macOSImportedPFXCertificateProfile](../resources/intune-deviceconfig-macosimportedpfxcertificateprofile.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: 1564
} } ```-----
v1.0 Intune Deviceconfig Macosimportedpfxcertificateprofile List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macosimportedpfxcertificateprofile-list.md
Title: "List macOSImportedPFXCertificateProfiles" description: "List properties and relationships of the macOSImportedPFXCertificateProfile objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [macOSImportedPFXCertificateProfile](../resources/intune-deviceconfig-macosimportedpfxcertificateprofile.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: 1654
] } ```-----
v1.0 Intune Deviceconfig Macosimportedpfxcertificateprofile Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macosimportedpfxcertificateprofile-update.md
Title: "Update macOSImportedPFXCertificateProfile" description: "Update the properties of a macOSImportedPFXCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [macOSImportedPFXCertificateProfile](../resources/intune-deviceconfig-macosimportedpfxcertificateprofile.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: 1469
"intendedPurpose": "smimeEncryption" } ```-----
v1.0 Intune Deviceconfig Macospkcscertificateprofile Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macospkcscertificateprofile-create.md
Title: "Create macOSPkcsCertificateProfile" description: "Create a new macOSPkcsCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [macOSPkcsCertificateProfile](../resources/intune-deviceconfig-macospkcscertificateprofile.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: 2029
"allowAllAppsAccess": true } ```-----
v1.0 Intune Deviceconfig Macospkcscertificateprofile Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macospkcscertificateprofile-delete.md
Title: "Delete macOSPkcsCertificateProfile" description: "Deletes a macOSPkcsCertificateProfile."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [macOSPkcsCertificateProfile](../resources/intune-deviceconfig-macospkcscertificateprofile.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 Deviceconfig Macospkcscertificateprofile Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macospkcscertificateprofile-get.md
Title: "Get macOSPkcsCertificateProfile" description: "Read properties and relationships of the macOSPkcsCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [macOSPkcsCertificateProfile](../resources/intune-deviceconfig-macospkcscertificateprofile.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: 2150
} } ```-----
v1.0 Intune Deviceconfig Macospkcscertificateprofile List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macospkcscertificateprofile-list.md
Title: "List macOSPkcsCertificateProfiles" description: "List properties and relationships of the macOSPkcsCertificateProfile objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [macOSPkcsCertificateProfile](../resources/intune-deviceconfig-macospkcscertificateprofile.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: 2266
] } ```-----
v1.0 Intune Deviceconfig Macospkcscertificateprofile Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macospkcscertificateprofile-update.md
Title: "Update macOSPkcsCertificateProfile" description: "Update the properties of a macOSPkcsCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [macOSPkcsCertificateProfile](../resources/intune-deviceconfig-macospkcscertificateprofile.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: 2029
"allowAllAppsAccess": true } ```-----
v1.0 Intune Deviceconfig Macosscepcertificateprofile Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macosscepcertificateprofile-create.md
Title: "Create macOSScepCertificateProfile" description: "Create a new macOSScepCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [macOSScepCertificateProfile](../resources/intune-deviceconfig-macosscepcertificateprofile.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: 2165
"allowAllAppsAccess": true } ```-----
v1.0 Intune Deviceconfig Macosscepcertificateprofile Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macosscepcertificateprofile-delete.md
Title: "Delete macOSScepCertificateProfile" description: "Deletes a macOSScepCertificateProfile."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [macOSScepCertificateProfile](../resources/intune-deviceconfig-macosscepcertificateprofile.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 Deviceconfig Macosscepcertificateprofile Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macosscepcertificateprofile-get.md
Title: "Get macOSScepCertificateProfile" description: "Read properties and relationships of the macOSScepCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [macOSScepCertificateProfile](../resources/intune-deviceconfig-macosscepcertificateprofile.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: 2306
} } ```-----
v1.0 Intune Deviceconfig Macosscepcertificateprofile List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macosscepcertificateprofile-list.md
Title: "List macOSScepCertificateProfiles" description: "List properties and relationships of the macOSScepCertificateProfile objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [macOSScepCertificateProfile](../resources/intune-deviceconfig-macosscepcertificateprofile.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: 2442
] } ```-----
v1.0 Intune Deviceconfig Macosscepcertificateprofile Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macosscepcertificateprofile-update.md
Title: "Update macOSScepCertificateProfile" description: "Update the properties of a macOSScepCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [macOSScepCertificateProfile](../resources/intune-deviceconfig-macosscepcertificateprofile.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: 2165
"allowAllAppsAccess": true } ```-----
v1.0 Intune Deviceconfig Macossoftwareupdateaccountsummary Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macossoftwareupdateaccountsummary-create.md
Title: "Create macOSSoftwareUpdateAccountSummary" description: "Create a new macOSSoftwareUpdateAccountSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [macOSSoftwareUpdateAccountSummary](../resources/intune-deviceconfig-macossoftwareupdateaccountsummary.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: 502
"lastUpdatedDateTime": "2017-01-01T00:00:56.8321556-08:00" } ```-----
v1.0 Intune Deviceconfig Macossoftwareupdateaccountsummary Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macossoftwareupdateaccountsummary-delete.md
Title: "Delete macOSSoftwareUpdateAccountSummary" description: "Deletes a macOSSoftwareUpdateAccountSummary."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [macOSSoftwareUpdateAccountSummary](../resources/intune-deviceconfig-macossoftwareupdateaccountsummary.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 Deviceconfig Macossoftwareupdateaccountsummary Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macossoftwareupdateaccountsummary-get.md
Title: "Get macOSSoftwareUpdateAccountSummary" description: "Read properties and relationships of the macOSSoftwareUpdateAccountSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [macOSSoftwareUpdateAccountSummary](../resources/intune-deviceconfig-macossoftwareupdateaccountsummary.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: 545
} } ```-----
v1.0 Intune Deviceconfig Macossoftwareupdateaccountsummary List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macossoftwareupdateaccountsummary-list.md
Title: "List macOSSoftwareUpdateAccountSummaries" description: "List properties and relationships of the macOSSoftwareUpdateAccountSummary objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [macOSSoftwareUpdateAccountSummary](../resources/intune-deviceconfig-macossoftwareupdateaccountsummary.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: 583
] } ```-----
v1.0 Intune Deviceconfig Macossoftwareupdateaccountsummary Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macossoftwareupdateaccountsummary-update.md
Title: "Update macOSSoftwareUpdateAccountSummary" description: "Update the properties of a macOSSoftwareUpdateAccountSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [macOSSoftwareUpdateAccountSummary](../resources/intune-deviceconfig-macossoftwareupdateaccountsummary.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: 502
"lastUpdatedDateTime": "2017-01-01T00:00:56.8321556-08:00" } ```-----
v1.0 Intune Deviceconfig Macossoftwareupdatecategorysummary Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macossoftwareupdatecategorysummary-create.md
Title: "Create macOSSoftwareUpdateCategorySummary" description: "Create a new macOSSoftwareUpdateCategorySummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [macOSSoftwareUpdateCategorySummary](../resources/intune-deviceconfig-macossoftwareupdatecategorysummary.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: 422
"lastUpdatedDateTime": "2017-01-01T00:00:56.8321556-08:00" } ```-----
v1.0 Intune Deviceconfig Macossoftwareupdatecategorysummary Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macossoftwareupdatecategorysummary-delete.md
Title: "Delete macOSSoftwareUpdateCategorySummary" description: "Deletes a macOSSoftwareUpdateCategorySummary."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [macOSSoftwareUpdateCategorySummary](../resources/intune-deviceconfig-macossoftwareupdatecategorysummary.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 Deviceconfig Macossoftwareupdatecategorysummary Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macossoftwareupdatecategorysummary-get.md
Title: "Get macOSSoftwareUpdateCategorySummary" description: "Read properties and relationships of the macOSSoftwareUpdateCategorySummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [macOSSoftwareUpdateCategorySummary](../resources/intune-deviceconfig-macossoftwareupdatecategorysummary.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: 461
} } ```-----
v1.0 Intune Deviceconfig Macossoftwareupdatecategorysummary List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macossoftwareupdatecategorysummary-list.md
Title: "List macOSSoftwareUpdateCategorySummaries" description: "List properties and relationships of the macOSSoftwareUpdateCategorySummary objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [macOSSoftwareUpdateCategorySummary](../resources/intune-deviceconfig-macossoftwareupdatecategorysummary.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: 495
] } ```-----
v1.0 Intune Deviceconfig Macossoftwareupdatecategorysummary Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macossoftwareupdatecategorysummary-update.md
Title: "Update macOSSoftwareUpdateCategorySummary" description: "Update the properties of a macOSSoftwareUpdateCategorySummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [macOSSoftwareUpdateCategorySummary](../resources/intune-deviceconfig-macossoftwareupdatecategorysummary.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: 422
"lastUpdatedDateTime": "2017-01-01T00:00:56.8321556-08:00" } ```-----
v1.0 Intune Deviceconfig Macossoftwareupdateconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macossoftwareupdateconfiguration-create.md
Title: "Create macOSSoftwareUpdateConfiguration" description: "Create a new macOSSoftwareUpdateConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [macOSSoftwareUpdateConfiguration](../resources/intune-deviceconfig-macossoftwareupdateconfiguration.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: 1714
"updateTimeWindowUtcOffsetInMinutes": 2 } ```-----
v1.0 Intune Deviceconfig Macossoftwareupdateconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macossoftwareupdateconfiguration-delete.md
Title: "Delete macOSSoftwareUpdateConfiguration" description: "Deletes a macOSSoftwareUpdateConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [macOSSoftwareUpdateConfiguration](../resources/intune-deviceconfig-macossoftwareupdateconfiguration.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 Deviceconfig Macossoftwareupdateconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macossoftwareupdateconfiguration-get.md
Title: "Get macOSSoftwareUpdateConfiguration" description: "Read properties and relationships of the macOSSoftwareUpdateConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [macOSSoftwareUpdateConfiguration](../resources/intune-deviceconfig-macossoftwareupdateconfiguration.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: 1827
} } ```-----
v1.0 Intune Deviceconfig Macossoftwareupdateconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macossoftwareupdateconfiguration-list.md
Title: "List macOSSoftwareUpdateConfigurations" description: "List properties and relationships of the macOSSoftwareUpdateConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [macOSSoftwareUpdateConfiguration](../resources/intune-deviceconfig-macossoftwareupdateconfiguration.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: 1935
] } ```-----
v1.0 Intune Deviceconfig Macossoftwareupdateconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macossoftwareupdateconfiguration-update.md
Title: "Update macOSSoftwareUpdateConfiguration" description: "Update the properties of a macOSSoftwareUpdateConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [macOSSoftwareUpdateConfiguration](../resources/intune-deviceconfig-macossoftwareupdateconfiguration.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: 1714
"updateTimeWindowUtcOffsetInMinutes": 2 } ```-----
v1.0 Intune Deviceconfig Macossoftwareupdatestatesummary Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macossoftwareupdatestatesummary-create.md
Title: "Create macOSSoftwareUpdateStateSummary" description: "Create a new macOSSoftwareUpdateStateSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [macOSSoftwareUpdateStateSummary](../resources/intune-deviceconfig-macossoftwareupdatestatesummary.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: 380
"lastUpdatedDateTime": "2017-01-01T00:00:56.8321556-08:00" } ```-----
v1.0 Intune Deviceconfig Macossoftwareupdatestatesummary Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macossoftwareupdatestatesummary-delete.md
Title: "Delete macOSSoftwareUpdateStateSummary" description: "Deletes a macOSSoftwareUpdateStateSummary."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [macOSSoftwareUpdateStateSummary](../resources/intune-deviceconfig-macossoftwareupdatestatesummary.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 Deviceconfig Macossoftwareupdatestatesummary Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macossoftwareupdatestatesummary-get.md
Title: "Get macOSSoftwareUpdateStateSummary" description: "Read properties and relationships of the macOSSoftwareUpdateStateSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [macOSSoftwareUpdateStateSummary](../resources/intune-deviceconfig-macossoftwareupdatestatesummary.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: 415
} } ```-----
v1.0 Intune Deviceconfig Macossoftwareupdatestatesummary List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macossoftwareupdatestatesummary-list.md
Title: "List macOSSoftwareUpdateStateSummaries" description: "List properties and relationships of the macOSSoftwareUpdateStateSummary objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [macOSSoftwareUpdateStateSummary](../resources/intune-deviceconfig-macossoftwareupdatestatesummary.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: 445
] } ```-----
v1.0 Intune Deviceconfig Macossoftwareupdatestatesummary Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macossoftwareupdatestatesummary-update.md
Title: "Update macOSSoftwareUpdateStateSummary" description: "Update the properties of a macOSSoftwareUpdateStateSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [macOSSoftwareUpdateStateSummary](../resources/intune-deviceconfig-macossoftwareupdatestatesummary.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: 380
"lastUpdatedDateTime": "2017-01-01T00:00:56.8321556-08:00" } ```-----
v1.0 Intune Deviceconfig Macostrustedrootcertificate Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macostrustedrootcertificate-create.md
Title: "Create macOSTrustedRootCertificate" description: "Create a new macOSTrustedRootCertificate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [macOSTrustedRootCertificate](../resources/intune-deviceconfig-macostrustedrootcertificate.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: 1310
"certFileName": "Cert File Name value" } ```-----
v1.0 Intune Deviceconfig Macostrustedrootcertificate Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macostrustedrootcertificate-delete.md
Title: "Delete macOSTrustedRootCertificate" description: "Deletes a macOSTrustedRootCertificate."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [macOSTrustedRootCertificate](../resources/intune-deviceconfig-macostrustedrootcertificate.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 Deviceconfig Macostrustedrootcertificate Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macostrustedrootcertificate-get.md
Title: "Get macOSTrustedRootCertificate" description: "Read properties and relationships of the macOSTrustedRootCertificate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [macOSTrustedRootCertificate](../resources/intune-deviceconfig-macostrustedrootcertificate.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
} } ```-----
v1.0 Intune Deviceconfig Macostrustedrootcertificate List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macostrustedrootcertificate-list.md
Title: "List macOSTrustedRootCertificates" description: "List properties and relationships of the macOSTrustedRootCertificate objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [macOSTrustedRootCertificate](../resources/intune-deviceconfig-macostrustedrootcertificate.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: 1479
] } ```-----
v1.0 Intune Deviceconfig Macostrustedrootcertificate Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macostrustedrootcertificate-update.md
Title: "Update macOSTrustedRootCertificate" description: "Update the properties of a macOSTrustedRootCertificate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [macOSTrustedRootCertificate](../resources/intune-deviceconfig-macostrustedrootcertificate.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: 1310
"certFileName": "Cert File Name value" } ```-----
v1.0 Intune Deviceconfig Macosvpnconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macosvpnconfiguration-create.md
Title: "Create macOSVpnConfiguration" description: "Create a new macOSVpnConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [macOSVpnConfiguration](../resources/intune-deviceconfig-macosvpnconfiguration.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 m
|server|[vpnServer](../resources/intune-deviceconfig-vpnserver.md)|VPN Server on the network. Make sure end users can access this network location. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)| |identifier|String|Identifier provided by VPN vendor when connection type is set to Custom VPN. For example: Cisco AnyConnect uses an identifier of the form com.cisco.anyconnect.applevpn.plugin Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)| |customData|[keyValue](../resources/intune-deviceconfig-keyvalue.md) collection|Custom data when connection type is set to Custom VPN. Use this field to enable functionality not supported by Intune, but available in your VPN solution. Contact your VPN vendor to learn how to add these key/value pairs. This collection can contain a maximum of 25 elements. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)|
-|customKeyValueData|[keyValuePair](../resources/intune-shared-keyvaluepair.md) collection|Custom data when connection type is set to Custom VPN. Use this field to enable functionality not supported by Intune, but available in your VPN solution. Contact your VPN vendor to learn how to add these key/value pairs. This collection can contain a maximum of 25 elements. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)|
+|customKeyValueData|[keyValuePair](../resources/intune-deviceconfig-keyvaluepair.md) collection|Custom data when connection type is set to Custom VPN. Use this field to enable functionality not supported by Intune, but available in your VPN solution. Contact your VPN vendor to learn how to add these key/value pairs. This collection can contain a maximum of 25 elements. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)|
|enableSplitTunneling|Boolean|Send all network traffic through VPN. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)| |authenticationMethod|[vpnAuthenticationMethod](../resources/intune-deviceconfig-vpnauthenticationmethod.md)|Authentication method for this VPN connection. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md). Possible values are: `certificate`, `usernameAndPassword`, `sharedSecret`, `derivedCredential`, `azureAD`.| |enablePerApp|Boolean|Setting this to true creates Per-App VPN payload which can later be associated with Apps that can trigger this VPN conneciton on the end user's iOS device. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)|
Content-Length: 3194
"optInToDeviceIdSharing": true } ```-----
v1.0 Intune Deviceconfig Macosvpnconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macosvpnconfiguration-delete.md
Title: "Delete macOSVpnConfiguration" description: "Deletes a macOSVpnConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [macOSVpnConfiguration](../resources/intune-deviceconfig-macosvpnconfiguration.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 Deviceconfig Macosvpnconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macosvpnconfiguration-get.md
Title: "Get macOSVpnConfiguration" description: "Read properties and relationships of the macOSVpnConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [macOSVpnConfiguration](../resources/intune-deviceconfig-macosvpnconfiguration.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: 3419
} } ```-----
v1.0 Intune Deviceconfig Macosvpnconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macosvpnconfiguration-list.md
Title: "List macOSVpnConfigurations" description: "List properties and relationships of the macOSVpnConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [macOSVpnConfiguration](../resources/intune-deviceconfig-macosvpnconfiguration.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: 3639
] } ```-----
v1.0 Intune Deviceconfig Macosvpnconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macosvpnconfiguration-update.md
Title: "Update macOSVpnConfiguration" description: "Update the properties of a macOSVpnConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [macOSVpnConfiguration](../resources/intune-deviceconfig-macosvpnconfiguration.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 [
|server|[vpnServer](../resources/intune-deviceconfig-vpnserver.md)|VPN Server on the network. Make sure end users can access this network location. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)| |identifier|String|Identifier provided by VPN vendor when connection type is set to Custom VPN. For example: Cisco AnyConnect uses an identifier of the form com.cisco.anyconnect.applevpn.plugin Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)| |customData|[keyValue](../resources/intune-deviceconfig-keyvalue.md) collection|Custom data when connection type is set to Custom VPN. Use this field to enable functionality not supported by Intune, but available in your VPN solution. Contact your VPN vendor to learn how to add these key/value pairs. This collection can contain a maximum of 25 elements. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)|
-|customKeyValueData|[keyValuePair](../resources/intune-shared-keyvaluepair.md) collection|Custom data when connection type is set to Custom VPN. Use this field to enable functionality not supported by Intune, but available in your VPN solution. Contact your VPN vendor to learn how to add these key/value pairs. This collection can contain a maximum of 25 elements. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)|
+|customKeyValueData|[keyValuePair](../resources/intune-deviceconfig-keyvaluepair.md) collection|Custom data when connection type is set to Custom VPN. Use this field to enable functionality not supported by Intune, but available in your VPN solution. Contact your VPN vendor to learn how to add these key/value pairs. This collection can contain a maximum of 25 elements. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)|
|enableSplitTunneling|Boolean|Send all network traffic through VPN. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)| |authenticationMethod|[vpnAuthenticationMethod](../resources/intune-deviceconfig-vpnauthenticationmethod.md)|Authentication method for this VPN connection. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md). Possible values are: `certificate`, `usernameAndPassword`, `sharedSecret`, `derivedCredential`, `azureAD`.| |enablePerApp|Boolean|Setting this to true creates Per-App VPN payload which can later be associated with Apps that can trigger this VPN conneciton on the end user's iOS device. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)|
Content-Length: 3194
"optInToDeviceIdSharing": true } ```-----
v1.0 Intune Deviceconfig Macoswificonfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macoswificonfiguration-create.md
Title: "Create macOSWiFiConfiguration" description: "Create a new macOSWiFiConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [macOSWiFiConfiguration](../resources/intune-deviceconfig-macoswificonfiguration.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: 1622
"preSharedKey": "Pre Shared Key value" } ```-----
v1.0 Intune Deviceconfig Macoswificonfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macoswificonfiguration-delete.md
Title: "Delete macOSWiFiConfiguration" description: "Deletes a macOSWiFiConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [macOSWiFiConfiguration](../resources/intune-deviceconfig-macoswificonfiguration.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 Deviceconfig Macoswificonfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macoswificonfiguration-get.md
Title: "Get macOSWiFiConfiguration" description: "Read properties and relationships of the macOSWiFiConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [macOSWiFiConfiguration](../resources/intune-deviceconfig-macoswificonfiguration.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: 1725
} } ```-----
v1.0 Intune Deviceconfig Macoswificonfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macoswificonfiguration-list.md
Title: "List macOSWiFiConfigurations" description: "List properties and relationships of the macOSWiFiConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [macOSWiFiConfiguration](../resources/intune-deviceconfig-macoswificonfiguration.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: 1823
] } ```-----
v1.0 Intune Deviceconfig Macoswificonfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macoswificonfiguration-update.md
Title: "Update macOSWiFiConfiguration" description: "Update the properties of a macOSWiFiConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [macOSWiFiConfiguration](../resources/intune-deviceconfig-macoswificonfiguration.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: 1622
"preSharedKey": "Pre Shared Key value" } ```-----
v1.0 Intune Deviceconfig Macoswirednetworkconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macoswirednetworkconfiguration-create.md
Title: "Create macOSWiredNetworkConfiguration" description: "Create a new macOSWiredNetworkConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [macOSWiredNetworkConfiguration](../resources/intune-deviceconfig-macoswirednetworkconfiguration.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: 1671
"enableOuterIdentityPrivacy": "Enable Outer Identity Privacy value" } ```-----
v1.0 Intune Deviceconfig Macoswirednetworkconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macoswirednetworkconfiguration-delete.md
Title: "Delete macOSWiredNetworkConfiguration" description: "Deletes a macOSWiredNetworkConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [macOSWiredNetworkConfiguration](../resources/intune-deviceconfig-macoswirednetworkconfiguration.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 Deviceconfig Macoswirednetworkconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macoswirednetworkconfiguration-get.md
Title: "Get macOSWiredNetworkConfiguration" description: "Read properties and relationships of the macOSWiredNetworkConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [macOSWiredNetworkConfiguration](../resources/intune-deviceconfig-macoswirednetworkconfiguration.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: 1774
} } ```-----
v1.0 Intune Deviceconfig Macoswirednetworkconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macoswirednetworkconfiguration-list.md
Title: "List macOSWiredNetworkConfigurations" description: "List properties and relationships of the macOSWiredNetworkConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [macOSWiredNetworkConfiguration](../resources/intune-deviceconfig-macoswirednetworkconfiguration.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: 1872
] } ```-----
v1.0 Intune Deviceconfig Macoswirednetworkconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-macoswirednetworkconfiguration-update.md
Title: "Update macOSWiredNetworkConfiguration" description: "Update the properties of a macOSWiredNetworkConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [macOSWiredNetworkConfiguration](../resources/intune-deviceconfig-macoswirednetworkconfiguration.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: 1671
"enableOuterIdentityPrivacy": "Enable Outer Identity Privacy value" } ```-----
v1.0 Intune Deviceconfig Managedalldevicecertificatestate Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-managedalldevicecertificatestate-create.md
Title: "Create managedAllDeviceCertificateState" description: "Create a new managedAllDeviceCertificateState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [managedAllDeviceCertificateState](../resources/intune-deviceconfig-managedalldevicecertificatestate.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: 869
"certificateIssuanceDateTime": "2016-12-31T23:59:41.5044473-08:00" } ```-----
v1.0 Intune Deviceconfig Managedalldevicecertificatestate Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-managedalldevicecertificatestate-delete.md
Title: "Delete managedAllDeviceCertificateState" description: "Deletes a managedAllDeviceCertificateState."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [managedAllDeviceCertificateState](../resources/intune-deviceconfig-managedalldevicecertificatestate.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 Deviceconfig Managedalldevicecertificatestate Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-managedalldevicecertificatestate-get.md
Title: "Get managedAllDeviceCertificateState" description: "Read properties and relationships of the managedAllDeviceCertificateState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [managedAllDeviceCertificateState](../resources/intune-deviceconfig-managedalldevicecertificatestate.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: 916
} } ```-----
v1.0 Intune Deviceconfig Managedalldevicecertificatestate List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-managedalldevicecertificatestate-list.md
Title: "List managedAllDeviceCertificateStates" description: "List properties and relationships of the managedAllDeviceCertificateState objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [managedAllDeviceCertificateState](../resources/intune-deviceconfig-managedalldevicecertificatestate.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: 958
] } ```-----
v1.0 Intune Deviceconfig Managedalldevicecertificatestate Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-managedalldevicecertificatestate-update.md
Title: "Update managedAllDeviceCertificateState" description: "Update the properties of a managedAllDeviceCertificateState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [managedAllDeviceCertificateState](../resources/intune-deviceconfig-managedalldevicecertificatestate.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: 869
"certificateIssuanceDateTime": "2016-12-31T23:59:41.5044473-08:00" } ```-----
v1.0 Intune Deviceconfig Manageddevicecertificatestate Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-manageddevicecertificatestate-create.md
Title: "Create managedDeviceCertificateState" description: "Create a new managedDeviceCertificateState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [managedDeviceCertificateState](../resources/intune-deviceconfig-manageddevicecertificatestate.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: 1566
"certificateErrorCode": 4 } ```-----
v1.0 Intune Deviceconfig Manageddevicecertificatestate Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-manageddevicecertificatestate-delete.md
Title: "Delete managedDeviceCertificateState" description: "Deletes a managedDeviceCertificateState."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [managedDeviceCertificateState](../resources/intune-deviceconfig-manageddevicecertificatestate.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 Deviceconfig Manageddevicecertificatestate Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-manageddevicecertificatestate-get.md
Title: "Get managedDeviceCertificateState" description: "Read properties and relationships of the managedDeviceCertificateState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [managedDeviceCertificateState](../resources/intune-deviceconfig-manageddevicecertificatestate.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: 1637
} } ```-----
v1.0 Intune Deviceconfig Manageddevicecertificatestate List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-manageddevicecertificatestate-list.md
Title: "List managedDeviceCertificateStates" description: "List properties and relationships of the managedDeviceCertificateState objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [managedDeviceCertificateState](../resources/intune-deviceconfig-manageddevicecertificatestate.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: 1703
] } ```-----
v1.0 Intune Deviceconfig Manageddevicecertificatestate Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-manageddevicecertificatestate-update.md
Title: "Update managedDeviceCertificateState" description: "Update the properties of a managedDeviceCertificateState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [managedDeviceCertificateState](../resources/intune-deviceconfig-manageddevicecertificatestate.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: 1566
"certificateErrorCode": 4 } ```-----
v1.0 Intune Deviceconfig Manageddeviceencryptionstate Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-manageddeviceencryptionstate-create.md
Title: "Create managedDeviceEncryptionState" description: "Create a new managedDeviceEncryptionState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [managedDeviceEncryptionState](../resources/intune-deviceconfig-manageddeviceencryptionstate.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: 753
] } ```-----
v1.0 Intune Deviceconfig Manageddeviceencryptionstate Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-manageddeviceencryptionstate-delete.md
Title: "Delete managedDeviceEncryptionState" description: "Deletes a managedDeviceEncryptionState."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [managedDeviceEncryptionState](../resources/intune-deviceconfig-manageddeviceencryptionstate.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 Deviceconfig Manageddeviceencryptionstate Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-manageddeviceencryptionstate-get.md
Title: "Get managedDeviceEncryptionState" description: "Read properties and relationships of the managedDeviceEncryptionState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [managedDeviceEncryptionState](../resources/intune-deviceconfig-manageddeviceencryptionstate.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: 810
} } ```-----
v1.0 Intune Deviceconfig Manageddeviceencryptionstate List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-manageddeviceencryptionstate-list.md
Title: "List managedDeviceEncryptionStates" description: "List properties and relationships of the managedDeviceEncryptionState objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [managedDeviceEncryptionState](../resources/intune-deviceconfig-manageddeviceencryptionstate.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: 862
] } ```-----
v1.0 Intune Deviceconfig Manageddeviceencryptionstate Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-manageddeviceencryptionstate-update.md
Title: "Update managedDeviceEncryptionState" description: "Update the properties of a managedDeviceEncryptionState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [managedDeviceEncryptionState](../resources/intune-deviceconfig-manageddeviceencryptionstate.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: 753
] } ```-----
v1.0 Intune Deviceconfig Ndesconnector Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-ndesconnector-create.md
Title: "Create ndesConnector" description: "Create a new ndesConnector object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [ndesConnector](../resources/intune-deviceconfig-ndesconnector.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: 443
"connectorVersion": "Connector Version value" } ```-----
v1.0 Intune Deviceconfig Ndesconnector Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-ndesconnector-delete.md
Title: "Delete ndesConnector" description: "Deletes a ndesConnector."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [ndesConnector](../resources/intune-deviceconfig-ndesconnector.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 Deviceconfig Ndesconnector Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-ndesconnector-get.md
Title: "Get ndesConnector" description: "Read properties and relationships of the ndesConnector object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [ndesConnector](../resources/intune-deviceconfig-ndesconnector.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: 484
} } ```-----
v1.0 Intune Deviceconfig Ndesconnector List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-ndesconnector-list.md
Title: "List ndesConnectors" description: "List properties and relationships of the ndesConnector objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [ndesConnector](../resources/intune-deviceconfig-ndesconnector.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: 520
] } ```-----
v1.0 Intune Deviceconfig Ndesconnector Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-ndesconnector-update.md
Title: "Update ndesConnector" description: "Update the properties of a ndesConnector object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [ndesConnector](../resources/intune-deviceconfig-ndesconnector.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: 443
"connectorVersion": "Connector Version value" } ```-----
v1.0 Intune Deviceconfig Restrictedappsviolation Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-restrictedappsviolation-create.md
Title: "Create restrictedAppsViolation" description: "Create a new restrictedAppsViolation object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [restrictedAppsViolation](../resources/intune-deviceconfig-restrictedappsviolation.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 Deviceconfig Restrictedappsviolation Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-restrictedappsviolation-delete.md
Title: "Delete restrictedAppsViolation" description: "Deletes a restrictedAppsViolation."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [restrictedAppsViolation](../resources/intune-deviceconfig-restrictedappsviolation.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 Deviceconfig Restrictedappsviolation Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-restrictedappsviolation-get.md
Title: "Get restrictedAppsViolation" description: "Read properties and relationships of the restrictedAppsViolation object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [restrictedAppsViolation](../resources/intune-deviceconfig-restrictedappsviolation.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: 664
} } ```-----
v1.0 Intune Deviceconfig Restrictedappsviolation List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-restrictedappsviolation-list.md
Title: "List restrictedAppsViolations" description: "List properties and relationships of the restrictedAppsViolation objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [restrictedAppsViolation](../resources/intune-deviceconfig-restrictedappsviolation.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: 710
] } ```-----
v1.0 Intune Deviceconfig Restrictedappsviolation Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-restrictedappsviolation-update.md
Title: "Update restrictedAppsViolation" description: "Update the properties of a restrictedAppsViolation object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [restrictedAppsViolation](../resources/intune-deviceconfig-restrictedappsviolation.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 Deviceconfig Settingstatedevicesummary Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-settingstatedevicesummary-create.md
Title: "Create settingStateDeviceSummary" description: "Create a new settingStateDeviceSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [settingStateDeviceSummary](../resources/intune-deviceconfig-settingstatedevicesummary.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
"conflictDeviceCount": 3 } ```-----
v1.0 Intune Deviceconfig Settingstatedevicesummary Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-settingstatedevicesummary-delete.md
Title: "Delete settingStateDeviceSummary" description: "Deletes a settingStateDeviceSummary."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [settingStateDeviceSummary](../resources/intune-deviceconfig-settingstatedevicesummary.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 Deviceconfig Settingstatedevicesummary Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-settingstatedevicesummary-get.md
Title: "Get settingStateDeviceSummary" description: "Read properties and relationships of the settingStateDeviceSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [settingStateDeviceSummary](../resources/intune-deviceconfig-settingstatedevicesummary.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 Deviceconfig Settingstatedevicesummary List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-settingstatedevicesummary-list.md
Title: "List settingStateDeviceSummaries" description: "List properties and relationships of the settingStateDeviceSummary objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [settingStateDeviceSummary](../resources/intune-deviceconfig-settingstatedevicesummary.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: 486
] } ```-----
v1.0 Intune Deviceconfig Settingstatedevicesummary Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-settingstatedevicesummary-update.md
Title: "Update settingStateDeviceSummary" description: "Update the properties of a settingStateDeviceSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [settingStateDeviceSummary](../resources/intune-deviceconfig-settingstatedevicesummary.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
"conflictDeviceCount": 3 } ```-----
v1.0 Intune Deviceconfig Sharedpcconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-sharedpcconfiguration-create.md
Title: "Create sharedPCConfiguration" description: "Create a new sharedPCConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [sharedPCConfiguration](../resources/intune-deviceconfig-sharedpcconfiguration.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: 2092
"fastFirstSignIn": "enabled" } ```-----
v1.0 Intune Deviceconfig Sharedpcconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-sharedpcconfiguration-delete.md
Title: "Delete sharedPCConfiguration" description: "Deletes a sharedPCConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [sharedPCConfiguration](../resources/intune-deviceconfig-sharedpcconfiguration.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 Deviceconfig Sharedpcconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-sharedpcconfiguration-get.md
Title: "Get sharedPCConfiguration" description: "Read properties and relationships of the sharedPCConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [sharedPCConfiguration](../resources/intune-deviceconfig-sharedpcconfiguration.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: 2223
} } ```-----
v1.0 Intune Deviceconfig Sharedpcconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-sharedpcconfiguration-list.md
Title: "List sharedPCConfigurations" description: "List properties and relationships of the sharedPCConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [sharedPCConfiguration](../resources/intune-deviceconfig-sharedpcconfiguration.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: 2349
] } ```-----
v1.0 Intune Deviceconfig Sharedpcconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-sharedpcconfiguration-update.md
Title: "Update sharedPCConfiguration" description: "Update the properties of a sharedPCConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [sharedPCConfiguration](../resources/intune-deviceconfig-sharedpcconfiguration.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: 2092
"fastFirstSignIn": "enabled" } ```-----
v1.0 Intune Deviceconfig Softwareupdatestatussummary Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-softwareupdatestatussummary-get.md
Title: "Get softwareUpdateStatusSummary" description: "Read properties and relationships of the softwareUpdateStatusSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [softwareUpdateStatusSummary](../resources/intune-deviceconfig-softwareupdatestatussummary.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: 620
} } ```-----
v1.0 Intune Deviceconfig Softwareupdatestatussummary Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-softwareupdatestatussummary-update.md
Title: "Update softwareUpdateStatusSummary" description: "Update the properties of a softwareUpdateStatusSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [softwareUpdateStatusSummary](../resources/intune-deviceconfig-softwareupdatestatussummary.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
"notApplicableUserCount": 6 } ```-----
v1.0 Intune Deviceconfig Unsupporteddeviceconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-unsupporteddeviceconfiguration-create.md
Title: "Create unsupportedDeviceConfiguration" description: "Create a new unsupportedDeviceConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [unsupportedDeviceConfiguration](../resources/intune-deviceconfig-unsupporteddeviceconfiguration.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: 1463
] } ```-----
v1.0 Intune Deviceconfig Unsupporteddeviceconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-unsupporteddeviceconfiguration-delete.md
Title: "Delete unsupportedDeviceConfiguration" description: "Deletes a unsupportedDeviceConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [unsupportedDeviceConfiguration](../resources/intune-deviceconfig-unsupporteddeviceconfiguration.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 Deviceconfig Unsupporteddeviceconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-unsupporteddeviceconfiguration-get.md
Title: "Get unsupportedDeviceConfiguration" description: "Read properties and relationships of the unsupportedDeviceConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [unsupportedDeviceConfiguration](../resources/intune-deviceconfig-unsupporteddeviceconfiguration.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: 1562
} } ```-----
v1.0 Intune Deviceconfig Unsupporteddeviceconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-unsupporteddeviceconfiguration-list.md
Title: "List unsupportedDeviceConfigurations" description: "List properties and relationships of the unsupportedDeviceConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [unsupportedDeviceConfiguration](../resources/intune-deviceconfig-unsupporteddeviceconfiguration.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: 1656
] } ```-----
v1.0 Intune Deviceconfig Unsupporteddeviceconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-unsupporteddeviceconfiguration-update.md
Title: "Update unsupportedDeviceConfiguration" description: "Update the properties of a unsupportedDeviceConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [unsupportedDeviceConfiguration](../resources/intune-deviceconfig-unsupporteddeviceconfiguration.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: 1463
] } ```-----
v1.0 Intune Deviceconfig Vpnconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-vpnconfiguration-get.md
Title: "Get vpnConfiguration" description: "Read properties and relationships of the vpnConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [vpnConfiguration](../resources/intune-deviceconfig-vpnconfiguration.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: 1642
} } ```-----
v1.0 Intune Deviceconfig Vpnconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-vpnconfiguration-list.md
Title: "List vpnConfigurations" description: "List properties and relationships of the vpnConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [vpnConfiguration](../resources/intune-deviceconfig-vpnconfiguration.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: 1744
] } ```-----
v1.0 Intune Deviceconfig Windows10certificateprofilebase Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10certificateprofilebase-get.md
Title: "Get windows10CertificateProfileBase" description: "Read properties and relationships of the windows10CertificateProfileBase object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windows10CertificateProfileBase](../resources/intune-deviceconfig-windows10certificateprofilebase.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: 1578
} } ```-----
v1.0 Intune Deviceconfig Windows10certificateprofilebase List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10certificateprofilebase-list.md
Title: "List windows10CertificateProfileBases" description: "List properties and relationships of the windows10CertificateProfileBase objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windows10CertificateProfileBase](../resources/intune-deviceconfig-windows10certificateprofilebase.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: 1668
] } ```-----
v1.0 Intune Deviceconfig Windows10compliancepolicy Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10compliancepolicy-create.md
Title: "Create windows10CompliancePolicy" description: "Create a new windows10CompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windows10CompliancePolicy](../resources/intune-deviceconfig-windows10compliancepolicy.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: 2083
} } ```-----
v1.0 Intune Deviceconfig Windows10compliancepolicy Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10compliancepolicy-delete.md
Title: "Delete windows10CompliancePolicy" description: "Deletes a windows10CompliancePolicy."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windows10CompliancePolicy](../resources/intune-deviceconfig-windows10compliancepolicy.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 Deviceconfig Windows10compliancepolicy Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10compliancepolicy-get.md
Title: "Get windows10CompliancePolicy" description: "Read properties and relationships of the windows10CompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windows10CompliancePolicy](../resources/intune-deviceconfig-windows10compliancepolicy.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: 2208
} } ```-----
v1.0 Intune Deviceconfig Windows10compliancepolicy List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10compliancepolicy-list.md
Title: "List windows10CompliancePolicies" description: "List properties and relationships of the windows10CompliancePolicy objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windows10CompliancePolicy](../resources/intune-deviceconfig-windows10compliancepolicy.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: 2328
] } ```-----
v1.0 Intune Deviceconfig Windows10compliancepolicy Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10compliancepolicy-update.md
Title: "Update windows10CompliancePolicy" description: "Update the properties of a windows10CompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windows10CompliancePolicy](../resources/intune-deviceconfig-windows10compliancepolicy.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: 2083
} } ```-----
v1.0 Intune Deviceconfig Windows10customconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10customconfiguration-create.md
Title: "Create windows10CustomConfiguration" description: "Create a new windows10CustomConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windows10CustomConfiguration](../resources/intune-deviceconfig-windows10customconfiguration.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: 1511
] } ```-----
v1.0 Intune Deviceconfig Windows10customconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10customconfiguration-delete.md
Title: "Delete windows10CustomConfiguration" description: "Deletes a windows10CustomConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windows10CustomConfiguration](../resources/intune-deviceconfig-windows10customconfiguration.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 Deviceconfig Windows10customconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10customconfiguration-get.md
Title: "Get windows10CustomConfiguration" description: "Read properties and relationships of the windows10CustomConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windows10CustomConfiguration](../resources/intune-deviceconfig-windows10customconfiguration.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: 1614
} } ```-----
v1.0 Intune Deviceconfig Windows10customconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10customconfiguration-list.md
Title: "List windows10CustomConfigurations" description: "List properties and relationships of the windows10CustomConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windows10CustomConfiguration](../resources/intune-deviceconfig-windows10customconfiguration.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: 1712
] } ```-----
v1.0 Intune Deviceconfig Windows10customconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10customconfiguration-update.md
Title: "Update windows10CustomConfiguration" description: "Update the properties of a windows10CustomConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windows10CustomConfiguration](../resources/intune-deviceconfig-windows10customconfiguration.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: 1511
] } ```-----
v1.0 Intune Deviceconfig Windows10devicefirmwareconfigurationinterface Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10devicefirmwareconfigurationinterface-create.md
Title: "Create windows10DeviceFirmwareConfigurationInterface" description: "Create a new windows10DeviceFirmwareConfigurationInterface object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windows10DeviceFirmwareConfigurationInterface](../resources/intune-deviceconfig-windows10devicefirmwareconfigurationinterface.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: 1926
"wakeOnPower": "enabled" } ```-----
v1.0 Intune Deviceconfig Windows10devicefirmwareconfigurationinterface Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10devicefirmwareconfigurationinterface-delete.md
Title: "Delete windows10DeviceFirmwareConfigurationInterface" description: "Deletes a windows10DeviceFirmwareConfigurationInterface."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windows10DeviceFirmwareConfigurationInterface](../resources/intune-deviceconfig-windows10devicefirmwareconfigurationinterface.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 Deviceconfig Windows10devicefirmwareconfigurationinterface Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10devicefirmwareconfigurationinterface-get.md
Title: "Get windows10DeviceFirmwareConfigurationInterface" description: "Read properties and relationships of the windows10DeviceFirmwareConfigurationInterface object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windows10DeviceFirmwareConfigurationInterface](../resources/intune-deviceconfig-windows10devicefirmwareconfigurationinterface.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: 2051
} } ```-----
v1.0 Intune Deviceconfig Windows10devicefirmwareconfigurationinterface List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10devicefirmwareconfigurationinterface-list.md
Title: "List windows10DeviceFirmwareConfigurationInterfaces" description: "List properties and relationships of the windows10DeviceFirmwareConfigurationInterface objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windows10DeviceFirmwareConfigurationInterface](../resources/intune-deviceconfig-windows10devicefirmwareconfigurationinterface.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: 2171
] } ```-----
v1.0 Intune Deviceconfig Windows10devicefirmwareconfigurationinterface Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10devicefirmwareconfigurationinterface-update.md
Title: "Update windows10DeviceFirmwareConfigurationInterface" description: "Update the properties of a windows10DeviceFirmwareConfigurationInterface object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windows10DeviceFirmwareConfigurationInterface](../resources/intune-deviceconfig-windows10devicefirmwareconfigurationinterface.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: 1926
"wakeOnPower": "enabled" } ```-----
v1.0 Intune Deviceconfig Windows10easemailprofileconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10easemailprofileconfiguration-create.md
Title: "Create windows10EasEmailProfileConfiguration" description: "Create a new windows10EasEmailProfileConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windows10EasEmailProfileConfiguration](../resources/intune-deviceconfig-windows10easemailprofileconfiguration.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: 1698
"requireSsl": true } ```-----
v1.0 Intune Deviceconfig Windows10easemailprofileconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10easemailprofileconfiguration-delete.md
Title: "Delete windows10EasEmailProfileConfiguration" description: "Deletes a windows10EasEmailProfileConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windows10EasEmailProfileConfiguration](../resources/intune-deviceconfig-windows10easemailprofileconfiguration.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 Deviceconfig Windows10easemailprofileconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10easemailprofileconfiguration-get.md
Title: "Get windows10EasEmailProfileConfiguration" description: "Read properties and relationships of the windows10EasEmailProfileConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windows10EasEmailProfileConfiguration](../resources/intune-deviceconfig-windows10easemailprofileconfiguration.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: 1807
} } ```-----
v1.0 Intune Deviceconfig Windows10easemailprofileconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10easemailprofileconfiguration-list.md
Title: "List windows10EasEmailProfileConfigurations" description: "List properties and relationships of the windows10EasEmailProfileConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windows10EasEmailProfileConfiguration](../resources/intune-deviceconfig-windows10easemailprofileconfiguration.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: 1911
] } ```-----
v1.0 Intune Deviceconfig Windows10easemailprofileconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10easemailprofileconfiguration-update.md
Title: "Update windows10EasEmailProfileConfiguration" description: "Update the properties of a windows10EasEmailProfileConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windows10EasEmailProfileConfiguration](../resources/intune-deviceconfig-windows10easemailprofileconfiguration.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: 1698
"requireSsl": true } ```-----
v1.0 Intune Deviceconfig Windows10endpointprotectionconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10endpointprotectionconfiguration-create.md
Title: "Create windows10EndpointProtectionConfiguration" description: "Create a new windows10EndpointProtectionConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windows10EndpointProtectionConfiguration](../resources/intune-deviceconfig-windows10endpointprotectionconfiguration.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: 31447
} } ```-----
v1.0 Intune Deviceconfig Windows10endpointprotectionconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10endpointprotectionconfiguration-delete.md
Title: "Delete windows10EndpointProtectionConfiguration" description: "Deletes a windows10EndpointProtectionConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windows10EndpointProtectionConfiguration](../resources/intune-deviceconfig-windows10endpointprotectionconfiguration.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 Deviceconfig Windows10endpointprotectionconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10endpointprotectionconfiguration-get.md
Title: "Get windows10EndpointProtectionConfiguration" description: "Read properties and relationships of the windows10EndpointProtectionConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windows10EndpointProtectionConfiguration](../resources/intune-deviceconfig-windows10endpointprotectionconfiguration.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: 32950
} } ```-----
v1.0 Intune Deviceconfig Windows10endpointprotectionconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10endpointprotectionconfiguration-list.md
Title: "List windows10EndpointProtectionConfigurations" description: "List properties and relationships of the windows10EndpointProtectionConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windows10EndpointProtectionConfiguration](../resources/intune-deviceconfig-windows10endpointprotectionconfiguration.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: 34448
] } ```-----
v1.0 Intune Deviceconfig Windows10endpointprotectionconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10endpointprotectionconfiguration-update.md
Title: "Update windows10EndpointProtectionConfiguration" description: "Update the properties of a windows10EndpointProtectionConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windows10EndpointProtectionConfiguration](../resources/intune-deviceconfig-windows10endpointprotectionconfiguration.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: 31447
} } ```-----
v1.0 Intune Deviceconfig Windows10enterprisemodernappmanagementconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10enterprisemodernappmanagementconfiguration-create.md
Title: "Create windows10EnterpriseModernAppManagementConfiguration" description: "Create a new windows10EnterpriseModernAppManagementConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windows10EnterpriseModernAppManagementConfiguration](../resources/intune-deviceconfig-windows10enterprisemodernappmanagementconfiguration.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: 1259
"uninstallBuiltInApps": true } ```-----
v1.0 Intune Deviceconfig Windows10enterprisemodernappmanagementconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10enterprisemodernappmanagementconfiguration-delete.md
Title: "Delete windows10EnterpriseModernAppManagementConfiguration" description: "Deletes a windows10EnterpriseModernAppManagementConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windows10EnterpriseModernAppManagementConfiguration](../resources/intune-deviceconfig-windows10enterprisemodernappmanagementconfiguration.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 Deviceconfig Windows10enterprisemodernappmanagementconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10enterprisemodernappmanagementconfiguration-get.md
Title: "Get windows10EnterpriseModernAppManagementConfiguration" description: "Read properties and relationships of the windows10EnterpriseModernAppManagementConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windows10EnterpriseModernAppManagementConfiguration](../resources/intune-deviceconfig-windows10enterprisemodernappmanagementconfiguration.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: 1344
} } ```-----
v1.0 Intune Deviceconfig Windows10enterprisemodernappmanagementconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10enterprisemodernappmanagementconfiguration-list.md
Title: "List windows10EnterpriseModernAppManagementConfigurations" description: "List properties and relationships of the windows10EnterpriseModernAppManagementConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windows10EnterpriseModernAppManagementConfiguration](../resources/intune-deviceconfig-windows10enterprisemodernappmanagementconfiguration.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: 1424
] } ```-----
v1.0 Intune Deviceconfig Windows10enterprisemodernappmanagementconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10enterprisemodernappmanagementconfiguration-update.md
Title: "Update windows10EnterpriseModernAppManagementConfiguration" description: "Update the properties of a windows10EnterpriseModernAppManagementConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windows10EnterpriseModernAppManagementConfiguration](../resources/intune-deviceconfig-windows10enterprisemodernappmanagementconfiguration.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: 1259
"uninstallBuiltInApps": true } ```-----
v1.0 Intune Deviceconfig Windows10generalconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10generalconfiguration-create.md
Title: "Create windows10GeneralConfiguration" description: "Create a new windows10GeneralConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windows10GeneralConfiguration](../resources/intune-deviceconfig-windows10generalconfiguration.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: 15181
"configureTimeZone": "Configure Time Zone value" } ```-----
v1.0 Intune Deviceconfig Windows10generalconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10generalconfiguration-delete.md
Title: "Delete windows10GeneralConfiguration" description: "Deletes a windows10GeneralConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windows10GeneralConfiguration](../resources/intune-deviceconfig-windows10generalconfiguration.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 Deviceconfig Windows10generalconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10generalconfiguration-get.md
Title: "Get windows10GeneralConfiguration" description: "Read properties and relationships of the windows10GeneralConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windows10GeneralConfiguration](../resources/intune-deviceconfig-windows10generalconfiguration.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: 15912
} } ```-----
v1.0 Intune Deviceconfig Windows10generalconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10generalconfiguration-list.md
Title: "List windows10GeneralConfigurations" description: "List properties and relationships of the windows10GeneralConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windows10GeneralConfiguration](../resources/intune-deviceconfig-windows10generalconfiguration.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: 16638
] } ```-----
v1.0 Intune Deviceconfig Windows10generalconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10generalconfiguration-update.md
Title: "Update windows10GeneralConfiguration" description: "Update the properties of a windows10GeneralConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windows10GeneralConfiguration](../resources/intune-deviceconfig-windows10generalconfiguration.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: 15181
"configureTimeZone": "Configure Time Zone value" } ```-----
v1.0 Intune Deviceconfig Windows10importedpfxcertificateprofile Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10importedpfxcertificateprofile-create.md
Title: "Create windows10ImportedPFXCertificateProfile" description: "Create a new windows10ImportedPFXCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windows10ImportedPFXCertificateProfile](../resources/intune-deviceconfig-windows10importedpfxcertificateprofile.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: 1531
"intendedPurpose": "smimeEncryption" } ```-----
v1.0 Intune Deviceconfig Windows10importedpfxcertificateprofile Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10importedpfxcertificateprofile-delete.md
Title: "Delete windows10ImportedPFXCertificateProfile" description: "Deletes a windows10ImportedPFXCertificateProfile."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windows10ImportedPFXCertificateProfile](../resources/intune-deviceconfig-windows10importedpfxcertificateprofile.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 Deviceconfig Windows10importedpfxcertificateprofile Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10importedpfxcertificateprofile-get.md
Title: "Get windows10ImportedPFXCertificateProfile" description: "Read properties and relationships of the windows10ImportedPFXCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windows10ImportedPFXCertificateProfile](../resources/intune-deviceconfig-windows10importedpfxcertificateprofile.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: 1628
} } ```-----
v1.0 Intune Deviceconfig Windows10importedpfxcertificateprofile List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10importedpfxcertificateprofile-list.md
Title: "List windows10ImportedPFXCertificateProfiles" description: "List properties and relationships of the windows10ImportedPFXCertificateProfile objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windows10ImportedPFXCertificateProfile](../resources/intune-deviceconfig-windows10importedpfxcertificateprofile.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: 1720
] } ```-----
v1.0 Intune Deviceconfig Windows10importedpfxcertificateprofile Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10importedpfxcertificateprofile-update.md
Title: "Update windows10ImportedPFXCertificateProfile" description: "Update the properties of a windows10ImportedPFXCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windows10ImportedPFXCertificateProfile](../resources/intune-deviceconfig-windows10importedpfxcertificateprofile.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: 1531
"intendedPurpose": "smimeEncryption" } ```-----
v1.0 Intune Deviceconfig Windows10mobilecompliancepolicy Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10mobilecompliancepolicy-create.md
Title: "Create windows10MobileCompliancePolicy" description: "Create a new windows10MobileCompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windows10MobileCompliancePolicy](../resources/intune-deviceconfig-windows10mobilecompliancepolicy.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: 1330
] } ```-----
v1.0 Intune Deviceconfig Windows10mobilecompliancepolicy Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10mobilecompliancepolicy-delete.md
Title: "Delete windows10MobileCompliancePolicy" description: "Deletes a windows10MobileCompliancePolicy."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windows10MobileCompliancePolicy](../resources/intune-deviceconfig-windows10mobilecompliancepolicy.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 Deviceconfig Windows10mobilecompliancepolicy Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10mobilecompliancepolicy-get.md
Title: "Get windows10MobileCompliancePolicy" description: "Read properties and relationships of the windows10MobileCompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windows10MobileCompliancePolicy](../resources/intune-deviceconfig-windows10mobilecompliancepolicy.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: 1419
} } ```-----
v1.0 Intune Deviceconfig Windows10mobilecompliancepolicy List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10mobilecompliancepolicy-list.md
Title: "List windows10MobileCompliancePolicies" description: "List properties and relationships of the windows10MobileCompliancePolicy objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windows10MobileCompliancePolicy](../resources/intune-deviceconfig-windows10mobilecompliancepolicy.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: 1503
] } ```-----
v1.0 Intune Deviceconfig Windows10mobilecompliancepolicy Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10mobilecompliancepolicy-update.md
Title: "Update windows10MobileCompliancePolicy" description: "Update the properties of a windows10MobileCompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windows10MobileCompliancePolicy](../resources/intune-deviceconfig-windows10mobilecompliancepolicy.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: 1330
] } ```-----
v1.0 Intune Deviceconfig Windows10networkboundaryconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10networkboundaryconfiguration-create.md
Title: "Create windows10NetworkBoundaryConfiguration" description: "Create a new windows10NetworkBoundaryConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windows10NetworkBoundaryConfiguration](../resources/intune-deviceconfig-windows10networkboundaryconfiguration.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: 2091
} } ```-----
v1.0 Intune Deviceconfig Windows10networkboundaryconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10networkboundaryconfiguration-delete.md
Title: "Delete windows10NetworkBoundaryConfiguration" description: "Deletes a windows10NetworkBoundaryConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windows10NetworkBoundaryConfiguration](../resources/intune-deviceconfig-windows10networkboundaryconfiguration.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 Deviceconfig Windows10networkboundaryconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10networkboundaryconfiguration-get.md
Title: "Get windows10NetworkBoundaryConfiguration" description: "Read properties and relationships of the windows10NetworkBoundaryConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windows10NetworkBoundaryConfiguration](../resources/intune-deviceconfig-windows10networkboundaryconfiguration.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: 2232
} } ```-----
v1.0 Intune Deviceconfig Windows10networkboundaryconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10networkboundaryconfiguration-list.md
Title: "List windows10NetworkBoundaryConfigurations" description: "List properties and relationships of the windows10NetworkBoundaryConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windows10NetworkBoundaryConfiguration](../resources/intune-deviceconfig-windows10networkboundaryconfiguration.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: 2368
] } ```-----
v1.0 Intune Deviceconfig Windows10networkboundaryconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10networkboundaryconfiguration-update.md
Title: "Update windows10NetworkBoundaryConfiguration" description: "Update the properties of a windows10NetworkBoundaryConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windows10NetworkBoundaryConfiguration](../resources/intune-deviceconfig-windows10networkboundaryconfiguration.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: 2091
} } ```-----
v1.0 Intune Deviceconfig Windows10pfximportcertificateprofile Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10pfximportcertificateprofile-create.md
Title: "Create windows10PFXImportCertificateProfile" description: "Create a new windows10PFXImportCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windows10PFXImportCertificateProfile](../resources/intune-deviceconfig-windows10pfximportcertificateprofile.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: 1262
"keyStorageProvider": "useTpmKspOtherwiseFail" } ```-----
v1.0 Intune Deviceconfig Windows10pfximportcertificateprofile Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10pfximportcertificateprofile-delete.md
Title: "Delete windows10PFXImportCertificateProfile" description: "Deletes a windows10PFXImportCertificateProfile."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windows10PFXImportCertificateProfile](../resources/intune-deviceconfig-windows10pfximportcertificateprofile.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 Deviceconfig Windows10pfximportcertificateprofile Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10pfximportcertificateprofile-get.md
Title: "Get windows10PFXImportCertificateProfile" description: "Read properties and relationships of the windows10PFXImportCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windows10PFXImportCertificateProfile](../resources/intune-deviceconfig-windows10pfximportcertificateprofile.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: 1347
} } ```-----
v1.0 Intune Deviceconfig Windows10pfximportcertificateprofile List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10pfximportcertificateprofile-list.md
Title: "List windows10PFXImportCertificateProfiles" description: "List properties and relationships of the windows10PFXImportCertificateProfile objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windows10PFXImportCertificateProfile](../resources/intune-deviceconfig-windows10pfximportcertificateprofile.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: 1427
] } ```-----
v1.0 Intune Deviceconfig Windows10pfximportcertificateprofile Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10pfximportcertificateprofile-update.md
Title: "Update windows10PFXImportCertificateProfile" description: "Update the properties of a windows10PFXImportCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windows10PFXImportCertificateProfile](../resources/intune-deviceconfig-windows10pfximportcertificateprofile.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: 1262
"keyStorageProvider": "useTpmKspOtherwiseFail" } ```-----
v1.0 Intune Deviceconfig Windows10pkcscertificateprofile Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10pkcscertificateprofile-create.md
Title: "Create windows10PkcsCertificateProfile" description: "Create a new windows10PkcsCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windows10PkcsCertificateProfile](../resources/intune-deviceconfig-windows10pkcscertificateprofile.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: 2246
] } ```-----
v1.0 Intune Deviceconfig Windows10pkcscertificateprofile Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10pkcscertificateprofile-delete.md
Title: "Delete windows10PkcsCertificateProfile" description: "Deletes a windows10PkcsCertificateProfile."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windows10PkcsCertificateProfile](../resources/intune-deviceconfig-windows10pkcscertificateprofile.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 Deviceconfig Windows10pkcscertificateprofile Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10pkcscertificateprofile-get.md
Title: "Get windows10PkcsCertificateProfile" description: "Read properties and relationships of the windows10PkcsCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windows10PkcsCertificateProfile](../resources/intune-deviceconfig-windows10pkcscertificateprofile.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: 2381
} } ```-----
v1.0 Intune Deviceconfig Windows10pkcscertificateprofile List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10pkcscertificateprofile-list.md
Title: "List windows10PkcsCertificateProfiles" description: "List properties and relationships of the windows10PkcsCertificateProfile objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windows10PkcsCertificateProfile](../resources/intune-deviceconfig-windows10pkcscertificateprofile.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: 2511
] } ```-----
v1.0 Intune Deviceconfig Windows10pkcscertificateprofile Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10pkcscertificateprofile-update.md
Title: "Update windows10PkcsCertificateProfile" description: "Update the properties of a windows10PkcsCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windows10PkcsCertificateProfile](../resources/intune-deviceconfig-windows10pkcscertificateprofile.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: 2246
] } ```-----
v1.0 Intune Deviceconfig Windows10secureassessmentconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10secureassessmentconfiguration-create.md
Title: "Create windows10SecureAssessmentConfiguration" description: "Create a new windows10SecureAssessmentConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windows10SecureAssessmentConfiguration](../resources/intune-deviceconfig-windows10secureassessmentconfiguration.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: 1575
"assessmentAppUserModelId": "Assessment App User Model Id value" } ```-----
v1.0 Intune Deviceconfig Windows10secureassessmentconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10secureassessmentconfiguration-delete.md
Title: "Delete windows10SecureAssessmentConfiguration" description: "Deletes a windows10SecureAssessmentConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windows10SecureAssessmentConfiguration](../resources/intune-deviceconfig-windows10secureassessmentconfiguration.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 Deviceconfig Windows10secureassessmentconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10secureassessmentconfiguration-get.md
Title: "Get windows10SecureAssessmentConfiguration" description: "Read properties and relationships of the windows10SecureAssessmentConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windows10SecureAssessmentConfiguration](../resources/intune-deviceconfig-windows10secureassessmentconfiguration.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: 1674
} } ```-----
v1.0 Intune Deviceconfig Windows10secureassessmentconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10secureassessmentconfiguration-list.md
Title: "List windows10SecureAssessmentConfigurations" description: "List properties and relationships of the windows10SecureAssessmentConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windows10SecureAssessmentConfiguration](../resources/intune-deviceconfig-windows10secureassessmentconfiguration.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: 1768
] } ```-----
v1.0 Intune Deviceconfig Windows10secureassessmentconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10secureassessmentconfiguration-update.md
Title: "Update windows10SecureAssessmentConfiguration" description: "Update the properties of a windows10SecureAssessmentConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windows10SecureAssessmentConfiguration](../resources/intune-deviceconfig-windows10secureassessmentconfiguration.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: 1575
"assessmentAppUserModelId": "Assessment App User Model Id value" } ```-----
v1.0 Intune Deviceconfig Windows10teamgeneralconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10teamgeneralconfiguration-create.md
Title: "Create windows10TeamGeneralConfiguration" description: "Create a new windows10TeamGeneralConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windows10TeamGeneralConfiguration](../resources/intune-deviceconfig-windows10teamgeneralconfiguration.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: 2187
"welcomeScreenMeetingInformation": "showOrganizerAndTimeOnly" } ```-----
v1.0 Intune Deviceconfig Windows10teamgeneralconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10teamgeneralconfiguration-delete.md
Title: "Delete windows10TeamGeneralConfiguration" description: "Deletes a windows10TeamGeneralConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windows10TeamGeneralConfiguration](../resources/intune-deviceconfig-windows10teamgeneralconfiguration.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 Deviceconfig Windows10teamgeneralconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10teamgeneralconfiguration-get.md
Title: "Get windows10TeamGeneralConfiguration" description: "Read properties and relationships of the windows10TeamGeneralConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windows10TeamGeneralConfiguration](../resources/intune-deviceconfig-windows10teamgeneralconfiguration.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: 2310
} } ```-----
v1.0 Intune Deviceconfig Windows10teamgeneralconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10teamgeneralconfiguration-list.md
Title: "List windows10TeamGeneralConfigurations" description: "List properties and relationships of the windows10TeamGeneralConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windows10TeamGeneralConfiguration](../resources/intune-deviceconfig-windows10teamgeneralconfiguration.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: 2428
] } ```-----
v1.0 Intune Deviceconfig Windows10teamgeneralconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10teamgeneralconfiguration-update.md
Title: "Update windows10TeamGeneralConfiguration" description: "Update the properties of a windows10TeamGeneralConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windows10TeamGeneralConfiguration](../resources/intune-deviceconfig-windows10teamgeneralconfiguration.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: 2187
"welcomeScreenMeetingInformation": "showOrganizerAndTimeOnly" } ```-----
v1.0 Intune Deviceconfig Windows10vpnconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10vpnconfiguration-create.md
Title: "Create windows10VpnConfiguration" description: "Create a new windows10VpnConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windows10VpnConfiguration](../resources/intune-deviceconfig-windows10vpnconfiguration.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: 4697
} } ```-----
v1.0 Intune Deviceconfig Windows10vpnconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10vpnconfiguration-delete.md
Title: "Delete windows10VpnConfiguration" description: "Deletes a windows10VpnConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windows10VpnConfiguration](../resources/intune-deviceconfig-windows10vpnconfiguration.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 Deviceconfig Windows10vpnconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10vpnconfiguration-get.md
Title: "Get windows10VpnConfiguration" description: "Read properties and relationships of the windows10VpnConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windows10VpnConfiguration](../resources/intune-deviceconfig-windows10vpnconfiguration.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: 5014
} } ```-----
v1.0 Intune Deviceconfig Windows10vpnconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10vpnconfiguration-list.md
Title: "List windows10VpnConfigurations" description: "List properties and relationships of the windows10VpnConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windows10VpnConfiguration](../resources/intune-deviceconfig-windows10vpnconfiguration.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: 5326
] } ```-----
v1.0 Intune Deviceconfig Windows10vpnconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows10vpnconfiguration-update.md
Title: "Update windows10VpnConfiguration" description: "Update the properties of a windows10VpnConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windows10VpnConfiguration](../resources/intune-deviceconfig-windows10vpnconfiguration.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: 4697
} } ```-----
v1.0 Intune Deviceconfig Windows81certificateprofilebase Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows81certificateprofilebase-get.md
Title: "Get windows81CertificateProfileBase" description: "Read properties and relationships of the windows81CertificateProfileBase object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windows81CertificateProfileBase](../resources/intune-deviceconfig-windows81certificateprofilebase.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: 1982
} } ```-----
v1.0 Intune Deviceconfig Windows81certificateprofilebase List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows81certificateprofilebase-list.md
Title: "List windows81CertificateProfileBases" description: "List properties and relationships of the windows81CertificateProfileBase objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windows81CertificateProfileBase](../resources/intune-deviceconfig-windows81certificateprofilebase.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: 2100
] } ```-----
v1.0 Intune Deviceconfig Windows81compliancepolicy Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows81compliancepolicy-create.md
Title: "Create windows81CompliancePolicy" description: "Create a new windows81CompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windows81CompliancePolicy](../resources/intune-deviceconfig-windows81compliancepolicy.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: 836
"storageRequireEncryption": true } ```-----
v1.0 Intune Deviceconfig Windows81compliancepolicy Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows81compliancepolicy-delete.md
Title: "Delete windows81CompliancePolicy" description: "Deletes a windows81CompliancePolicy."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windows81CompliancePolicy](../resources/intune-deviceconfig-windows81compliancepolicy.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 Deviceconfig Windows81compliancepolicy Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows81compliancepolicy-get.md
Title: "Get windows81CompliancePolicy" description: "Read properties and relationships of the windows81CompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windows81CompliancePolicy](../resources/intune-deviceconfig-windows81compliancepolicy.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: 897
} } ```-----
v1.0 Intune Deviceconfig Windows81compliancepolicy List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows81compliancepolicy-list.md
Title: "List windows81CompliancePolicies" description: "List properties and relationships of the windows81CompliancePolicy objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windows81CompliancePolicy](../resources/intune-deviceconfig-windows81compliancepolicy.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: 953
] } ```-----
v1.0 Intune Deviceconfig Windows81compliancepolicy Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows81compliancepolicy-update.md
Title: "Update windows81CompliancePolicy" description: "Update the properties of a windows81CompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windows81CompliancePolicy](../resources/intune-deviceconfig-windows81compliancepolicy.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: 836
"storageRequireEncryption": true } ```-----
v1.0 Intune Deviceconfig Windows81generalconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows81generalconfiguration-create.md
Title: "Create windows81GeneralConfiguration" description: "Create a new windows81GeneralConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windows81GeneralConfiguration](../resources/intune-deviceconfig-windows81generalconfiguration.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: 2869
"workFoldersUrl": "https://example.com/workFoldersUrl/" } ```-----
v1.0 Intune Deviceconfig Windows81generalconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows81generalconfiguration-delete.md
Title: "Delete windows81GeneralConfiguration" description: "Deletes a windows81GeneralConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windows81GeneralConfiguration](../resources/intune-deviceconfig-windows81generalconfiguration.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 Deviceconfig Windows81generalconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows81generalconfiguration-get.md
Title: "Get windows81GeneralConfiguration" description: "Read properties and relationships of the windows81GeneralConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windows81GeneralConfiguration](../resources/intune-deviceconfig-windows81generalconfiguration.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: 3022
} } ```-----
v1.0 Intune Deviceconfig Windows81generalconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows81generalconfiguration-list.md
Title: "List windows81GeneralConfigurations" description: "List properties and relationships of the windows81GeneralConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windows81GeneralConfiguration](../resources/intune-deviceconfig-windows81generalconfiguration.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: 3170
] } ```-----
v1.0 Intune Deviceconfig Windows81generalconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows81generalconfiguration-update.md
Title: "Update windows81GeneralConfiguration" description: "Update the properties of a windows81GeneralConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windows81GeneralConfiguration](../resources/intune-deviceconfig-windows81generalconfiguration.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: 2869
"workFoldersUrl": "https://example.com/workFoldersUrl/" } ```-----
v1.0 Intune Deviceconfig Windows81scepcertificateprofile Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows81scepcertificateprofile-create.md
Title: "Create windows81SCEPCertificateProfile" description: "Create a new windows81SCEPCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windows81SCEPCertificateProfile](../resources/intune-deviceconfig-windows81scepcertificateprofile.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: 2196
"certificateStore": "machine" } ```-----
v1.0 Intune Deviceconfig Windows81scepcertificateprofile Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows81scepcertificateprofile-delete.md
Title: "Delete windows81SCEPCertificateProfile" description: "Deletes a windows81SCEPCertificateProfile."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windows81SCEPCertificateProfile](../resources/intune-deviceconfig-windows81scepcertificateprofile.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 Deviceconfig Windows81scepcertificateprofile Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows81scepcertificateprofile-get.md
Title: "Get windows81SCEPCertificateProfile" description: "Read properties and relationships of the windows81SCEPCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windows81SCEPCertificateProfile](../resources/intune-deviceconfig-windows81scepcertificateprofile.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: 2337
} } ```-----
v1.0 Intune Deviceconfig Windows81scepcertificateprofile List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows81scepcertificateprofile-list.md
Title: "List windows81SCEPCertificateProfiles" description: "List properties and relationships of the windows81SCEPCertificateProfile objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windows81SCEPCertificateProfile](../resources/intune-deviceconfig-windows81scepcertificateprofile.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: 2473
] } ```-----
v1.0 Intune Deviceconfig Windows81scepcertificateprofile Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows81scepcertificateprofile-update.md
Title: "Update windows81SCEPCertificateProfile" description: "Update the properties of a windows81SCEPCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windows81SCEPCertificateProfile](../resources/intune-deviceconfig-windows81scepcertificateprofile.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: 2196
"certificateStore": "machine" } ```-----
v1.0 Intune Deviceconfig Windows81trustedrootcertificate Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows81trustedrootcertificate-create.md
Title: "Create windows81TrustedRootCertificate" description: "Create a new windows81TrustedRootCertificate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windows81TrustedRootCertificate](../resources/intune-deviceconfig-windows81trustedrootcertificate.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: 1370
"destinationStore": "computerCertStoreIntermediate" } ```-----
v1.0 Intune Deviceconfig Windows81trustedrootcertificate Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows81trustedrootcertificate-delete.md
Title: "Delete windows81TrustedRootCertificate" description: "Deletes a windows81TrustedRootCertificate."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windows81TrustedRootCertificate](../resources/intune-deviceconfig-windows81trustedrootcertificate.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 Deviceconfig Windows81trustedrootcertificate Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows81trustedrootcertificate-get.md
Title: "Get windows81TrustedRootCertificate" description: "Read properties and relationships of the windows81TrustedRootCertificate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windows81TrustedRootCertificate](../resources/intune-deviceconfig-windows81trustedrootcertificate.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: 1459
} } ```-----
v1.0 Intune Deviceconfig Windows81trustedrootcertificate List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows81trustedrootcertificate-list.md
Title: "List windows81TrustedRootCertificates" description: "List properties and relationships of the windows81TrustedRootCertificate objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windows81TrustedRootCertificate](../resources/intune-deviceconfig-windows81trustedrootcertificate.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: 1543
] } ```-----
v1.0 Intune Deviceconfig Windows81trustedrootcertificate Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows81trustedrootcertificate-update.md
Title: "Update windows81TrustedRootCertificate" description: "Update the properties of a windows81TrustedRootCertificate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windows81TrustedRootCertificate](../resources/intune-deviceconfig-windows81trustedrootcertificate.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: 1370
"destinationStore": "computerCertStoreIntermediate" } ```-----
v1.0 Intune Deviceconfig Windows81vpnconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows81vpnconfiguration-create.md
Title: "Create windows81VpnConfiguration" description: "Create a new windows81VpnConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windows81VpnConfiguration](../resources/intune-deviceconfig-windows81vpnconfiguration.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: 1960
} } ```-----
v1.0 Intune Deviceconfig Windows81vpnconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows81vpnconfiguration-delete.md
Title: "Delete windows81VpnConfiguration" description: "Deletes a windows81VpnConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windows81VpnConfiguration](../resources/intune-deviceconfig-windows81vpnconfiguration.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 Deviceconfig Windows81vpnconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows81vpnconfiguration-get.md
Title: "Get windows81VpnConfiguration" description: "Read properties and relationships of the windows81VpnConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windows81VpnConfiguration](../resources/intune-deviceconfig-windows81vpnconfiguration.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: 2087
} } ```-----
v1.0 Intune Deviceconfig Windows81vpnconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows81vpnconfiguration-list.md
Title: "List windows81VpnConfigurations" description: "List properties and relationships of the windows81VpnConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windows81VpnConfiguration](../resources/intune-deviceconfig-windows81vpnconfiguration.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: 2209
] } ```-----
v1.0 Intune Deviceconfig Windows81vpnconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows81vpnconfiguration-update.md
Title: "Update windows81VpnConfiguration" description: "Update the properties of a windows81VpnConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windows81VpnConfiguration](../resources/intune-deviceconfig-windows81vpnconfiguration.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: 1960
} } ```-----
v1.0 Intune Deviceconfig Windows81wifiimportconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows81wifiimportconfiguration-create.md
Title: "Create windows81WifiImportConfiguration" description: "Create a new windows81WifiImportConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windows81WifiImportConfiguration](../resources/intune-deviceconfig-windows81wifiimportconfiguration.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: 1326
"payload": "cGF5bG9hZA==" } ```-----
v1.0 Intune Deviceconfig Windows81wifiimportconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows81wifiimportconfiguration-delete.md
Title: "Delete windows81WifiImportConfiguration" description: "Deletes a windows81WifiImportConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windows81WifiImportConfiguration](../resources/intune-deviceconfig-windows81wifiimportconfiguration.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 Deviceconfig Windows81wifiimportconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows81wifiimportconfiguration-get.md
Title: "Get windows81WifiImportConfiguration" description: "Read properties and relationships of the windows81WifiImportConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windows81WifiImportConfiguration](../resources/intune-deviceconfig-windows81wifiimportconfiguration.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: 1415
} } ```-----
v1.0 Intune Deviceconfig Windows81wifiimportconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows81wifiimportconfiguration-list.md
Title: "List windows81WifiImportConfigurations" description: "List properties and relationships of the windows81WifiImportConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windows81WifiImportConfiguration](../resources/intune-deviceconfig-windows81wifiimportconfiguration.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: 1499
] } ```-----
v1.0 Intune Deviceconfig Windows81wifiimportconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windows81wifiimportconfiguration-update.md
Title: "Update windows81WifiImportConfiguration" description: "Update the properties of a windows81WifiImportConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windows81WifiImportConfiguration](../resources/intune-deviceconfig-windows81wifiimportconfiguration.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: 1326
"payload": "cGF5bG9hZA==" } ```-----
v1.0 Intune Deviceconfig Windowscertificateprofilebase Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowscertificateprofilebase-get.md
Title: "Get windowsCertificateProfileBase" description: "Read properties and relationships of the windowsCertificateProfileBase object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsCertificateProfileBase](../resources/intune-deviceconfig-windowscertificateprofilebase.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: 1576
} } ```-----
v1.0 Intune Deviceconfig Windowscertificateprofilebase List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowscertificateprofilebase-list.md
Title: "List windowsCertificateProfileBases" description: "List properties and relationships of the windowsCertificateProfileBase objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsCertificateProfileBase](../resources/intune-deviceconfig-windowscertificateprofilebase.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: 1666
] } ```-----
v1.0 Intune Deviceconfig Windowsdefenderadvancedthreatprotectionconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsdefenderadvancedthreatprotectionconfiguration-create.md
Title: "Create windowsDefenderAdvancedThreatProtectionConfiguration" description: "Create a new windowsDefenderAdvancedThreatProtectionConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windowsDefenderAdvancedThreatProtectionConfiguration](../resources/intune-deviceconfig-windowsdefenderadvancedthreatprotectionconfiguration.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: 1775
"advancedThreatProtectionOffboardingFilename": "Advanced Threat Protection Offboarding Filename value" } ```-----
v1.0 Intune Deviceconfig Windowsdefenderadvancedthreatprotectionconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsdefenderadvancedthreatprotectionconfiguration-delete.md
Title: "Delete windowsDefenderAdvancedThreatProtectionConfiguration" description: "Deletes a windowsDefenderAdvancedThreatProtectionConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windowsDefenderAdvancedThreatProtectionConfiguration](../resources/intune-deviceconfig-windowsdefenderadvancedthreatprotectionconfiguration.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 Deviceconfig Windowsdefenderadvancedthreatprotectionconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsdefenderadvancedthreatprotectionconfiguration-get.md
Title: "Get windowsDefenderAdvancedThreatProtectionConfiguration" description: "Read properties and relationships of the windowsDefenderAdvancedThreatProtectionConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsDefenderAdvancedThreatProtectionConfiguration](../resources/intune-deviceconfig-windowsdefenderadvancedthreatprotectionconfiguration.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: 1872
} } ```-----
v1.0 Intune Deviceconfig Windowsdefenderadvancedthreatprotectionconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsdefenderadvancedthreatprotectionconfiguration-list.md
Title: "List windowsDefenderAdvancedThreatProtectionConfigurations" description: "List properties and relationships of the windowsDefenderAdvancedThreatProtectionConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsDefenderAdvancedThreatProtectionConfiguration](../resources/intune-deviceconfig-windowsdefenderadvancedthreatprotectionconfiguration.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: 1964
] } ```-----
v1.0 Intune Deviceconfig Windowsdefenderadvancedthreatprotectionconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsdefenderadvancedthreatprotectionconfiguration-update.md
Title: "Update windowsDefenderAdvancedThreatProtectionConfiguration" description: "Update the properties of a windowsDefenderAdvancedThreatProtectionConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windowsDefenderAdvancedThreatProtectionConfiguration](../resources/intune-deviceconfig-windowsdefenderadvancedthreatprotectionconfiguration.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: 1775
"advancedThreatProtectionOffboardingFilename": "Advanced Threat Protection Offboarding Filename value" } ```-----
v1.0 Intune Deviceconfig Windowsdeliveryoptimizationconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsdeliveryoptimizationconfiguration-create.md
Title: "Create windowsDeliveryOptimizationConfiguration" description: "Create a new windowsDeliveryOptimizationConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windowsDeliveryOptimizationConfiguration](../resources/intune-deviceconfig-windowsdeliveryoptimizationconfiguration.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: 2211
"cacheServerBackgroundDownloadFallbackToHttpDelayInSeconds": 9 } ```-----
v1.0 Intune Deviceconfig Windowsdeliveryoptimizationconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsdeliveryoptimizationconfiguration-delete.md
Title: "Delete windowsDeliveryOptimizationConfiguration" description: "Deletes a windowsDeliveryOptimizationConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windowsDeliveryOptimizationConfiguration](../resources/intune-deviceconfig-windowsdeliveryoptimizationconfiguration.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 Deviceconfig Windowsdeliveryoptimizationconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsdeliveryoptimizationconfiguration-get.md
Title: "Get windowsDeliveryOptimizationConfiguration" description: "Read properties and relationships of the windowsDeliveryOptimizationConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsDeliveryOptimizationConfiguration](../resources/intune-deviceconfig-windowsdeliveryoptimizationconfiguration.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: 2344
} } ```-----
v1.0 Intune Deviceconfig Windowsdeliveryoptimizationconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsdeliveryoptimizationconfiguration-list.md
Title: "List windowsDeliveryOptimizationConfigurations" description: "List properties and relationships of the windowsDeliveryOptimizationConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsDeliveryOptimizationConfiguration](../resources/intune-deviceconfig-windowsdeliveryoptimizationconfiguration.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: 2472
] } ```-----
v1.0 Intune Deviceconfig Windowsdeliveryoptimizationconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsdeliveryoptimizationconfiguration-update.md
Title: "Update windowsDeliveryOptimizationConfiguration" description: "Update the properties of a windowsDeliveryOptimizationConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windowsDeliveryOptimizationConfiguration](../resources/intune-deviceconfig-windowsdeliveryoptimizationconfiguration.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: 2211
"cacheServerBackgroundDownloadFallbackToHttpDelayInSeconds": 9 } ```-----
v1.0 Intune Deviceconfig Windowshealthmonitoringconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowshealthmonitoringconfiguration-create.md
Title: "Create windowsHealthMonitoringConfiguration" description: "Create a new windowsHealthMonitoringConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windowsHealthMonitoringConfiguration](../resources/intune-deviceconfig-windowshealthmonitoringconfiguration.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: 1416
"configDeviceHealthMonitoringCustomScope": "Config Device Health Monitoring Custom Scope value" } ```-----
v1.0 Intune Deviceconfig Windowshealthmonitoringconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowshealthmonitoringconfiguration-delete.md
Title: "Delete windowsHealthMonitoringConfiguration" description: "Deletes a windowsHealthMonitoringConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windowsHealthMonitoringConfiguration](../resources/intune-deviceconfig-windowshealthmonitoringconfiguration.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 Deviceconfig Windowshealthmonitoringconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowshealthmonitoringconfiguration-get.md
Title: "Get windowsHealthMonitoringConfiguration" description: "Read properties and relationships of the windowsHealthMonitoringConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsHealthMonitoringConfiguration](../resources/intune-deviceconfig-windowshealthmonitoringconfiguration.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: 1505
} } ```-----
v1.0 Intune Deviceconfig Windowshealthmonitoringconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowshealthmonitoringconfiguration-list.md
Title: "List windowsHealthMonitoringConfigurations" description: "List properties and relationships of the windowsHealthMonitoringConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsHealthMonitoringConfiguration](../resources/intune-deviceconfig-windowshealthmonitoringconfiguration.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: 1589
] } ```-----
v1.0 Intune Deviceconfig Windowshealthmonitoringconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowshealthmonitoringconfiguration-update.md
Title: "Update windowsHealthMonitoringConfiguration" description: "Update the properties of a windowsHealthMonitoringConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windowsHealthMonitoringConfiguration](../resources/intune-deviceconfig-windowshealthmonitoringconfiguration.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: 1416
"configDeviceHealthMonitoringCustomScope": "Config Device Health Monitoring Custom Scope value" } ```-----
v1.0 Intune Deviceconfig Windowsidentityprotectionconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsidentityprotectionconfiguration-create.md
Title: "Create windowsIdentityProtectionConfiguration" description: "Create a new windowsIdentityProtectionConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windowsIdentityProtectionConfiguration](../resources/intune-deviceconfig-windowsidentityprotectionconfiguration.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
"windowsHelloForBusinessBlocked": true } ```-----
v1.0 Intune Deviceconfig Windowsidentityprotectionconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsidentityprotectionconfiguration-delete.md
Title: "Delete windowsIdentityProtectionConfiguration" description: "Deletes a windowsIdentityProtectionConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windowsIdentityProtectionConfiguration](../resources/intune-deviceconfig-windowsidentityprotectionconfiguration.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 Deviceconfig Windowsidentityprotectionconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsidentityprotectionconfiguration-get.md
Title: "Get windowsIdentityProtectionConfiguration" description: "Read properties and relationships of the windowsIdentityProtectionConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsIdentityProtectionConfiguration](../resources/intune-deviceconfig-windowsidentityprotectionconfiguration.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 Deviceconfig Windowsidentityprotectionconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsidentityprotectionconfiguration-list.md
Title: "List windowsIdentityProtectionConfigurations" description: "List properties and relationships of the windowsIdentityProtectionConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsIdentityProtectionConfiguration](../resources/intune-deviceconfig-windowsidentityprotectionconfiguration.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: 1972
] } ```-----
v1.0 Intune Deviceconfig Windowsidentityprotectionconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsidentityprotectionconfiguration-update.md
Title: "Update windowsIdentityProtectionConfiguration" description: "Update the properties of a windowsIdentityProtectionConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windowsIdentityProtectionConfiguration](../resources/intune-deviceconfig-windowsidentityprotectionconfiguration.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
"windowsHelloForBusinessBlocked": true } ```-----
v1.0 Intune Deviceconfig Windowskioskconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowskioskconfiguration-create.md
Title: "Create windowsKioskConfiguration" description: "Create a new windowsKioskConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windowsKioskConfiguration](../resources/intune-deviceconfig-windowskioskconfiguration.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: 3001
} } ```-----
v1.0 Intune Deviceconfig Windowskioskconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowskioskconfiguration-delete.md
Title: "Delete windowsKioskConfiguration" description: "Deletes a windowsKioskConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windowsKioskConfiguration](../resources/intune-deviceconfig-windowskioskconfiguration.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 Deviceconfig Windowskioskconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowskioskconfiguration-get.md
Title: "Get windowsKioskConfiguration" description: "Read properties and relationships of the windowsKioskConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsKioskConfiguration](../resources/intune-deviceconfig-windowskioskconfiguration.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: 3186
} } ```-----
v1.0 Intune Deviceconfig Windowskioskconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowskioskconfiguration-list.md
Title: "List windowsKioskConfigurations" description: "List properties and relationships of the windowsKioskConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsKioskConfiguration](../resources/intune-deviceconfig-windowskioskconfiguration.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: 3366
] } ```-----
v1.0 Intune Deviceconfig Windowskioskconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowskioskconfiguration-update.md
Title: "Update windowsKioskConfiguration" description: "Update the properties of a windowsKioskConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windowsKioskConfiguration](../resources/intune-deviceconfig-windowskioskconfiguration.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: 3001
} } ```-----
v1.0 Intune Deviceconfig Windowsphone81certificateprofilebase Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsphone81certificateprofilebase-get.md
Title: "Get windowsPhone81CertificateProfileBase" description: "Read properties and relationships of the windowsPhone81CertificateProfileBase object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsPhone81CertificateProfileBase](../resources/intune-deviceconfig-windowsphone81certificateprofilebase.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: 1783
} } ```-----
v1.0 Intune Deviceconfig Windowsphone81certificateprofilebase List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsphone81certificateprofilebase-list.md
Title: "List windowsPhone81CertificateProfileBases" description: "List properties and relationships of the windowsPhone81CertificateProfileBase objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsPhone81CertificateProfileBase](../resources/intune-deviceconfig-windowsphone81certificateprofilebase.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: 1887
] } ```-----
v1.0 Intune Deviceconfig Windowsphone81compliancepolicy Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsphone81compliancepolicy-create.md
Title: "Create windowsPhone81CompliancePolicy" description: "Create a new windowsPhone81CompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windowsPhone81CompliancePolicy](../resources/intune-deviceconfig-windowsphone81compliancepolicy.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: 841
"storageRequireEncryption": true } ```-----
v1.0 Intune Deviceconfig Windowsphone81compliancepolicy Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsphone81compliancepolicy-delete.md
Title: "Delete windowsPhone81CompliancePolicy" description: "Deletes a windowsPhone81CompliancePolicy."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windowsPhone81CompliancePolicy](../resources/intune-deviceconfig-windowsphone81compliancepolicy.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 Deviceconfig Windowsphone81compliancepolicy Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsphone81compliancepolicy-get.md
Title: "Get windowsPhone81CompliancePolicy" description: "Read properties and relationships of the windowsPhone81CompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsPhone81CompliancePolicy](../resources/intune-deviceconfig-windowsphone81compliancepolicy.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: 902
} } ```-----
v1.0 Intune Deviceconfig Windowsphone81compliancepolicy List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsphone81compliancepolicy-list.md
Title: "List windowsPhone81CompliancePolicies" description: "List properties and relationships of the windowsPhone81CompliancePolicy objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsPhone81CompliancePolicy](../resources/intune-deviceconfig-windowsphone81compliancepolicy.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: 958
] } ```-----
v1.0 Intune Deviceconfig Windowsphone81compliancepolicy Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsphone81compliancepolicy-update.md
Title: "Update windowsPhone81CompliancePolicy" description: "Update the properties of a windowsPhone81CompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windowsPhone81CompliancePolicy](../resources/intune-deviceconfig-windowsphone81compliancepolicy.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: 841
"storageRequireEncryption": true } ```-----
v1.0 Intune Deviceconfig Windowsphone81customconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsphone81customconfiguration-create.md
Title: "Create windowsPhone81CustomConfiguration" description: "Create a new windowsPhone81CustomConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windowsPhone81CustomConfiguration](../resources/intune-deviceconfig-windowsphone81customconfiguration.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: 1516
] } ```-----
v1.0 Intune Deviceconfig Windowsphone81customconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsphone81customconfiguration-delete.md
Title: "Delete windowsPhone81CustomConfiguration" description: "Deletes a windowsPhone81CustomConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windowsPhone81CustomConfiguration](../resources/intune-deviceconfig-windowsphone81customconfiguration.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 Deviceconfig Windowsphone81customconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsphone81customconfiguration-get.md
Title: "Get windowsPhone81CustomConfiguration" description: "Read properties and relationships of the windowsPhone81CustomConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsPhone81CustomConfiguration](../resources/intune-deviceconfig-windowsphone81customconfiguration.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: 1619
} } ```-----
v1.0 Intune Deviceconfig Windowsphone81customconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsphone81customconfiguration-list.md
Title: "List windowsPhone81CustomConfigurations" description: "List properties and relationships of the windowsPhone81CustomConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsPhone81CustomConfiguration](../resources/intune-deviceconfig-windowsphone81customconfiguration.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: 1717
] } ```-----
v1.0 Intune Deviceconfig Windowsphone81customconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsphone81customconfiguration-update.md
Title: "Update windowsPhone81CustomConfiguration" description: "Update the properties of a windowsPhone81CustomConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windowsPhone81CustomConfiguration](../resources/intune-deviceconfig-windowsphone81customconfiguration.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: 1516
] } ```-----
v1.0 Intune Deviceconfig Windowsphone81generalconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsphone81generalconfiguration-create.md
Title: "Create windowsPhone81GeneralConfiguration" description: "Create a new windowsPhone81GeneralConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windowsPhone81GeneralConfiguration](../resources/intune-deviceconfig-windowsphone81generalconfiguration.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: 2498
"windowsStoreBlocked": true } ```-----
v1.0 Intune Deviceconfig Windowsphone81generalconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsphone81generalconfiguration-delete.md
Title: "Delete windowsPhone81GeneralConfiguration" description: "Deletes a windowsPhone81GeneralConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windowsPhone81GeneralConfiguration](../resources/intune-deviceconfig-windowsphone81generalconfiguration.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 Deviceconfig Windowsphone81generalconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsphone81generalconfiguration-get.md
Title: "Get windowsPhone81GeneralConfiguration" description: "Read properties and relationships of the windowsPhone81GeneralConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsPhone81GeneralConfiguration](../resources/intune-deviceconfig-windowsphone81generalconfiguration.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: 2655
} } ```-----
v1.0 Intune Deviceconfig Windowsphone81generalconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsphone81generalconfiguration-list.md
Title: "List windowsPhone81GeneralConfigurations" description: "List properties and relationships of the windowsPhone81GeneralConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsPhone81GeneralConfiguration](../resources/intune-deviceconfig-windowsphone81generalconfiguration.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: 2807
] } ```-----
v1.0 Intune Deviceconfig Windowsphone81generalconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsphone81generalconfiguration-update.md
Title: "Update windowsPhone81GeneralConfiguration" description: "Update the properties of a windowsPhone81GeneralConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windowsPhone81GeneralConfiguration](../resources/intune-deviceconfig-windowsphone81generalconfiguration.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: 2498
"windowsStoreBlocked": true } ```-----
v1.0 Intune Deviceconfig Windowsphone81importedpfxcertificateprofile Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsphone81importedpfxcertificateprofile-create.md
Title: "Create windowsPhone81ImportedPFXCertificateProfile" description: "Create a new windowsPhone81ImportedPFXCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windowsPhone81ImportedPFXCertificateProfile](../resources/intune-deviceconfig-windowsphone81importedpfxcertificateprofile.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: 1536
"intendedPurpose": "smimeEncryption" } ```-----
v1.0 Intune Deviceconfig Windowsphone81importedpfxcertificateprofile Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsphone81importedpfxcertificateprofile-delete.md
Title: "Delete windowsPhone81ImportedPFXCertificateProfile" description: "Deletes a windowsPhone81ImportedPFXCertificateProfile."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windowsPhone81ImportedPFXCertificateProfile](../resources/intune-deviceconfig-windowsphone81importedpfxcertificateprofile.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 Deviceconfig Windowsphone81importedpfxcertificateprofile Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsphone81importedpfxcertificateprofile-get.md
Title: "Get windowsPhone81ImportedPFXCertificateProfile" description: "Read properties and relationships of the windowsPhone81ImportedPFXCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsPhone81ImportedPFXCertificateProfile](../resources/intune-deviceconfig-windowsphone81importedpfxcertificateprofile.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: 1633
} } ```-----
v1.0 Intune Deviceconfig Windowsphone81importedpfxcertificateprofile List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsphone81importedpfxcertificateprofile-list.md
Title: "List windowsPhone81ImportedPFXCertificateProfiles" description: "List properties and relationships of the windowsPhone81ImportedPFXCertificateProfile objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsPhone81ImportedPFXCertificateProfile](../resources/intune-deviceconfig-windowsphone81importedpfxcertificateprofile.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: 1725
] } ```-----
v1.0 Intune Deviceconfig Windowsphone81importedpfxcertificateprofile Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsphone81importedpfxcertificateprofile-update.md
Title: "Update windowsPhone81ImportedPFXCertificateProfile" description: "Update the properties of a windowsPhone81ImportedPFXCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windowsPhone81ImportedPFXCertificateProfile](../resources/intune-deviceconfig-windowsphone81importedpfxcertificateprofile.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: 1536
"intendedPurpose": "smimeEncryption" } ```-----
v1.0 Intune Deviceconfig Windowsphone81scepcertificateprofile Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsphone81scepcertificateprofile-create.md
Title: "Create windowsPhone81SCEPCertificateProfile" description: "Create a new windowsPhone81SCEPCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windowsPhone81SCEPCertificateProfile](../resources/intune-deviceconfig-windowsphone81scepcertificateprofile.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: 1977
"subjectAlternativeNameFormatString": "Subject Alternative Name Format String value" } ```-----
v1.0 Intune Deviceconfig Windowsphone81scepcertificateprofile Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsphone81scepcertificateprofile-delete.md
Title: "Delete windowsPhone81SCEPCertificateProfile" description: "Deletes a windowsPhone81SCEPCertificateProfile."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windowsPhone81SCEPCertificateProfile](../resources/intune-deviceconfig-windowsphone81scepcertificateprofile.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 Deviceconfig Windowsphone81scepcertificateprofile Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsphone81scepcertificateprofile-get.md
Title: "Get windowsPhone81SCEPCertificateProfile" description: "Read properties and relationships of the windowsPhone81SCEPCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsPhone81SCEPCertificateProfile](../resources/intune-deviceconfig-windowsphone81scepcertificateprofile.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: 2102
} } ```-----
v1.0 Intune Deviceconfig Windowsphone81scepcertificateprofile List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsphone81scepcertificateprofile-list.md
Title: "List windowsPhone81SCEPCertificateProfiles" description: "List properties and relationships of the windowsPhone81SCEPCertificateProfile objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsPhone81SCEPCertificateProfile](../resources/intune-deviceconfig-windowsphone81scepcertificateprofile.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: 2222
] } ```-----
v1.0 Intune Deviceconfig Windowsphone81scepcertificateprofile Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsphone81scepcertificateprofile-update.md
Title: "Update windowsPhone81SCEPCertificateProfile" description: "Update the properties of a windowsPhone81SCEPCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windowsPhone81SCEPCertificateProfile](../resources/intune-deviceconfig-windowsphone81scepcertificateprofile.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: 1977
"subjectAlternativeNameFormatString": "Subject Alternative Name Format String value" } ```-----
v1.0 Intune Deviceconfig Windowsphone81trustedrootcertificate Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsphone81trustedrootcertificate-create.md
Title: "Create windowsPhone81TrustedRootCertificate" description: "Create a new windowsPhone81TrustedRootCertificate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windowsPhone81TrustedRootCertificate](../resources/intune-deviceconfig-windowsphone81trustedrootcertificate.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: 1319
"certFileName": "Cert File Name value" } ```-----
v1.0 Intune Deviceconfig Windowsphone81trustedrootcertificate Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsphone81trustedrootcertificate-delete.md
Title: "Delete windowsPhone81TrustedRootCertificate" description: "Deletes a windowsPhone81TrustedRootCertificate."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windowsPhone81TrustedRootCertificate](../resources/intune-deviceconfig-windowsphone81trustedrootcertificate.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 Deviceconfig Windowsphone81trustedrootcertificate Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsphone81trustedrootcertificate-get.md
Title: "Get windowsPhone81TrustedRootCertificate" description: "Read properties and relationships of the windowsPhone81TrustedRootCertificate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsPhone81TrustedRootCertificate](../resources/intune-deviceconfig-windowsphone81trustedrootcertificate.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: 1406
} } ```-----
v1.0 Intune Deviceconfig Windowsphone81trustedrootcertificate List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsphone81trustedrootcertificate-list.md
Title: "List windowsPhone81TrustedRootCertificates" description: "List properties and relationships of the windowsPhone81TrustedRootCertificate objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsPhone81TrustedRootCertificate](../resources/intune-deviceconfig-windowsphone81trustedrootcertificate.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: 1488
] } ```-----
v1.0 Intune Deviceconfig Windowsphone81trustedrootcertificate Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsphone81trustedrootcertificate-update.md
Title: "Update windowsPhone81TrustedRootCertificate" description: "Update the properties of a windowsPhone81TrustedRootCertificate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windowsPhone81TrustedRootCertificate](../resources/intune-deviceconfig-windowsphone81trustedrootcertificate.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: 1319
"certFileName": "Cert File Name value" } ```-----
v1.0 Intune Deviceconfig Windowsphone81vpnconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsphone81vpnconfiguration-create.md
Title: "Create windowsPhone81VpnConfiguration" description: "Create a new windowsPhone81VpnConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windowsPhone81VpnConfiguration](../resources/intune-deviceconfig-windowsphone81vpnconfiguration.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: 2188
] } ```-----
v1.0 Intune Deviceconfig Windowsphone81vpnconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsphone81vpnconfiguration-delete.md
Title: "Delete windowsPhone81VpnConfiguration" description: "Deletes a windowsPhone81VpnConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windowsPhone81VpnConfiguration](../resources/intune-deviceconfig-windowsphone81vpnconfiguration.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 Deviceconfig Windowsphone81vpnconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsphone81vpnconfiguration-get.md
Title: "Get windowsPhone81VpnConfiguration" description: "Read properties and relationships of the windowsPhone81VpnConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsPhone81VpnConfiguration](../resources/intune-deviceconfig-windowsphone81vpnconfiguration.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: 2329
} } ```-----
v1.0 Intune Deviceconfig Windowsphone81vpnconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsphone81vpnconfiguration-list.md
Title: "List windowsPhone81VpnConfigurations" description: "List properties and relationships of the windowsPhone81VpnConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsPhone81VpnConfiguration](../resources/intune-deviceconfig-windowsphone81vpnconfiguration.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: 2465
] } ```-----
v1.0 Intune Deviceconfig Windowsphone81vpnconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsphone81vpnconfiguration-update.md
Title: "Update windowsPhone81VpnConfiguration" description: "Update the properties of a windowsPhone81VpnConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windowsPhone81VpnConfiguration](../resources/intune-deviceconfig-windowsphone81vpnconfiguration.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: 2188
] } ```-----
v1.0 Intune Deviceconfig Windowsphoneeasemailprofileconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsphoneeasemailprofileconfiguration-create.md
Title: "Create windowsPhoneEASEmailProfileConfiguration" description: "Create a new windowsPhoneEASEmailProfileConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windowsPhoneEASEmailProfileConfiguration](../resources/intune-deviceconfig-windowsphoneeasemailprofileconfiguration.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: 1739
"requireSsl": true } ```-----
v1.0 Intune Deviceconfig Windowsphoneeasemailprofileconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsphoneeasemailprofileconfiguration-delete.md
Title: "Delete windowsPhoneEASEmailProfileConfiguration" description: "Deletes a windowsPhoneEASEmailProfileConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windowsPhoneEASEmailProfileConfiguration](../resources/intune-deviceconfig-windowsphoneeasemailprofileconfiguration.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 Deviceconfig Windowsphoneeasemailprofileconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsphoneeasemailprofileconfiguration-get.md
Title: "Get windowsPhoneEASEmailProfileConfiguration" description: "Read properties and relationships of the windowsPhoneEASEmailProfileConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsPhoneEASEmailProfileConfiguration](../resources/intune-deviceconfig-windowsphoneeasemailprofileconfiguration.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: 1850
} } ```-----
v1.0 Intune Deviceconfig Windowsphoneeasemailprofileconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsphoneeasemailprofileconfiguration-list.md
Title: "List windowsPhoneEASEmailProfileConfigurations" description: "List properties and relationships of the windowsPhoneEASEmailProfileConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsPhoneEASEmailProfileConfiguration](../resources/intune-deviceconfig-windowsphoneeasemailprofileconfiguration.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: 1956
] } ```-----
v1.0 Intune Deviceconfig Windowsphoneeasemailprofileconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsphoneeasemailprofileconfiguration-update.md
Title: "Update windowsPhoneEASEmailProfileConfiguration" description: "Update the properties of a windowsPhoneEASEmailProfileConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windowsPhoneEASEmailProfileConfiguration](../resources/intune-deviceconfig-windowsphoneeasemailprofileconfiguration.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: 1739
"requireSsl": true } ```-----
v1.0 Intune Deviceconfig Windowsprivacydataaccesscontrolitem Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsprivacydataaccesscontrolitem-create.md
Title: "Create windowsPrivacyDataAccessControlItem" description: "Create a new windowsPrivacyDataAccessControlItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windowsPrivacyDataAccessControlItem](../resources/intune-deviceconfig-windowsprivacydataaccesscontrolitem.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: 299
"appDisplayName": "App Display Name value" } ```-----
v1.0 Intune Deviceconfig Windowsprivacydataaccesscontrolitem Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsprivacydataaccesscontrolitem-delete.md
Title: "Delete windowsPrivacyDataAccessControlItem" description: "Deletes a windowsPrivacyDataAccessControlItem."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windowsPrivacyDataAccessControlItem](../resources/intune-deviceconfig-windowsprivacydataaccesscontrolitem.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 Deviceconfig Windowsprivacydataaccesscontrolitem Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsprivacydataaccesscontrolitem-get.md
Title: "Get windowsPrivacyDataAccessControlItem" description: "Read properties and relationships of the windowsPrivacyDataAccessControlItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsPrivacyDataAccessControlItem](../resources/intune-deviceconfig-windowsprivacydataaccesscontrolitem.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: 330
} } ```-----
v1.0 Intune Deviceconfig Windowsprivacydataaccesscontrolitem List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsprivacydataaccesscontrolitem-list.md
Title: "List windowsPrivacyDataAccessControlItems" description: "List properties and relationships of the windowsPrivacyDataAccessControlItem objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsPrivacyDataAccessControlItem](../resources/intune-deviceconfig-windowsprivacydataaccesscontrolitem.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: 356
] } ```-----
v1.0 Intune Deviceconfig Windowsprivacydataaccesscontrolitem Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsprivacydataaccesscontrolitem-update.md
Title: "Update windowsPrivacyDataAccessControlItem" description: "Update the properties of a windowsPrivacyDataAccessControlItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windowsPrivacyDataAccessControlItem](../resources/intune-deviceconfig-windowsprivacydataaccesscontrolitem.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: 299
"appDisplayName": "App Display Name value" } ```-----
v1.0 Intune Deviceconfig Windowsupdateforbusinessconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsupdateforbusinessconfiguration-create.md
Title: "Create windowsUpdateForBusinessConfiguration" description: "Create a new windowsUpdateForBusinessConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windowsUpdateForBusinessConfiguration](../resources/intune-deviceconfig-windowsupdateforbusinessconfiguration.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: 3000
"allowWindows11Upgrade": true } ```-----
v1.0 Intune Deviceconfig Windowsupdateforbusinessconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsupdateforbusinessconfiguration-delete.md
Title: "Delete windowsUpdateForBusinessConfiguration" description: "Deletes a windowsUpdateForBusinessConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windowsUpdateForBusinessConfiguration](../resources/intune-deviceconfig-windowsupdateforbusinessconfiguration.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 Deviceconfig Windowsupdateforbusinessconfiguration Extendfeatureupdatespause https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsupdateforbusinessconfiguration-extendfeatureupdatespause.md
Title: "extendFeatureUpdatesPause action" description: "Extend Feature Updates Pause for a Windows Update for Business ring."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Extend Feature Updates Pause for a Windows Update for Business ring.
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Deviceconfig Windowsupdateforbusinessconfiguration Extendqualityupdatespause https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsupdateforbusinessconfiguration-extendqualityupdatespause.md
Title: "extendQualityUpdatesPause action" description: "Extend Quality Updates Pause for a Windows Update for Business ring."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Extend Quality Updates Pause for a Windows Update for Business ring.
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Deviceconfig Windowsupdateforbusinessconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsupdateforbusinessconfiguration-get.md
Title: "Get windowsUpdateForBusinessConfiguration" description: "Read properties and relationships of the windowsUpdateForBusinessConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsUpdateForBusinessConfiguration](../resources/intune-deviceconfig-windowsupdateforbusinessconfiguration.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: 3163
} } ```-----
v1.0 Intune Deviceconfig Windowsupdateforbusinessconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsupdateforbusinessconfiguration-list.md
Title: "List windowsUpdateForBusinessConfigurations" description: "List properties and relationships of the windowsUpdateForBusinessConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsUpdateForBusinessConfiguration](../resources/intune-deviceconfig-windowsupdateforbusinessconfiguration.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: 3321
] } ```-----
v1.0 Intune Deviceconfig Windowsupdateforbusinessconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsupdateforbusinessconfiguration-update.md
Title: "Update windowsUpdateForBusinessConfiguration" description: "Update the properties of a windowsUpdateForBusinessConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windowsUpdateForBusinessConfiguration](../resources/intune-deviceconfig-windowsupdateforbusinessconfiguration.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: 3000
"allowWindows11Upgrade": true } ```-----
v1.0 Intune Deviceconfig Windowsvpnconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsvpnconfiguration-get.md
Title: "Get windowsVpnConfiguration" description: "Read properties and relationships of the windowsVpnConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsVpnConfiguration](../resources/intune-deviceconfig-windowsvpnconfiguration.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: 1575
} } ```-----
v1.0 Intune Deviceconfig Windowsvpnconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowsvpnconfiguration-list.md
Title: "List windowsVpnConfigurations" description: "List properties and relationships of the windowsVpnConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsVpnConfiguration](../resources/intune-deviceconfig-windowsvpnconfiguration.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: 1673
] } ```-----
v1.0 Intune Deviceconfig Windowswificonfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowswificonfiguration-create.md
Title: "Create windowsWifiConfiguration" description: "Create a new windowsWifiConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windowsWifiConfiguration](../resources/intune-deviceconfig-windowswificonfiguration.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: 1731
"forceFIPSCompliance": true } ```-----
v1.0 Intune Deviceconfig Windowswificonfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowswificonfiguration-delete.md
Title: "Delete windowsWifiConfiguration" description: "Deletes a windowsWifiConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windowsWifiConfiguration](../resources/intune-deviceconfig-windowswificonfiguration.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 Deviceconfig Windowswificonfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowswificonfiguration-get.md
Title: "Get windowsWifiConfiguration" description: "Read properties and relationships of the windowsWifiConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsWifiConfiguration](../resources/intune-deviceconfig-windowswificonfiguration.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: 1840
} } ```-----
v1.0 Intune Deviceconfig Windowswificonfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowswificonfiguration-list.md
Title: "List windowsWifiConfigurations" description: "List properties and relationships of the windowsWifiConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsWifiConfiguration](../resources/intune-deviceconfig-windowswificonfiguration.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: 1944
] } ```-----
v1.0 Intune Deviceconfig Windowswificonfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowswificonfiguration-update.md
Title: "Update windowsWifiConfiguration" description: "Update the properties of a windowsWifiConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windowsWifiConfiguration](../resources/intune-deviceconfig-windowswificonfiguration.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: 1731
"forceFIPSCompliance": true } ```-----
v1.0 Intune Deviceconfig Windowswifienterpriseeapconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowswifienterpriseeapconfiguration-create.md
Title: "Create windowsWifiEnterpriseEAPConfiguration" description: "Create a new windowsWifiEnterpriseEAPConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windowsWifiEnterpriseEAPConfiguration](../resources/intune-deviceconfig-windowswifienterpriseeapconfiguration.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: 2867
"authenticationType": "user" } ```-----
v1.0 Intune Deviceconfig Windowswifienterpriseeapconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowswifienterpriseeapconfiguration-delete.md
Title: "Delete windowsWifiEnterpriseEAPConfiguration" description: "Deletes a windowsWifiEnterpriseEAPConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windowsWifiEnterpriseEAPConfiguration](../resources/intune-deviceconfig-windowswifienterpriseeapconfiguration.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 Deviceconfig Windowswifienterpriseeapconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowswifienterpriseeapconfiguration-get.md
Title: "Get windowsWifiEnterpriseEAPConfiguration" description: "Read properties and relationships of the windowsWifiEnterpriseEAPConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsWifiEnterpriseEAPConfiguration](../resources/intune-deviceconfig-windowswifienterpriseeapconfiguration.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: 3028
} } ```-----
v1.0 Intune Deviceconfig Windowswifienterpriseeapconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowswifienterpriseeapconfiguration-list.md
Title: "List windowsWifiEnterpriseEAPConfigurations" description: "List properties and relationships of the windowsWifiEnterpriseEAPConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsWifiEnterpriseEAPConfiguration](../resources/intune-deviceconfig-windowswifienterpriseeapconfiguration.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: 3184
] } ```-----
v1.0 Intune Deviceconfig Windowswifienterpriseeapconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowswifienterpriseeapconfiguration-update.md
Title: "Update windowsWifiEnterpriseEAPConfiguration" description: "Update the properties of a windowsWifiEnterpriseEAPConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windowsWifiEnterpriseEAPConfiguration](../resources/intune-deviceconfig-windowswifienterpriseeapconfiguration.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: 2867
"authenticationType": "user" } ```-----
v1.0 Intune Deviceconfig Windowswirednetworkconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowswirednetworkconfiguration-create.md
Title: "Create windowsWiredNetworkConfiguration" description: "Create a new windowsWiredNetworkConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windowsWiredNetworkConfiguration](../resources/intune-deviceconfig-windowswirednetworkconfiguration.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: 2092
"forceFIPSCompliance": true } ```-----
v1.0 Intune Deviceconfig Windowswirednetworkconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowswirednetworkconfiguration-delete.md
Title: "Delete windowsWiredNetworkConfiguration" description: "Deletes a windowsWiredNetworkConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windowsWiredNetworkConfiguration](../resources/intune-deviceconfig-windowswirednetworkconfiguration.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 Deviceconfig Windowswirednetworkconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowswirednetworkconfiguration-get.md
Title: "Get windowsWiredNetworkConfiguration" description: "Read properties and relationships of the windowsWiredNetworkConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsWiredNetworkConfiguration](../resources/intune-deviceconfig-windowswirednetworkconfiguration.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: 2217
} } ```-----
v1.0 Intune Deviceconfig Windowswirednetworkconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowswirednetworkconfiguration-list.md
Title: "List windowsWiredNetworkConfigurations" description: "List properties and relationships of the windowsWiredNetworkConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsWiredNetworkConfiguration](../resources/intune-deviceconfig-windowswirednetworkconfiguration.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: 2337
] } ```-----
v1.0 Intune Deviceconfig Windowswirednetworkconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfig-windowswirednetworkconfiguration-update.md
Title: "Update windowsWiredNetworkConfiguration" description: "Update the properties of a windowsWiredNetworkConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windowsWiredNetworkConfiguration](../resources/intune-deviceconfig-windowswirednetworkconfiguration.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: 2092
"forceFIPSCompliance": true } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementcomplianceactionitem Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementcomplianceactionitem-create.md
Title: "Create deviceManagementComplianceActionItem" description: "Create a new deviceManagementComplianceActionItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceManagementComplianceActionItem](../resources/intune-deviceconfigv2-devicemanagementcomplianceactionitem.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: 330
] } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementcomplianceactionitem Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementcomplianceactionitem-delete.md
Title: "Delete deviceManagementComplianceActionItem" description: "Deletes a deviceManagementComplianceActionItem."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceManagementComplianceActionItem](../resources/intune-deviceconfigv2-devicemanagementcomplianceactionitem.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 Deviceconfigv2 Devicemanagementcomplianceactionitem Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementcomplianceactionitem-get.md
Title: "Get deviceManagementComplianceActionItem" description: "Read properties and relationships of the deviceManagementComplianceActionItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementComplianceActionItem](../resources/intune-deviceconfigv2-devicemanagementcomplianceactionitem.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: 365
} } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementcomplianceactionitem List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementcomplianceactionitem-list.md
Title: "List deviceManagementComplianceActionItems" description: "List properties and relationships of the deviceManagementComplianceActionItem objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceManagementComplianceActionItem](../resources/intune-deviceconfigv2-devicemanagementcomplianceactionitem.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: 395
] } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementcomplianceactionitem Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementcomplianceactionitem-update.md
Title: "Update deviceManagementComplianceActionItem" description: "Update the properties of a deviceManagementComplianceActionItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementComplianceActionItem](../resources/intune-deviceconfigv2-devicemanagementcomplianceactionitem.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: 330
] } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementcompliancepolicy Assign https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementcompliancepolicy-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)|
Content-Length: 587
] } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementcompliancepolicy Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementcompliancepolicy-create.md
Title: "Create deviceManagementCompliancePolicy" description: "Create a new deviceManagementCompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceManagementCompliancePolicy](../resources/intune-deviceconfigv2-devicemanagementcompliancepolicy.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: 517
"isAssigned": true } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementcompliancepolicy Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementcompliancepolicy-delete.md
Title: "Delete deviceManagementCompliancePolicy" description: "Deletes a deviceManagementCompliancePolicy."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceManagementCompliancePolicy](../resources/intune-deviceconfigv2-devicemanagementcompliancepolicy.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 Deviceconfigv2 Devicemanagementcompliancepolicy Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementcompliancepolicy-get.md
Title: "Get deviceManagementCompliancePolicy" description: "Read properties and relationships of the deviceManagementCompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementCompliancePolicy](../resources/intune-deviceconfigv2-devicemanagementcompliancepolicy.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: 564
} } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementcompliancepolicy List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementcompliancepolicy-list.md
Title: "List deviceManagementCompliancePolicies" description: "List properties and relationships of the deviceManagementCompliancePolicy objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceManagementCompliancePolicy](../resources/intune-deviceconfigv2-devicemanagementcompliancepolicy.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: 606
] } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementcompliancepolicy Setscheduledactions https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementcompliancepolicy-setscheduledactions.md
Title: "setScheduledActions 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: 218
] } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementcompliancepolicy Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementcompliancepolicy-update.md
Title: "Update deviceManagementCompliancePolicy" description: "Update the properties of a deviceManagementCompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementCompliancePolicy](../resources/intune-deviceconfigv2-devicemanagementcompliancepolicy.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: 517
"isAssigned": true } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementcompliancescheduledactionforrule Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementcompliancescheduledactionforrule-create.md
Title: "Create deviceManagementComplianceScheduledActionForRule" description: "Create a new deviceManagementComplianceScheduledActionForRule object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceManagementComplianceScheduledActionForRule](../resources/intune-deviceconfigv2-devicemanagementcompliancescheduledactionforrule.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: 173
"ruleName": "Rule Name value" } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementcompliancescheduledactionforrule Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementcompliancescheduledactionforrule-delete.md
Title: "Delete deviceManagementComplianceScheduledActionForRule" description: "Deletes a deviceManagementComplianceScheduledActionForRule."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceManagementComplianceScheduledActionForRule](../resources/intune-deviceconfigv2-devicemanagementcompliancescheduledactionforrule.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 Deviceconfigv2 Devicemanagementcompliancescheduledactionforrule Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementcompliancescheduledactionforrule-get.md
Title: "Get deviceManagementComplianceScheduledActionForRule" description: "Read properties and relationships of the deviceManagementComplianceScheduledActionForRule object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementComplianceScheduledActionForRule](../resources/intune-deviceconfigv2-devicemanagementcompliancescheduledactionforrule.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: 198
} } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementcompliancescheduledactionforrule List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementcompliancescheduledactionforrule-list.md
Title: "List deviceManagementComplianceScheduledActionForRules" description: "List properties and relationships of the deviceManagementComplianceScheduledActionForRule objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceManagementComplianceScheduledActionForRule](../resources/intune-deviceconfigv2-devicemanagementcompliancescheduledactionforrule.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: 218
] } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementcompliancescheduledactionforrule Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementcompliancescheduledactionforrule-update.md
Title: "Update deviceManagementComplianceScheduledActionForRule" description: "Update the properties of a deviceManagementComplianceScheduledActionForRule object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementComplianceScheduledActionForRule](../resources/intune-deviceconfigv2-devicemanagementcompliancescheduledactionforrule.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: 173
"ruleName": "Rule Name value" } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationcategory Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationcategory-create.md
Title: "Create deviceManagementConfigurationCategory" description: "Create a new deviceManagementConfigurationCategory object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceManagementConfigurationCategory](../resources/intune-deviceconfigv2-devicemanagementconfigurationcategory.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: 572
] } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationcategory Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationcategory-delete.md
Title: "Delete deviceManagementConfigurationCategory" description: "Deletes a deviceManagementConfigurationCategory."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceManagementConfigurationCategory](../resources/intune-deviceconfigv2-devicemanagementconfigurationcategory.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 Deviceconfigv2 Devicemanagementconfigurationcategory Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationcategory-get.md
Title: "Get deviceManagementConfigurationCategory" description: "Read properties and relationships of the deviceManagementConfigurationCategory object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementConfigurationCategory](../resources/intune-deviceconfigv2-devicemanagementconfigurationcategory.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: 621
} } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationcategory List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationcategory-list.md
Title: "List deviceManagementConfigurationCategories" description: "List properties and relationships of the deviceManagementConfigurationCategory objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceManagementConfigurationCategory](../resources/intune-deviceconfigv2-devicemanagementconfigurationcategory.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: 665
] } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationcategory Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationcategory-update.md
Title: "Update deviceManagementConfigurationCategory" description: "Update the properties of a deviceManagementConfigurationCategory object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementConfigurationCategory](../resources/intune-deviceconfigv2-devicemanagementconfigurationcategory.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: 572
] } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationchoicesettingcollectiondefinition Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationchoicesettingcollectiondefinition-create.md
Title: "Create deviceManagementConfigurationChoiceSettingCollectionDefinition" description: "Create a new deviceManagementConfigurationChoiceSettingCollectionDefinition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceManagementConfigurationChoiceSettingCollectionDefinition](../resources/intune-deviceconfigv2-devicemanagementconfigurationchoicesettingcollectiondefinition.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: 19168
"minimumCount": 12 } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationchoicesettingcollectiondefinition Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationchoicesettingcollectiondefinition-delete.md
Title: "Delete deviceManagementConfigurationChoiceSettingCollectionDefinition" description: "Deletes a deviceManagementConfigurationChoiceSettingCollectionDefinition."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceManagementConfigurationChoiceSettingCollectionDefinition](../resources/intune-deviceconfigv2-devicemanagementconfigurationchoicesettingcollectiondefinition.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 Deviceconfigv2 Devicemanagementconfigurationchoicesettingcollectiondefinition Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationchoicesettingcollectiondefinition-get.md
Title: "Get deviceManagementConfigurationChoiceSettingCollectionDefinition" description: "Read properties and relationships of the deviceManagementConfigurationChoiceSettingCollectionDefinition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementConfigurationChoiceSettingCollectionDefinition](../resources/intune-deviceconfigv2-devicemanagementconfigurationchoicesettingcollectiondefinition.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: 19747
} } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationchoicesettingcollectiondefinition List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationchoicesettingcollectiondefinition-list.md
Title: "List deviceManagementConfigurationChoiceSettingCollectionDefinitions" description: "List properties and relationships of the deviceManagementConfigurationChoiceSettingCollectionDefinition objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceManagementConfigurationChoiceSettingCollectionDefinition](../resources/intune-deviceconfigv2-devicemanagementconfigurationchoicesettingcollectiondefinition.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: 20321
] } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationchoicesettingcollectiondefinition Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationchoicesettingcollectiondefinition-update.md
Title: "Update deviceManagementConfigurationChoiceSettingCollectionDefinition" description: "Update the properties of a deviceManagementConfigurationChoiceSettingCollectionDefinition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementConfigurationChoiceSettingCollectionDefinition](../resources/intune-deviceconfigv2-devicemanagementconfigurationchoicesettingcollectiondefinition.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: 19168
"minimumCount": 12 } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationchoicesettingdefinition Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationchoicesettingdefinition-create.md
Title: "Create deviceManagementConfigurationChoiceSettingDefinition" description: "Create a new deviceManagementConfigurationChoiceSettingDefinition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceManagementConfigurationChoiceSettingDefinition](../resources/intune-deviceconfigv2-devicemanagementconfigurationchoicesettingdefinition.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: 19112
"defaultOptionId": "Default Option Id value" } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationchoicesettingdefinition Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationchoicesettingdefinition-delete.md
Title: "Delete deviceManagementConfigurationChoiceSettingDefinition" description: "Deletes a deviceManagementConfigurationChoiceSettingDefinition."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceManagementConfigurationChoiceSettingDefinition](../resources/intune-deviceconfigv2-devicemanagementconfigurationchoicesettingdefinition.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 Deviceconfigv2 Devicemanagementconfigurationchoicesettingdefinition Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationchoicesettingdefinition-get.md
Title: "Get deviceManagementConfigurationChoiceSettingDefinition" description: "Read properties and relationships of the deviceManagementConfigurationChoiceSettingDefinition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementConfigurationChoiceSettingDefinition](../resources/intune-deviceconfigv2-devicemanagementconfigurationchoicesettingdefinition.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: 19687
} } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationchoicesettingdefinition List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationchoicesettingdefinition-list.md
Title: "List deviceManagementConfigurationChoiceSettingDefinitions" description: "List properties and relationships of the deviceManagementConfigurationChoiceSettingDefinition objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceManagementConfigurationChoiceSettingDefinition](../resources/intune-deviceconfigv2-devicemanagementconfigurationchoicesettingdefinition.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: 20257
] } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationchoicesettingdefinition Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationchoicesettingdefinition-update.md
Title: "Update deviceManagementConfigurationChoiceSettingDefinition" description: "Update the properties of a deviceManagementConfigurationChoiceSettingDefinition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementConfigurationChoiceSettingDefinition](../resources/intune-deviceconfigv2-devicemanagementconfigurationchoicesettingdefinition.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: 19112
"defaultOptionId": "Default Option Id value" } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationpolicy Assign https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationpolicy-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)|
Content-Length: 587
] } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationpolicy Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationpolicy-create.md
Title: "Create deviceManagementConfigurationPolicy" description: "Create a new deviceManagementConfigurationPolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceManagementConfigurationPolicy](../resources/intune-deviceconfigv2-devicemanagementconfigurationpolicy.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: 981
} } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationpolicy Createcopy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationpolicy-createcopy.md
Title: "createCopy 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: 1050
} } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationpolicy Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationpolicy-delete.md
Title: "Delete deviceManagementConfigurationPolicy" description: "Deletes a deviceManagementConfigurationPolicy."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceManagementConfigurationPolicy](../resources/intune-deviceconfigv2-devicemanagementconfigurationpolicy.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 Deviceconfigv2 Devicemanagementconfigurationpolicy Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationpolicy-get.md
Title: "Get deviceManagementConfigurationPolicy" description: "Read properties and relationships of the deviceManagementConfigurationPolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementConfigurationPolicy](../resources/intune-deviceconfigv2-devicemanagementconfigurationpolicy.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: 1050
} } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationpolicy List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationpolicy-list.md
Title: "List deviceManagementConfigurationPolicies" description: "List properties and relationships of the deviceManagementConfigurationPolicy objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceManagementConfigurationPolicy](../resources/intune-deviceconfigv2-devicemanagementconfigurationpolicy.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: 1114
] } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationpolicy Reorder https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationpolicy-reorder.md
Title: "reorder 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 Deviceconfigv2 Devicemanagementconfigurationpolicy Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationpolicy-update.md
Title: "Update deviceManagementConfigurationPolicy" description: "Update the properties of a deviceManagementConfigurationPolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementConfigurationPolicy](../resources/intune-deviceconfigv2-devicemanagementconfigurationpolicy.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: 981
} } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationpolicyassignment Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationpolicyassignment-create.md
Title: "Create deviceManagementConfigurationPolicyAssignment" description: "Create a new deviceManagementConfigurationPolicyAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceManagementConfigurationPolicyAssignment](../resources/intune-deviceconfigv2-devicemanagementconfigurationpolicyassignment.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: 514
"sourceId": "Source Id value" } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationpolicyassignment Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationpolicyassignment-delete.md
Title: "Delete deviceManagementConfigurationPolicyAssignment" description: "Deletes a deviceManagementConfigurationPolicyAssignment."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceManagementConfigurationPolicyAssignment](../resources/intune-deviceconfigv2-devicemanagementconfigurationpolicyassignment.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 Deviceconfigv2 Devicemanagementconfigurationpolicyassignment Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationpolicyassignment-get.md
Title: "Get deviceManagementConfigurationPolicyAssignment" description: "Read properties and relationships of the deviceManagementConfigurationPolicyAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementConfigurationPolicyAssignment](../resources/intune-deviceconfigv2-devicemanagementconfigurationpolicyassignment.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: 553
} } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationpolicyassignment List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationpolicyassignment-list.md
Title: "List deviceManagementConfigurationPolicyAssignments" description: "List properties and relationships of the deviceManagementConfigurationPolicyAssignment objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceManagementConfigurationPolicyAssignment](../resources/intune-deviceconfigv2-devicemanagementconfigurationpolicyassignment.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: 587
] } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationpolicyassignment Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationpolicyassignment-update.md
Title: "Update deviceManagementConfigurationPolicyAssignment" description: "Update the properties of a deviceManagementConfigurationPolicyAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementConfigurationPolicyAssignment](../resources/intune-deviceconfigv2-devicemanagementconfigurationpolicyassignment.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: 514
"sourceId": "Source Id value" } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationpolicytemplate Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationpolicytemplate-create.md
Title: "Create deviceManagementConfigurationPolicyTemplate" description: "Create a new deviceManagementConfigurationPolicyTemplate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceManagementConfigurationPolicyTemplate](../resources/intune-deviceconfigv2-devicemanagementconfigurationpolicytemplate.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: 504
"settingTemplateCount": 4 } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationpolicytemplate Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationpolicytemplate-delete.md
Title: "Delete deviceManagementConfigurationPolicyTemplate" description: "Deletes a deviceManagementConfigurationPolicyTemplate."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceManagementConfigurationPolicyTemplate](../resources/intune-deviceconfigv2-devicemanagementconfigurationpolicytemplate.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 Deviceconfigv2 Devicemanagementconfigurationpolicytemplate Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationpolicytemplate-get.md
Title: "Get deviceManagementConfigurationPolicyTemplate" description: "Read properties and relationships of the deviceManagementConfigurationPolicyTemplate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementConfigurationPolicyTemplate](../resources/intune-deviceconfigv2-devicemanagementconfigurationpolicytemplate.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: 549
} } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationpolicytemplate List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationpolicytemplate-list.md
Title: "List deviceManagementConfigurationPolicyTemplates" description: "List properties and relationships of the deviceManagementConfigurationPolicyTemplate objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceManagementConfigurationPolicyTemplate](../resources/intune-deviceconfigv2-devicemanagementconfigurationpolicytemplate.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: 589
] } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationpolicytemplate Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationpolicytemplate-update.md
Title: "Update deviceManagementConfigurationPolicyTemplate" description: "Update the properties of a deviceManagementConfigurationPolicyTemplate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementConfigurationPolicyTemplate](../resources/intune-deviceconfigv2-devicemanagementconfigurationpolicytemplate.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: 504
"settingTemplateCount": 4 } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationredirectsettingdefinition Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationredirectsettingdefinition-create.md
Title: "Create deviceManagementConfigurationRedirectSettingDefinition" description: "Create a new deviceManagementConfigurationRedirectSettingDefinition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceManagementConfigurationRedirectSettingDefinition](../resources/intune-deviceconfigv2-devicemanagementconfigurationredirectsettingdefinition.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: 1445
"redirectReason": "Redirect Reason value" } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationredirectsettingdefinition Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationredirectsettingdefinition-delete.md
Title: "Delete deviceManagementConfigurationRedirectSettingDefinition" description: "Deletes a deviceManagementConfigurationRedirectSettingDefinition."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceManagementConfigurationRedirectSettingDefinition](../resources/intune-deviceconfigv2-devicemanagementconfigurationredirectsettingdefinition.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 Deviceconfigv2 Devicemanagementconfigurationredirectsettingdefinition Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationredirectsettingdefinition-get.md
Title: "Get deviceManagementConfigurationRedirectSettingDefinition" description: "Read properties and relationships of the deviceManagementConfigurationRedirectSettingDefinition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementConfigurationRedirectSettingDefinition](../resources/intune-deviceconfigv2-devicemanagementconfigurationredirectsettingdefinition.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: 1548
} } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationredirectsettingdefinition List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationredirectsettingdefinition-list.md
Title: "List deviceManagementConfigurationRedirectSettingDefinitions" description: "List properties and relationships of the deviceManagementConfigurationRedirectSettingDefinition objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceManagementConfigurationRedirectSettingDefinition](../resources/intune-deviceconfigv2-devicemanagementconfigurationredirectsettingdefinition.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: 1646
] } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationredirectsettingdefinition Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationredirectsettingdefinition-update.md
Title: "Update deviceManagementConfigurationRedirectSettingDefinition" description: "Update the properties of a deviceManagementConfigurationRedirectSettingDefinition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementConfigurationRedirectSettingDefinition](../resources/intune-deviceconfigv2-devicemanagementconfigurationredirectsettingdefinition.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: 1445
"redirectReason": "Redirect Reason value" } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationsetting Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationsetting-create.md
Title: "Create deviceManagementConfigurationSetting" description: "Create a new deviceManagementConfigurationSetting object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceManagementConfigurationSetting](../resources/intune-deviceconfigv2-devicemanagementconfigurationsetting.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: 16178
} } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationsetting Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationsetting-delete.md
Title: "Delete deviceManagementConfigurationSetting" description: "Deletes a deviceManagementConfigurationSetting."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceManagementConfigurationSetting](../resources/intune-deviceconfigv2-devicemanagementconfigurationsetting.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 Deviceconfigv2 Devicemanagementconfigurationsetting Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationsetting-get.md
Title: "Get deviceManagementConfigurationSetting" description: "Read properties and relationships of the deviceManagementConfigurationSetting object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementConfigurationSetting](../resources/intune-deviceconfigv2-devicemanagementconfigurationsetting.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: 16631
} } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationsetting List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationsetting-list.md
Title: "List deviceManagementConfigurationSettings" description: "List properties and relationships of the deviceManagementConfigurationSetting objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceManagementConfigurationSetting](../resources/intune-deviceconfigv2-devicemanagementconfigurationsetting.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: 17079
] } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationsetting Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationsetting-update.md
Title: "Update deviceManagementConfigurationSetting" description: "Update the properties of a deviceManagementConfigurationSetting object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementConfigurationSetting](../resources/intune-deviceconfigv2-devicemanagementconfigurationsetting.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: 16178
} } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationsettingdefinition Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationsettingdefinition-create.md
Title: "Create deviceManagementConfigurationSettingDefinition" description: "Create a new deviceManagementConfigurationSettingDefinition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceManagementConfigurationSettingDefinition](../resources/intune-deviceconfigv2-devicemanagementconfigurationsettingdefinition.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: 1309
"version": "Version value" } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationsettingdefinition Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationsettingdefinition-delete.md
Title: "Delete deviceManagementConfigurationSettingDefinition" description: "Deletes a deviceManagementConfigurationSettingDefinition."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceManagementConfigurationSettingDefinition](../resources/intune-deviceconfigv2-devicemanagementconfigurationsettingdefinition.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 Deviceconfigv2 Devicemanagementconfigurationsettingdefinition Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationsettingdefinition-get.md
Title: "Get deviceManagementConfigurationSettingDefinition" description: "Read properties and relationships of the deviceManagementConfigurationSettingDefinition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementConfigurationSettingDefinition](../resources/intune-deviceconfigv2-devicemanagementconfigurationsettingdefinition.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: 1406
} } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationsettingdefinition List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationsettingdefinition-list.md
Title: "List deviceManagementConfigurationSettingDefinitions" description: "List properties and relationships of the deviceManagementConfigurationSettingDefinition objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceManagementConfigurationSettingDefinition](../resources/intune-deviceconfigv2-devicemanagementconfigurationsettingdefinition.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: 1498
] } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationsettingdefinition Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationsettingdefinition-update.md
Title: "Update deviceManagementConfigurationSettingDefinition" description: "Update the properties of a deviceManagementConfigurationSettingDefinition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementConfigurationSettingDefinition](../resources/intune-deviceconfigv2-devicemanagementconfigurationsettingdefinition.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: 1309
"version": "Version value" } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationsettinggroupcollectiondefinition Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationsettinggroupcollectiondefinition-create.md
Title: "Create deviceManagementConfigurationSettingGroupCollectionDefinition" description: "Create a new deviceManagementConfigurationSettingGroupCollectionDefinition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceManagementConfigurationSettingGroupCollectionDefinition](../resources/intune-deviceconfigv2-devicemanagementconfigurationsettinggroupcollectiondefinition.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: 1836
"minimumCount": 12 } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationsettinggroupcollectiondefinition Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationsettinggroupcollectiondefinition-delete.md
Title: "Delete deviceManagementConfigurationSettingGroupCollectionDefinition" description: "Deletes a deviceManagementConfigurationSettingGroupCollectionDefinition."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceManagementConfigurationSettingGroupCollectionDefinition](../resources/intune-deviceconfigv2-devicemanagementconfigurationsettinggroupcollectiondefinition.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 Deviceconfigv2 Devicemanagementconfigurationsettinggroupcollectiondefinition Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationsettinggroupcollectiondefinition-get.md
Title: "Get deviceManagementConfigurationSettingGroupCollectionDefinition" description: "Read properties and relationships of the deviceManagementConfigurationSettingGroupCollectionDefinition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementConfigurationSettingGroupCollectionDefinition](../resources/intune-deviceconfigv2-devicemanagementconfigurationsettinggroupcollectiondefinition.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: 1971
} } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationsettinggroupcollectiondefinition List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationsettinggroupcollectiondefinition-list.md
Title: "List deviceManagementConfigurationSettingGroupCollectionDefinitions" description: "List properties and relationships of the deviceManagementConfigurationSettingGroupCollectionDefinition objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceManagementConfigurationSettingGroupCollectionDefinition](../resources/intune-deviceconfigv2-devicemanagementconfigurationsettinggroupcollectiondefinition.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: 2101
] } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationsettinggroupcollectiondefinition Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationsettinggroupcollectiondefinition-update.md
Title: "Update deviceManagementConfigurationSettingGroupCollectionDefinition" description: "Update the properties of a deviceManagementConfigurationSettingGroupCollectionDefinition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementConfigurationSettingGroupCollectionDefinition](../resources/intune-deviceconfigv2-devicemanagementconfigurationsettinggroupcollectiondefinition.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: 1836
"minimumCount": 12 } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationsettinggroupdefinition Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationsettinggroupdefinition-create.md
Title: "Create deviceManagementConfigurationSettingGroupDefinition" description: "Create a new deviceManagementConfigurationSettingGroupDefinition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceManagementConfigurationSettingGroupDefinition](../resources/intune-deviceconfigv2-devicemanagementconfigurationsettinggroupdefinition.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: 1780
] } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationsettinggroupdefinition Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationsettinggroupdefinition-delete.md
Title: "Delete deviceManagementConfigurationSettingGroupDefinition" description: "Deletes a deviceManagementConfigurationSettingGroupDefinition."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceManagementConfigurationSettingGroupDefinition](../resources/intune-deviceconfigv2-devicemanagementconfigurationsettinggroupdefinition.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 Deviceconfigv2 Devicemanagementconfigurationsettinggroupdefinition Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationsettinggroupdefinition-get.md
Title: "Get deviceManagementConfigurationSettingGroupDefinition" description: "Read properties and relationships of the deviceManagementConfigurationSettingGroupDefinition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementConfigurationSettingGroupDefinition](../resources/intune-deviceconfigv2-devicemanagementconfigurationsettinggroupdefinition.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: 1911
} } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationsettinggroupdefinition List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationsettinggroupdefinition-list.md
Title: "List deviceManagementConfigurationSettingGroupDefinitions" description: "List properties and relationships of the deviceManagementConfigurationSettingGroupDefinition objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceManagementConfigurationSettingGroupDefinition](../resources/intune-deviceconfigv2-devicemanagementconfigurationsettinggroupdefinition.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: 2037
] } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationsettinggroupdefinition Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationsettinggroupdefinition-update.md
Title: "Update deviceManagementConfigurationSettingGroupDefinition" description: "Update the properties of a deviceManagementConfigurationSettingGroupDefinition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementConfigurationSettingGroupDefinition](../resources/intune-deviceconfigv2-devicemanagementconfigurationsettinggroupdefinition.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: 1780
] } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationsettingtemplate Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationsettingtemplate-create.md
Title: "Create deviceManagementConfigurationSettingTemplate" description: "Create a new deviceManagementConfigurationSettingTemplate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceManagementConfigurationSettingTemplate](../resources/intune-deviceconfigv2-devicemanagementconfigurationsettingtemplate.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: 833
} } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationsettingtemplate Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationsettingtemplate-delete.md
Title: "Delete deviceManagementConfigurationSettingTemplate" description: "Deletes a deviceManagementConfigurationSettingTemplate."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceManagementConfigurationSettingTemplate](../resources/intune-deviceconfigv2-devicemanagementconfigurationsettingtemplate.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 Deviceconfigv2 Devicemanagementconfigurationsettingtemplate Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationsettingtemplate-get.md
Title: "Get deviceManagementConfigurationSettingTemplate" description: "Read properties and relationships of the deviceManagementConfigurationSettingTemplate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementConfigurationSettingTemplate](../resources/intune-deviceconfigv2-devicemanagementconfigurationsettingtemplate.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: 884
} } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationsettingtemplate List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationsettingtemplate-list.md
Title: "List deviceManagementConfigurationSettingTemplates" description: "List properties and relationships of the deviceManagementConfigurationSettingTemplate objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceManagementConfigurationSettingTemplate](../resources/intune-deviceconfigv2-devicemanagementconfigurationsettingtemplate.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: 930
] } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationsettingtemplate Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationsettingtemplate-update.md
Title: "Update deviceManagementConfigurationSettingTemplate" description: "Update the properties of a deviceManagementConfigurationSettingTemplate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementConfigurationSettingTemplate](../resources/intune-deviceconfigv2-devicemanagementconfigurationsettingtemplate.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: 833
} } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationsimplesettingcollectiondefinition Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationsimplesettingcollectiondefinition-create.md
Title: "Create deviceManagementConfigurationSimpleSettingCollectionDefinition" description: "Create a new deviceManagementConfigurationSimpleSettingCollectionDefinition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceManagementConfigurationSimpleSettingCollectionDefinition](../resources/intune-deviceconfigv2-devicemanagementconfigurationsimplesettingcollectiondefinition.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: 18018
"minimumCount": 12 } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationsimplesettingcollectiondefinition Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationsimplesettingcollectiondefinition-delete.md
Title: "Delete deviceManagementConfigurationSimpleSettingCollectionDefinition" description: "Deletes a deviceManagementConfigurationSimpleSettingCollectionDefinition."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceManagementConfigurationSimpleSettingCollectionDefinition](../resources/intune-deviceconfigv2-devicemanagementconfigurationsimplesettingcollectiondefinition.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 Deviceconfigv2 Devicemanagementconfigurationsimplesettingcollectiondefinition Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationsimplesettingcollectiondefinition-get.md
Title: "Get deviceManagementConfigurationSimpleSettingCollectionDefinition" description: "Read properties and relationships of the deviceManagementConfigurationSimpleSettingCollectionDefinition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementConfigurationSimpleSettingCollectionDefinition](../resources/intune-deviceconfigv2-devicemanagementconfigurationsimplesettingcollectiondefinition.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: 18581
} } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationsimplesettingcollectiondefinition List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationsimplesettingcollectiondefinition-list.md
Title: "List deviceManagementConfigurationSimpleSettingCollectionDefinitions" description: "List properties and relationships of the deviceManagementConfigurationSimpleSettingCollectionDefinition objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceManagementConfigurationSimpleSettingCollectionDefinition](../resources/intune-deviceconfigv2-devicemanagementconfigurationsimplesettingcollectiondefinition.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: 19139
] } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationsimplesettingcollectiondefinition Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationsimplesettingcollectiondefinition-update.md
Title: "Update deviceManagementConfigurationSimpleSettingCollectionDefinition" description: "Update the properties of a deviceManagementConfigurationSimpleSettingCollectionDefinition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementConfigurationSimpleSettingCollectionDefinition](../resources/intune-deviceconfigv2-devicemanagementconfigurationsimplesettingcollectiondefinition.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: 18018
"minimumCount": 12 } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationsimplesettingdefinition Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationsimplesettingdefinition-create.md
Title: "Create deviceManagementConfigurationSimpleSettingDefinition" description: "Create a new deviceManagementConfigurationSimpleSettingDefinition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceManagementConfigurationSimpleSettingDefinition](../resources/intune-deviceconfigv2-devicemanagementconfigurationsimplesettingdefinition.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: 17962
] } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationsimplesettingdefinition Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationsimplesettingdefinition-delete.md
Title: "Delete deviceManagementConfigurationSimpleSettingDefinition" description: "Deletes a deviceManagementConfigurationSimpleSettingDefinition."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceManagementConfigurationSimpleSettingDefinition](../resources/intune-deviceconfigv2-devicemanagementconfigurationsimplesettingdefinition.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 Deviceconfigv2 Devicemanagementconfigurationsimplesettingdefinition Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationsimplesettingdefinition-get.md
Title: "Get deviceManagementConfigurationSimpleSettingDefinition" description: "Read properties and relationships of the deviceManagementConfigurationSimpleSettingDefinition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementConfigurationSimpleSettingDefinition](../resources/intune-deviceconfigv2-devicemanagementconfigurationsimplesettingdefinition.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: 18521
} } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationsimplesettingdefinition List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationsimplesettingdefinition-list.md
Title: "List deviceManagementConfigurationSimpleSettingDefinitions" description: "List properties and relationships of the deviceManagementConfigurationSimpleSettingDefinition objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceManagementConfigurationSimpleSettingDefinition](../resources/intune-deviceconfigv2-devicemanagementconfigurationsimplesettingdefinition.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: 19075
] } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationsimplesettingdefinition Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementconfigurationsimplesettingdefinition-update.md
Title: "Update deviceManagementConfigurationSimpleSettingDefinition" description: "Update the properties of a deviceManagementConfigurationSimpleSettingDefinition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementConfigurationSimpleSettingDefinition](../resources/intune-deviceconfigv2-devicemanagementconfigurationsimplesettingdefinition.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: 17962
] } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementreusablepolicysetting Clone https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementreusablepolicysetting-clone.md
Title: "clone 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: 16942
} } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementreusablepolicysetting Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementreusablepolicysetting-create.md
Title: "Create deviceManagementReusablePolicySetting" description: "Create a new deviceManagementReusablePolicySetting object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceManagementReusablePolicySetting](../resources/intune-deviceconfigv2-devicemanagementreusablepolicysetting.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: 16500
"referencingConfigurationPolicyCount": 3 } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementreusablepolicysetting Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementreusablepolicysetting-delete.md
Title: "Delete deviceManagementReusablePolicySetting" description: "Deletes a deviceManagementReusablePolicySetting."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceManagementReusablePolicySetting](../resources/intune-deviceconfigv2-devicemanagementreusablepolicysetting.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 Deviceconfigv2 Devicemanagementreusablepolicysetting Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementreusablepolicysetting-get.md
Title: "Get deviceManagementReusablePolicySetting" description: "Read properties and relationships of the deviceManagementReusablePolicySetting object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementReusablePolicySetting](../resources/intune-deviceconfigv2-devicemanagementreusablepolicysetting.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: 16967
} } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementreusablepolicysetting List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementreusablepolicysetting-list.md
Title: "List deviceManagementReusablePolicySettings" description: "List properties and relationships of the deviceManagementReusablePolicySetting objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceManagementReusablePolicySetting](../resources/intune-deviceconfigv2-devicemanagementreusablepolicysetting.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: 17429
] } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementreusablepolicysetting Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceconfigv2-devicemanagementreusablepolicysetting-update.md
Title: "Update deviceManagementReusablePolicySetting" description: "Update the properties of a deviceManagementReusablePolicySetting object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementReusablePolicySetting](../resources/intune-deviceconfigv2-devicemanagementreusablepolicysetting.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: 16500
"referencingConfigurationPolicyCount": 3 } ```-----
v1.0 Intune Deviceintent Devicemanagementabstractcomplexsettingdefinition Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementabstractcomplexsettingdefinition-create.md
Title: "Create deviceManagementAbstractComplexSettingDefinition" description: "Create a new deviceManagementAbstractComplexSettingDefinition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceManagementAbstractComplexSettingDefinition](../resources/intune-deviceintent-devicemanagementabstractcomplexsettingdefinition.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: 1137
] } ```-----
v1.0 Intune Deviceintent Devicemanagementabstractcomplexsettingdefinition Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementabstractcomplexsettingdefinition-delete.md
Title: "Delete deviceManagementAbstractComplexSettingDefinition" description: "Deletes a deviceManagementAbstractComplexSettingDefinition."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceManagementAbstractComplexSettingDefinition](../resources/intune-deviceintent-devicemanagementabstractcomplexsettingdefinition.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 Deviceintent Devicemanagementabstractcomplexsettingdefinition Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementabstractcomplexsettingdefinition-get.md
Title: "Get deviceManagementAbstractComplexSettingDefinition" description: "Read properties and relationships of the deviceManagementAbstractComplexSettingDefinition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementAbstractComplexSettingDefinition](../resources/intune-deviceintent-devicemanagementabstractcomplexsettingdefinition.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: 1232
} } ```-----
v1.0 Intune Deviceintent Devicemanagementabstractcomplexsettingdefinition List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementabstractcomplexsettingdefinition-list.md
Title: "List deviceManagementAbstractComplexSettingDefinitions" description: "List properties and relationships of the deviceManagementAbstractComplexSettingDefinition objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceManagementAbstractComplexSettingDefinition](../resources/intune-deviceintent-devicemanagementabstractcomplexsettingdefinition.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 Deviceintent Devicemanagementabstractcomplexsettingdefinition Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementabstractcomplexsettingdefinition-update.md
Title: "Update deviceManagementAbstractComplexSettingDefinition" description: "Update the properties of a deviceManagementAbstractComplexSettingDefinition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementAbstractComplexSettingDefinition](../resources/intune-deviceintent-devicemanagementabstractcomplexsettingdefinition.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: 1137
] } ```-----
v1.0 Intune Deviceintent Devicemanagementabstractcomplexsettinginstance Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementabstractcomplexsettinginstance-create.md
Title: "Create deviceManagementAbstractComplexSettingInstance" description: "Create a new deviceManagementAbstractComplexSettingInstance object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceManagementAbstractComplexSettingInstance](../resources/intune-deviceintent-devicemanagementabstractcomplexsettinginstance.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: 265
"implementationId": "Implementation Id value" } ```-----
v1.0 Intune Deviceintent Devicemanagementabstractcomplexsettinginstance Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementabstractcomplexsettinginstance-delete.md
Title: "Delete deviceManagementAbstractComplexSettingInstance" description: "Deletes a deviceManagementAbstractComplexSettingInstance."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceManagementAbstractComplexSettingInstance](../resources/intune-deviceintent-devicemanagementabstractcomplexsettinginstance.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 Deviceintent Devicemanagementabstractcomplexsettinginstance Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementabstractcomplexsettinginstance-get.md
Title: "Get deviceManagementAbstractComplexSettingInstance" description: "Read properties and relationships of the deviceManagementAbstractComplexSettingInstance object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementAbstractComplexSettingInstance](../resources/intune-deviceintent-devicemanagementabstractcomplexsettinginstance.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: 294
} } ```-----
v1.0 Intune Deviceintent Devicemanagementabstractcomplexsettinginstance List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementabstractcomplexsettinginstance-list.md
Title: "List deviceManagementAbstractComplexSettingInstances" description: "List properties and relationships of the deviceManagementAbstractComplexSettingInstance objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceManagementAbstractComplexSettingInstance](../resources/intune-deviceintent-devicemanagementabstractcomplexsettinginstance.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: 318
] } ```-----
v1.0 Intune Deviceintent Devicemanagementabstractcomplexsettinginstance Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementabstractcomplexsettinginstance-update.md
Title: "Update deviceManagementAbstractComplexSettingInstance" description: "Update the properties of a deviceManagementAbstractComplexSettingInstance object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementAbstractComplexSettingInstance](../resources/intune-deviceintent-devicemanagementabstractcomplexsettinginstance.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: 265
"implementationId": "Implementation Id value" } ```-----
v1.0 Intune Deviceintent Devicemanagementbooleansettinginstance Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementbooleansettinginstance-create.md
Title: "Create deviceManagementBooleanSettingInstance" description: "Create a new deviceManagementBooleanSettingInstance object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceManagementBooleanSettingInstance](../resources/intune-deviceintent-devicemanagementbooleansettinginstance.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: 225
"value": true } ```-----
v1.0 Intune Deviceintent Devicemanagementbooleansettinginstance Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementbooleansettinginstance-delete.md
Title: "Delete deviceManagementBooleanSettingInstance" description: "Deletes a deviceManagementBooleanSettingInstance."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceManagementBooleanSettingInstance](../resources/intune-deviceintent-devicemanagementbooleansettinginstance.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 Deviceintent Devicemanagementbooleansettinginstance Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementbooleansettinginstance-get.md
Title: "Get deviceManagementBooleanSettingInstance" description: "Read properties and relationships of the deviceManagementBooleanSettingInstance object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementBooleanSettingInstance](../resources/intune-deviceintent-devicemanagementbooleansettinginstance.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: 254
} } ```-----
v1.0 Intune Deviceintent Devicemanagementbooleansettinginstance List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementbooleansettinginstance-list.md
Title: "List deviceManagementBooleanSettingInstances" description: "List properties and relationships of the deviceManagementBooleanSettingInstance objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceManagementBooleanSettingInstance](../resources/intune-deviceintent-devicemanagementbooleansettinginstance.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: 278
] } ```-----
v1.0 Intune Deviceintent Devicemanagementbooleansettinginstance Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementbooleansettinginstance-update.md
Title: "Update deviceManagementBooleanSettingInstance" description: "Update the properties of a deviceManagementBooleanSettingInstance object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementBooleanSettingInstance](../resources/intune-deviceintent-devicemanagementbooleansettinginstance.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: 225
"value": true } ```-----
v1.0 Intune Deviceintent Devicemanagementcollectionsettingdefinition Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementcollectionsettingdefinition-create.md
Title: "Create deviceManagementCollectionSettingDefinition" description: "Create a new deviceManagementCollectionSettingDefinition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceManagementCollectionSettingDefinition](../resources/intune-deviceintent-devicemanagementcollectionsettingdefinition.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: 1130
"elementDefinitionId": "Element Definition Id value" } ```-----
v1.0 Intune Deviceintent Devicemanagementcollectionsettingdefinition Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementcollectionsettingdefinition-delete.md
Title: "Delete deviceManagementCollectionSettingDefinition" description: "Deletes a deviceManagementCollectionSettingDefinition."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceManagementCollectionSettingDefinition](../resources/intune-deviceintent-devicemanagementcollectionsettingdefinition.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 Deviceintent Devicemanagementcollectionsettingdefinition Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementcollectionsettingdefinition-get.md
Title: "Get deviceManagementCollectionSettingDefinition" description: "Read properties and relationships of the deviceManagementCollectionSettingDefinition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementCollectionSettingDefinition](../resources/intune-deviceintent-devicemanagementcollectionsettingdefinition.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: 1221
} } ```-----
v1.0 Intune Deviceintent Devicemanagementcollectionsettingdefinition List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementcollectionsettingdefinition-list.md
Title: "List deviceManagementCollectionSettingDefinitions" description: "List properties and relationships of the deviceManagementCollectionSettingDefinition objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceManagementCollectionSettingDefinition](../resources/intune-deviceintent-devicemanagementcollectionsettingdefinition.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: 1307
] } ```-----
v1.0 Intune Deviceintent Devicemanagementcollectionsettingdefinition Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementcollectionsettingdefinition-update.md
Title: "Update deviceManagementCollectionSettingDefinition" description: "Update the properties of a deviceManagementCollectionSettingDefinition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementCollectionSettingDefinition](../resources/intune-deviceintent-devicemanagementcollectionsettingdefinition.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: 1130
"elementDefinitionId": "Element Definition Id value" } ```-----
v1.0 Intune Deviceintent Devicemanagementcollectionsettinginstance Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementcollectionsettinginstance-create.md
Title: "Create deviceManagementCollectionSettingInstance" description: "Create a new deviceManagementCollectionSettingInstance object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceManagementCollectionSettingInstance](../resources/intune-deviceintent-devicemanagementcollectionsettinginstance.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: 210
"valueJson": "Value Json value" } ```-----
v1.0 Intune Deviceintent Devicemanagementcollectionsettinginstance Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementcollectionsettinginstance-delete.md
Title: "Delete deviceManagementCollectionSettingInstance" description: "Deletes a deviceManagementCollectionSettingInstance."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceManagementCollectionSettingInstance](../resources/intune-deviceintent-devicemanagementcollectionsettinginstance.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 Deviceintent Devicemanagementcollectionsettinginstance Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementcollectionsettinginstance-get.md
Title: "Get deviceManagementCollectionSettingInstance" description: "Read properties and relationships of the deviceManagementCollectionSettingInstance object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementCollectionSettingInstance](../resources/intune-deviceintent-devicemanagementcollectionsettinginstance.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: 237
} } ```-----
v1.0 Intune Deviceintent Devicemanagementcollectionsettinginstance List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementcollectionsettinginstance-list.md
Title: "List deviceManagementCollectionSettingInstances" description: "List properties and relationships of the deviceManagementCollectionSettingInstance objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceManagementCollectionSettingInstance](../resources/intune-deviceintent-devicemanagementcollectionsettinginstance.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: 259
] } ```-----
v1.0 Intune Deviceintent Devicemanagementcollectionsettinginstance Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementcollectionsettinginstance-update.md
Title: "Update deviceManagementCollectionSettingInstance" description: "Update the properties of a deviceManagementCollectionSettingInstance object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementCollectionSettingInstance](../resources/intune-deviceintent-devicemanagementcollectionsettinginstance.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: 210
"valueJson": "Value Json value" } ```-----
v1.0 Intune Deviceintent Devicemanagementcomplexsettingdefinition Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementcomplexsettingdefinition-create.md
Title: "Create deviceManagementComplexSettingDefinition" description: "Create a new deviceManagementComplexSettingDefinition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceManagementComplexSettingDefinition](../resources/intune-deviceintent-devicemanagementcomplexsettingdefinition.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: 1143
] } ```-----
v1.0 Intune Deviceintent Devicemanagementcomplexsettingdefinition Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementcomplexsettingdefinition-delete.md
Title: "Delete deviceManagementComplexSettingDefinition" description: "Deletes a deviceManagementComplexSettingDefinition."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceManagementComplexSettingDefinition](../resources/intune-deviceintent-devicemanagementcomplexsettingdefinition.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 Deviceintent Devicemanagementcomplexsettingdefinition Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementcomplexsettingdefinition-get.md
Title: "Get deviceManagementComplexSettingDefinition" description: "Read properties and relationships of the deviceManagementComplexSettingDefinition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementComplexSettingDefinition](../resources/intune-deviceintent-devicemanagementcomplexsettingdefinition.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: 1238
} } ```-----
v1.0 Intune Deviceintent Devicemanagementcomplexsettingdefinition List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementcomplexsettingdefinition-list.md
Title: "List deviceManagementComplexSettingDefinitions" description: "List properties and relationships of the deviceManagementComplexSettingDefinition objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceManagementComplexSettingDefinition](../resources/intune-deviceintent-devicemanagementcomplexsettingdefinition.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: 1328
] } ```-----
v1.0 Intune Deviceintent Devicemanagementcomplexsettingdefinition Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementcomplexsettingdefinition-update.md
Title: "Update deviceManagementComplexSettingDefinition" description: "Update the properties of a deviceManagementComplexSettingDefinition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementComplexSettingDefinition](../resources/intune-deviceintent-devicemanagementcomplexsettingdefinition.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: 1143
] } ```-----
v1.0 Intune Deviceintent Devicemanagementcomplexsettinginstance Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementcomplexsettinginstance-create.md
Title: "Create deviceManagementComplexSettingInstance" description: "Create a new deviceManagementComplexSettingInstance object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceManagementComplexSettingInstance](../resources/intune-deviceintent-devicemanagementcomplexsettinginstance.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: 207
"valueJson": "Value Json value" } ```-----
v1.0 Intune Deviceintent Devicemanagementcomplexsettinginstance Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementcomplexsettinginstance-delete.md
Title: "Delete deviceManagementComplexSettingInstance" description: "Deletes a deviceManagementComplexSettingInstance."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceManagementComplexSettingInstance](../resources/intune-deviceintent-devicemanagementcomplexsettinginstance.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 Deviceintent Devicemanagementcomplexsettinginstance Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementcomplexsettinginstance-get.md
Title: "Get deviceManagementComplexSettingInstance" description: "Read properties and relationships of the deviceManagementComplexSettingInstance object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementComplexSettingInstance](../resources/intune-deviceintent-devicemanagementcomplexsettinginstance.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: 234
} } ```-----
v1.0 Intune Deviceintent Devicemanagementcomplexsettinginstance List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementcomplexsettinginstance-list.md
Title: "List deviceManagementComplexSettingInstances" description: "List properties and relationships of the deviceManagementComplexSettingInstance objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceManagementComplexSettingInstance](../resources/intune-deviceintent-devicemanagementcomplexsettinginstance.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: 256
] } ```-----
v1.0 Intune Deviceintent Devicemanagementcomplexsettinginstance Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementcomplexsettinginstance-update.md
Title: "Update deviceManagementComplexSettingInstance" description: "Update the properties of a deviceManagementComplexSettingInstance object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementComplexSettingInstance](../resources/intune-deviceintent-devicemanagementcomplexsettinginstance.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: 207
"valueJson": "Value Json value" } ```-----
v1.0 Intune Deviceintent Devicemanagementintegersettinginstance Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementintegersettinginstance-create.md
Title: "Create deviceManagementIntegerSettingInstance" description: "Create a new deviceManagementIntegerSettingInstance object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceManagementIntegerSettingInstance](../resources/intune-deviceintent-devicemanagementintegersettinginstance.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: 222
"value": 5 } ```-----
v1.0 Intune Deviceintent Devicemanagementintegersettinginstance Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementintegersettinginstance-delete.md
Title: "Delete deviceManagementIntegerSettingInstance" description: "Deletes a deviceManagementIntegerSettingInstance."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceManagementIntegerSettingInstance](../resources/intune-deviceintent-devicemanagementintegersettinginstance.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 Deviceintent Devicemanagementintegersettinginstance Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementintegersettinginstance-get.md
Title: "Get deviceManagementIntegerSettingInstance" description: "Read properties and relationships of the deviceManagementIntegerSettingInstance object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementIntegerSettingInstance](../resources/intune-deviceintent-devicemanagementintegersettinginstance.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: 251
} } ```-----
v1.0 Intune Deviceintent Devicemanagementintegersettinginstance List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementintegersettinginstance-list.md
Title: "List deviceManagementIntegerSettingInstances" description: "List properties and relationships of the deviceManagementIntegerSettingInstance objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceManagementIntegerSettingInstance](../resources/intune-deviceintent-devicemanagementintegersettinginstance.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: 275
] } ```-----
v1.0 Intune Deviceintent Devicemanagementintegersettinginstance Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementintegersettinginstance-update.md
Title: "Update deviceManagementIntegerSettingInstance" description: "Update the properties of a deviceManagementIntegerSettingInstance object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementIntegerSettingInstance](../resources/intune-deviceintent-devicemanagementintegersettinginstance.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: 222
"value": 5 } ```-----
v1.0 Intune Deviceintent Devicemanagementintent Assign https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementintent-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 Deviceintent Devicemanagementintent Compare https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementintent-compare.md
Title: "compare 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: 364
] } ```-----
v1.0 Intune Deviceintent Devicemanagementintent Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementintent-create.md
Title: "Create deviceManagementIntent" description: "Create a new deviceManagementIntent object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceManagementIntent](../resources/intune-deviceintent-devicemanagementintent.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: 379
] } ```-----
v1.0 Intune Deviceintent Devicemanagementintent Createcopy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementintent-createcopy.md
Title: "createCopy 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: 418
} } ```-----
v1.0 Intune Deviceintent Devicemanagementintent Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementintent-delete.md
Title: "Delete deviceManagementIntent" description: "Deletes a deviceManagementIntent."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceManagementIntent](../resources/intune-deviceintent-devicemanagementintent.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 Deviceintent Devicemanagementintent Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementintent-get.md
Title: "Get deviceManagementIntent" description: "Read properties and relationships of the deviceManagementIntent object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementIntent](../resources/intune-deviceintent-devicemanagementintent.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: 418
} } ```-----
v1.0 Intune Deviceintent Devicemanagementintent List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementintent-list.md
Title: "List deviceManagementIntents" description: "List properties and relationships of the deviceManagementIntent objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceManagementIntent](../resources/intune-deviceintent-devicemanagementintent.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: 452
] } ```-----
v1.0 Intune Deviceintent Devicemanagementintent Migratetotemplate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementintent-migratetotemplate.md
Title: "migrateToTemplate 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 Deviceintent Devicemanagementintent Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementintent-update.md
Title: "Update deviceManagementIntent" description: "Update the properties of a deviceManagementIntent object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementIntent](../resources/intune-deviceintent-devicemanagementintent.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: 379
] } ```-----
v1.0 Intune Deviceintent Devicemanagementintent Updatesettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementintent-updatesettings.md
Title: "updateSettings 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 Deviceintent Devicemanagementintentassignment Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementintentassignment-create.md
Title: "Create deviceManagementIntentAssignment" description: "Create a new deviceManagementIntentAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceManagementIntentAssignment](../resources/intune-deviceintent-devicemanagementintentassignment.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: 440
} } ```-----
v1.0 Intune Deviceintent Devicemanagementintentassignment Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementintentassignment-delete.md
Title: "Delete deviceManagementIntentAssignment" description: "Deletes a deviceManagementIntentAssignment."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceManagementIntentAssignment](../resources/intune-deviceintent-devicemanagementintentassignment.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 Deviceintent Devicemanagementintentassignment Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementintentassignment-get.md
Title: "Get deviceManagementIntentAssignment" description: "Read properties and relationships of the deviceManagementIntentAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementIntentAssignment](../resources/intune-deviceintent-devicemanagementintentassignment.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: 475
} } ```-----
v1.0 Intune Deviceintent Devicemanagementintentassignment List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementintentassignment-list.md
Title: "List deviceManagementIntentAssignments" description: "List properties and relationships of the deviceManagementIntentAssignment objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceManagementIntentAssignment](../resources/intune-deviceintent-devicemanagementintentassignment.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: 505
] } ```-----
v1.0 Intune Deviceintent Devicemanagementintentassignment Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementintentassignment-update.md
Title: "Update deviceManagementIntentAssignment" description: "Update the properties of a deviceManagementIntentAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementIntentAssignment](../resources/intune-deviceintent-devicemanagementintentassignment.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: 440
} } ```-----
v1.0 Intune Deviceintent Devicemanagementintentdevicesettingstatesummary Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementintentdevicesettingstatesummary-create.md
Title: "Create deviceManagementIntentDeviceSettingStateSummary" description: "Create a new deviceManagementIntentDeviceSettingStateSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceManagementIntentDeviceSettingStateSummary](../resources/intune-deviceintent-devicemanagementintentdevicesettingstatesummary.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: 329
"remediatedCount": 15 } ```-----
v1.0 Intune Deviceintent Devicemanagementintentdevicesettingstatesummary Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementintentdevicesettingstatesummary-delete.md
Title: "Delete deviceManagementIntentDeviceSettingStateSummary" description: "Deletes a deviceManagementIntentDeviceSettingStateSummary."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceManagementIntentDeviceSettingStateSummary](../resources/intune-deviceintent-devicemanagementintentdevicesettingstatesummary.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 Deviceintent Devicemanagementintentdevicesettingstatesummary Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementintentdevicesettingstatesummary-get.md
Title: "Get deviceManagementIntentDeviceSettingStateSummary" description: "Read properties and relationships of the deviceManagementIntentDeviceSettingStateSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementIntentDeviceSettingStateSummary](../resources/intune-deviceintent-devicemanagementintentdevicesettingstatesummary.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 Deviceintent Devicemanagementintentdevicesettingstatesummary List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementintentdevicesettingstatesummary-list.md
Title: "List deviceManagementIntentDeviceSettingStateSummaries" description: "List properties and relationships of the deviceManagementIntentDeviceSettingStateSummary objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceManagementIntentDeviceSettingStateSummary](../resources/intune-deviceintent-devicemanagementintentdevicesettingstatesummary.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: 398
] } ```-----
v1.0 Intune Deviceintent Devicemanagementintentdevicesettingstatesummary Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementintentdevicesettingstatesummary-update.md
Title: "Update deviceManagementIntentDeviceSettingStateSummary" description: "Update the properties of a deviceManagementIntentDeviceSettingStateSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementIntentDeviceSettingStateSummary](../resources/intune-deviceintent-devicemanagementintentdevicesettingstatesummary.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: 329
"remediatedCount": 15 } ```-----
v1.0 Intune Deviceintent Devicemanagementintentdevicestate Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementintentdevicestate-create.md
Title: "Create deviceManagementIntentDeviceState" description: "Create a new deviceManagementIntentDeviceState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceManagementIntentDeviceState](../resources/intune-deviceintent-devicemanagementintentdevicestate.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: 391
"deviceId": "Device Id value" } ```-----
v1.0 Intune Deviceintent Devicemanagementintentdevicestate Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementintentdevicestate-delete.md
Title: "Delete deviceManagementIntentDeviceState" description: "Deletes a deviceManagementIntentDeviceState."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceManagementIntentDeviceState](../resources/intune-deviceintent-devicemanagementintentdevicestate.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 Deviceintent Devicemanagementintentdevicestate Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementintentdevicestate-get.md
Title: "Get deviceManagementIntentDeviceState" description: "Read properties and relationships of the deviceManagementIntentDeviceState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementIntentDeviceState](../resources/intune-deviceintent-devicemanagementintentdevicestate.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: 426
} } ```-----
v1.0 Intune Deviceintent Devicemanagementintentdevicestate List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementintentdevicestate-list.md
Title: "List deviceManagementIntentDeviceStates" description: "List properties and relationships of the deviceManagementIntentDeviceState objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceManagementIntentDeviceState](../resources/intune-deviceintent-devicemanagementintentdevicestate.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 Deviceintent Devicemanagementintentdevicestate Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementintentdevicestate-update.md
Title: "Update deviceManagementIntentDeviceState" description: "Update the properties of a deviceManagementIntentDeviceState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementIntentDeviceState](../resources/intune-deviceintent-devicemanagementintentdevicestate.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: 391
"deviceId": "Device Id value" } ```-----
v1.0 Intune Deviceintent Devicemanagementintentdevicestatesummary Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementintentdevicestatesummary-get.md
Title: "Get deviceManagementIntentDeviceStateSummary" description: "Read properties and relationships of the deviceManagementIntentDeviceStateSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementIntentDeviceStateSummary](../resources/intune-deviceintent-devicemanagementintentdevicestatesummary.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 Deviceintent Devicemanagementintentdevicestatesummary Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementintentdevicestatesummary-update.md
Title: "Update deviceManagementIntentDeviceStateSummary" description: "Update the properties of a deviceManagementIntentDeviceStateSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementIntentDeviceStateSummary](../resources/intune-deviceintent-devicemanagementintentdevicestatesummary.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: 286
"successCount": 12 } ```-----
v1.0 Intune Deviceintent Devicemanagementintentsettingcategory Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementintentsettingcategory-create.md
Title: "Create deviceManagementIntentSettingCategory" description: "Create a new deviceManagementIntentSettingCategory object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceManagementIntentSettingCategory](../resources/intune-deviceintent-devicemanagementintentsettingcategory.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: 199
"hasRequiredSetting": true } ```-----
v1.0 Intune Deviceintent Devicemanagementintentsettingcategory Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementintentsettingcategory-delete.md
Title: "Delete deviceManagementIntentSettingCategory" description: "Deletes a deviceManagementIntentSettingCategory."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceManagementIntentSettingCategory](../resources/intune-deviceintent-devicemanagementintentsettingcategory.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 Deviceintent Devicemanagementintentsettingcategory Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementintentsettingcategory-get.md
Title: "Get deviceManagementIntentSettingCategory" description: "Read properties and relationships of the deviceManagementIntentSettingCategory object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementIntentSettingCategory](../resources/intune-deviceintent-devicemanagementintentsettingcategory.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: 226
} } ```-----
v1.0 Intune Deviceintent Devicemanagementintentsettingcategory List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementintentsettingcategory-list.md
Title: "List deviceManagementIntentSettingCategories" description: "List properties and relationships of the deviceManagementIntentSettingCategory objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceManagementIntentSettingCategory](../resources/intune-deviceintent-devicemanagementintentsettingcategory.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: 248
] } ```-----
v1.0 Intune Deviceintent Devicemanagementintentsettingcategory Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementintentsettingcategory-update.md
Title: "Update deviceManagementIntentSettingCategory" description: "Update the properties of a deviceManagementIntentSettingCategory object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementIntentSettingCategory](../resources/intune-deviceintent-devicemanagementintentsettingcategory.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: 199
"hasRequiredSetting": true } ```-----
v1.0 Intune Deviceintent Devicemanagementintentuserstate Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementintentuserstate-create.md
Title: "Create deviceManagementIntentUserState" description: "Create a new deviceManagementIntentUserState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceManagementIntentUserState](../resources/intune-deviceintent-devicemanagementintentuserstate.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: 324
"state": "notApplicable" } ```-----
v1.0 Intune Deviceintent Devicemanagementintentuserstate Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementintentuserstate-delete.md
Title: "Delete deviceManagementIntentUserState" description: "Deletes a deviceManagementIntentUserState."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceManagementIntentUserState](../resources/intune-deviceintent-devicemanagementintentuserstate.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 Deviceintent Devicemanagementintentuserstate Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementintentuserstate-get.md
Title: "Get deviceManagementIntentUserState" description: "Read properties and relationships of the deviceManagementIntentUserState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementIntentUserState](../resources/intune-deviceintent-devicemanagementintentuserstate.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: 357
} } ```-----
v1.0 Intune Deviceintent Devicemanagementintentuserstate List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementintentuserstate-list.md
Title: "List deviceManagementIntentUserStates" description: "List properties and relationships of the deviceManagementIntentUserState objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceManagementIntentUserState](../resources/intune-deviceintent-devicemanagementintentuserstate.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: 385
] } ```-----
v1.0 Intune Deviceintent Devicemanagementintentuserstate Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementintentuserstate-update.md
Title: "Update deviceManagementIntentUserState" description: "Update the properties of a deviceManagementIntentUserState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementIntentUserState](../resources/intune-deviceintent-devicemanagementintentuserstate.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: 324
"state": "notApplicable" } ```-----
v1.0 Intune Deviceintent Devicemanagementintentuserstatesummary Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementintentuserstatesummary-get.md
Title: "Get deviceManagementIntentUserStateSummary" description: "Read properties and relationships of the deviceManagementIntentUserStateSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementIntentUserStateSummary](../resources/intune-deviceintent-devicemanagementintentuserstatesummary.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: 280
} } ```-----
v1.0 Intune Deviceintent Devicemanagementintentuserstatesummary Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementintentuserstatesummary-update.md
Title: "Update deviceManagementIntentUserStateSummary" description: "Update the properties of a deviceManagementIntentUserStateSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementIntentUserStateSummary](../resources/intune-deviceintent-devicemanagementintentuserstatesummary.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: 247
"successCount": 12 } ```-----
v1.0 Intune Deviceintent Devicemanagementsettingcategory Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementsettingcategory-create.md
Title: "Create deviceManagementSettingCategory" description: "Create a new deviceManagementSettingCategory object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceManagementSettingCategory](../resources/intune-deviceintent-devicemanagementsettingcategory.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: 193
"hasRequiredSetting": true } ```-----
v1.0 Intune Deviceintent Devicemanagementsettingcategory Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementsettingcategory-delete.md
Title: "Delete deviceManagementSettingCategory" description: "Deletes a deviceManagementSettingCategory."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceManagementSettingCategory](../resources/intune-deviceintent-devicemanagementsettingcategory.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 Deviceintent Devicemanagementsettingcategory Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementsettingcategory-get.md
Title: "Get deviceManagementSettingCategory" description: "Read properties and relationships of the deviceManagementSettingCategory object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementSettingCategory](../resources/intune-deviceintent-devicemanagementsettingcategory.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: 220
} } ```-----
v1.0 Intune Deviceintent Devicemanagementsettingcategory List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementsettingcategory-list.md
Title: "List deviceManagementSettingCategories" description: "List properties and relationships of the deviceManagementSettingCategory objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceManagementSettingCategory](../resources/intune-deviceintent-devicemanagementsettingcategory.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: 242
] } ```-----
v1.0 Intune Deviceintent Devicemanagementsettingcategory Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementsettingcategory-update.md
Title: "Update deviceManagementSettingCategory" description: "Update the properties of a deviceManagementSettingCategory object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementSettingCategory](../resources/intune-deviceintent-devicemanagementsettingcategory.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: 193
"hasRequiredSetting": true } ```-----
v1.0 Intune Deviceintent Devicemanagementsettingdefinition Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementsettingdefinition-create.md
Title: "Create deviceManagementSettingDefinition" description: "Create a new deviceManagementSettingDefinition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceManagementSettingDefinition](../resources/intune-deviceintent-devicemanagementsettingdefinition.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: 1063
] } ```-----
v1.0 Intune Deviceintent Devicemanagementsettingdefinition Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementsettingdefinition-delete.md
Title: "Delete deviceManagementSettingDefinition" description: "Deletes a deviceManagementSettingDefinition."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceManagementSettingDefinition](../resources/intune-deviceintent-devicemanagementsettingdefinition.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 Deviceintent Devicemanagementsettingdefinition Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementsettingdefinition-get.md
Title: "Get deviceManagementSettingDefinition" description: "Read properties and relationships of the deviceManagementSettingDefinition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementSettingDefinition](../resources/intune-deviceintent-devicemanagementsettingdefinition.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: 1152
} } ```-----
v1.0 Intune Deviceintent Devicemanagementsettingdefinition List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementsettingdefinition-list.md
Title: "List deviceManagementSettingDefinitions" description: "List properties and relationships of the deviceManagementSettingDefinition objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceManagementSettingDefinition](../resources/intune-deviceintent-devicemanagementsettingdefinition.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: 1236
] } ```-----
v1.0 Intune Deviceintent Devicemanagementsettingdefinition Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementsettingdefinition-update.md
Title: "Update deviceManagementSettingDefinition" description: "Update the properties of a deviceManagementSettingDefinition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementSettingDefinition](../resources/intune-deviceintent-devicemanagementsettingdefinition.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: 1063
] } ```-----
v1.0 Intune Deviceintent Devicemanagementsettinginstance Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementsettinginstance-get.md
Title: "Get deviceManagementSettingInstance" description: "Read properties and relationships of the deviceManagementSettingInstance object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementSettingInstance](../resources/intune-deviceintent-devicemanagementsettinginstance.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: 227
} } ```-----
v1.0 Intune Deviceintent Devicemanagementsettinginstance List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementsettinginstance-list.md
Title: "List deviceManagementSettingInstances" description: "List properties and relationships of the deviceManagementSettingInstance objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceManagementSettingInstance](../resources/intune-deviceintent-devicemanagementsettinginstance.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: 249
] } ```-----
v1.0 Intune Deviceintent Devicemanagementstringsettinginstance Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementstringsettinginstance-create.md
Title: "Create deviceManagementStringSettingInstance" description: "Create a new deviceManagementStringSettingInstance object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceManagementStringSettingInstance](../resources/intune-deviceintent-devicemanagementstringsettinginstance.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: 233
"value": "Value value" } ```-----
v1.0 Intune Deviceintent Devicemanagementstringsettinginstance Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementstringsettinginstance-delete.md
Title: "Delete deviceManagementStringSettingInstance" description: "Deletes a deviceManagementStringSettingInstance."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceManagementStringSettingInstance](../resources/intune-deviceintent-devicemanagementstringsettinginstance.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 Deviceintent Devicemanagementstringsettinginstance Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementstringsettinginstance-get.md
Title: "Get deviceManagementStringSettingInstance" description: "Read properties and relationships of the deviceManagementStringSettingInstance object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementStringSettingInstance](../resources/intune-deviceintent-devicemanagementstringsettinginstance.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: 262
} } ```-----
v1.0 Intune Deviceintent Devicemanagementstringsettinginstance List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementstringsettinginstance-list.md
Title: "List deviceManagementStringSettingInstances" description: "List properties and relationships of the deviceManagementStringSettingInstance objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceManagementStringSettingInstance](../resources/intune-deviceintent-devicemanagementstringsettinginstance.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: 286
] } ```-----
v1.0 Intune Deviceintent Devicemanagementstringsettinginstance Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementstringsettinginstance-update.md
Title: "Update deviceManagementStringSettingInstance" description: "Update the properties of a deviceManagementStringSettingInstance object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementStringSettingInstance](../resources/intune-deviceintent-devicemanagementstringsettinginstance.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: 233
"value": "Value value" } ```-----
v1.0 Intune Deviceintent Devicemanagementtemplate Compare https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementtemplate-compare.md
Title: "compare 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: 364
] } ```-----
v1.0 Intune Deviceintent Devicemanagementtemplate Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementtemplate-create.md
Title: "Create deviceManagementTemplate" description: "Create a new deviceManagementTemplate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceManagementTemplate](../resources/intune-deviceintent-devicemanagementtemplate.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: 454
"publishedDateTime": "2016-12-31T23:58:16.1180489-08:00" } ```-----
v1.0 Intune Deviceintent Devicemanagementtemplate Createinstance https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementtemplate-createinstance.md
Title: "createInstance 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: 418
} } ```-----
v1.0 Intune Deviceintent Devicemanagementtemplate Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementtemplate-delete.md
Title: "Delete deviceManagementTemplate" description: "Deletes a deviceManagementTemplate."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceManagementTemplate](../resources/intune-deviceintent-devicemanagementtemplate.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 Deviceintent Devicemanagementtemplate Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementtemplate-get.md
Title: "Get deviceManagementTemplate" description: "Read properties and relationships of the deviceManagementTemplate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementTemplate](../resources/intune-deviceintent-devicemanagementtemplate.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: 495
} } ```-----
v1.0 Intune Deviceintent Devicemanagementtemplate Importoffice365deviceconfigurationpolicies https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementtemplate-importoffice365deviceconfigurationpolicies.md
Title: "importOffice365DeviceConfigurationPolicies 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: 452
] } ```-----
v1.0 Intune Deviceintent Devicemanagementtemplate List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementtemplate-list.md
Title: "List deviceManagementTemplates" description: "List properties and relationships of the deviceManagementTemplate objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceManagementTemplate](../resources/intune-deviceintent-devicemanagementtemplate.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: 531
] } ```-----
v1.0 Intune Deviceintent Devicemanagementtemplate Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementtemplate-update.md
Title: "Update deviceManagementTemplate" description: "Update the properties of a deviceManagementTemplate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementTemplate](../resources/intune-deviceintent-devicemanagementtemplate.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: 454
"publishedDateTime": "2016-12-31T23:58:16.1180489-08:00" } ```-----
v1.0 Intune Deviceintent Devicemanagementtemplatesettingcategory Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementtemplatesettingcategory-create.md
Title: "Create deviceManagementTemplateSettingCategory" description: "Create a new deviceManagementTemplateSettingCategory object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceManagementTemplateSettingCategory](../resources/intune-deviceintent-devicemanagementtemplatesettingcategory.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
"hasRequiredSetting": true } ```-----
v1.0 Intune Deviceintent Devicemanagementtemplatesettingcategory Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementtemplatesettingcategory-delete.md
Title: "Delete deviceManagementTemplateSettingCategory" description: "Deletes a deviceManagementTemplateSettingCategory."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceManagementTemplateSettingCategory](../resources/intune-deviceintent-devicemanagementtemplatesettingcategory.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 Deviceintent Devicemanagementtemplatesettingcategory Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementtemplatesettingcategory-get.md
Title: "Get deviceManagementTemplateSettingCategory" description: "Read properties and relationships of the deviceManagementTemplateSettingCategory object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementTemplateSettingCategory](../resources/intune-deviceintent-devicemanagementtemplatesettingcategory.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: 228
} } ```-----
v1.0 Intune Deviceintent Devicemanagementtemplatesettingcategory List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementtemplatesettingcategory-list.md
Title: "List deviceManagementTemplateSettingCategories" description: "List properties and relationships of the deviceManagementTemplateSettingCategory objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceManagementTemplateSettingCategory](../resources/intune-deviceintent-devicemanagementtemplatesettingcategory.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: 250
] } ```-----
v1.0 Intune Deviceintent Devicemanagementtemplatesettingcategory Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-devicemanagementtemplatesettingcategory-update.md
Title: "Update deviceManagementTemplateSettingCategory" description: "Update the properties of a deviceManagementTemplateSettingCategory object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementTemplateSettingCategory](../resources/intune-deviceintent-devicemanagementtemplatesettingcategory.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
"hasRequiredSetting": true } ```-----
v1.0 Intune Deviceintent Securitybaselinecategorystatesummary Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-securitybaselinecategorystatesummary-create.md
Title: "Create securityBaselineCategoryStateSummary" description: "Create a new securityBaselineCategoryStateSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [securityBaselineCategoryStateSummary](../resources/intune-deviceintent-securitybaselinecategorystatesummary.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: 310
"displayName": "Display Name value" } ```-----
v1.0 Intune Deviceintent Securitybaselinecategorystatesummary Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-securitybaselinecategorystatesummary-delete.md
Title: "Delete securityBaselineCategoryStateSummary" description: "Deletes a securityBaselineCategoryStateSummary."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [securityBaselineCategoryStateSummary](../resources/intune-deviceintent-securitybaselinecategorystatesummary.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 Deviceintent Securitybaselinecategorystatesummary Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-securitybaselinecategorystatesummary-get.md
Title: "Get securityBaselineCategoryStateSummary" description: "Read properties and relationships of the securityBaselineCategoryStateSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [securityBaselineCategoryStateSummary](../resources/intune-deviceintent-securitybaselinecategorystatesummary.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: 347
} } ```-----
v1.0 Intune Deviceintent Securitybaselinecategorystatesummary List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-securitybaselinecategorystatesummary-list.md
Title: "List securityBaselineCategoryStateSummaries" description: "List properties and relationships of the securityBaselineCategoryStateSummary objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [securityBaselineCategoryStateSummary](../resources/intune-deviceintent-securitybaselinecategorystatesummary.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: 379
] } ```-----
v1.0 Intune Deviceintent Securitybaselinecategorystatesummary Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-securitybaselinecategorystatesummary-update.md
Title: "Update securityBaselineCategoryStateSummary" description: "Update the properties of a securityBaselineCategoryStateSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [securityBaselineCategoryStateSummary](../resources/intune-deviceintent-securitybaselinecategorystatesummary.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: 310
"displayName": "Display Name value" } ```-----
v1.0 Intune Deviceintent Securitybaselinedevicestate Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-securitybaselinedevicestate-create.md
Title: "Create securityBaselineDeviceState" description: "Create a new securityBaselineDeviceState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [securityBaselineDeviceState](../resources/intune-deviceintent-securitybaselinedevicestate.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: 359
"lastReportedDateTime": "2017-01-01T00:00:17.7769392-08:00" } ```-----
v1.0 Intune Deviceintent Securitybaselinedevicestate Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-securitybaselinedevicestate-delete.md
Title: "Delete securityBaselineDeviceState" description: "Deletes a securityBaselineDeviceState."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [securityBaselineDeviceState](../resources/intune-deviceintent-securitybaselinedevicestate.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 Deviceintent Securitybaselinedevicestate Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-securitybaselinedevicestate-get.md
Title: "Get securityBaselineDeviceState" description: "Read properties and relationships of the securityBaselineDeviceState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [securityBaselineDeviceState](../resources/intune-deviceintent-securitybaselinedevicestate.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: 392
} } ```-----
v1.0 Intune Deviceintent Securitybaselinedevicestate List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-securitybaselinedevicestate-list.md
Title: "List securityBaselineDeviceStates" description: "List properties and relationships of the securityBaselineDeviceState objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [securityBaselineDeviceState](../resources/intune-deviceintent-securitybaselinedevicestate.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: 420
] } ```-----
v1.0 Intune Deviceintent Securitybaselinedevicestate Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-securitybaselinedevicestate-update.md
Title: "Update securityBaselineDeviceState" description: "Update the properties of a securityBaselineDeviceState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [securityBaselineDeviceState](../resources/intune-deviceintent-securitybaselinedevicestate.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: 359
"lastReportedDateTime": "2017-01-01T00:00:17.7769392-08:00" } ```-----
v1.0 Intune Deviceintent Securitybaselinestatesummary Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-securitybaselinestatesummary-get.md
Title: "Get securityBaselineStateSummary" description: "Read properties and relationships of the securityBaselineStateSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [securityBaselineStateSummary](../resources/intune-deviceintent-securitybaselinestatesummary.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: 297
} } ```-----
v1.0 Intune Deviceintent Securitybaselinestatesummary Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-securitybaselinestatesummary-update.md
Title: "Update securityBaselineStateSummary" description: "Update the properties of a securityBaselineStateSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [securityBaselineStateSummary](../resources/intune-deviceintent-securitybaselinestatesummary.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: 262
"notApplicableCount": 2 } ```-----
v1.0 Intune Deviceintent Securitybaselinetemplate Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-securitybaselinetemplate-create.md
Title: "Create securityBaselineTemplate" description: "Create a new securityBaselineTemplate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [securityBaselineTemplate](../resources/intune-deviceintent-securitybaselinetemplate.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: 454
"publishedDateTime": "2016-12-31T23:58:16.1180489-08:00" } ```-----
v1.0 Intune Deviceintent Securitybaselinetemplate Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-securitybaselinetemplate-delete.md
Title: "Delete securityBaselineTemplate" description: "Deletes a securityBaselineTemplate."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [securityBaselineTemplate](../resources/intune-deviceintent-securitybaselinetemplate.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 Deviceintent Securitybaselinetemplate Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-securitybaselinetemplate-get.md
Title: "Get securityBaselineTemplate" description: "Read properties and relationships of the securityBaselineTemplate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [securityBaselineTemplate](../resources/intune-deviceintent-securitybaselinetemplate.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: 495
} } ```-----
v1.0 Intune Deviceintent Securitybaselinetemplate List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-securitybaselinetemplate-list.md
Title: "List securityBaselineTemplates" description: "List properties and relationships of the securityBaselineTemplate objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [securityBaselineTemplate](../resources/intune-deviceintent-securitybaselinetemplate.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: 531
] } ```-----
v1.0 Intune Deviceintent Securitybaselinetemplate Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-deviceintent-securitybaselinetemplate-update.md
Title: "Update securityBaselineTemplate" description: "Update the properties of a securityBaselineTemplate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [securityBaselineTemplate](../resources/intune-deviceintent-securitybaselinetemplate.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: 454
"publishedDateTime": "2016-12-31T23:58:16.1180489-08:00" } ```-----
v1.0 Intune Devices Applepushnotificationcertificate Downloadapplepushnotificationcertificatesigningrequest https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-applepushnotificationcertificate-downloadapplepushnotificationcertificatesigningrequest.md
Title: "downloadApplePushNotificationCertificateSigningRequest function" description: "Download Apple push notification certificate signing request"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Download Apple push notification certificate signing request
-## Prerequisites
+## Permissions
One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)|
Content-Length: 85
"value": "Download Apple Push Notification Certificate Signing Request value" } ```-----
v1.0 Intune Devices Applepushnotificationcertificate Generateapplepushnotificationcertificatesigningrequest https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-applepushnotificationcertificate-generateapplepushnotificationcertificatesigningrequest.md
Title: "generateApplePushNotificationCertificateSigningRequest action" description: "Download Apple push notification certificate signing request"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Download Apple push notification certificate signing request
-## Prerequisites
+## Permissions
One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)|
Content-Length: 85
"value": "Generate Apple Push Notification Certificate Signing Request value" } ```-----
v1.0 Intune Devices Applepushnotificationcertificate Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-applepushnotificationcertificate-get.md
Title: "Get applePushNotificationCertificate" description: "Read properties and relationships of the applePushNotificationCertificate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [applePushNotificationCertificate](../resources/intune-devices-applepushnotificationcertificate.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: 633
} } ```-----
v1.0 Intune Devices Applepushnotificationcertificate Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-applepushnotificationcertificate-update.md
Title: "Update applePushNotificationCertificate" description: "Update the properties of a applePushNotificationCertificate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [applePushNotificationCertificate](../resources/intune-devices-applepushnotificationcertificate.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: 594
"certificate": "Certificate value" } ```-----
v1.0 Intune Devices Applogcollectionrequest Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-applogcollectionrequest-create.md
Title: "Create appLogCollectionRequest" description: "Create a new appLogCollectionRequest object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [appLogCollectionRequest](../resources/intune-devices-applogcollectionrequest.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: 306
"completedDateTime": "2016-12-31T23:58:52.3534526-08:00" } ```-----
v1.0 Intune Devices Applogcollectionrequest Createdownloadurl https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-applogcollectionrequest-createdownloadurl.md
Title: "createDownloadUrl 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: 239
} } ```-----
v1.0 Intune Devices Applogcollectionrequest Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-applogcollectionrequest-delete.md
Title: "Delete appLogCollectionRequest" description: "Deletes a appLogCollectionRequest."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [appLogCollectionRequest](../resources/intune-devices-applogcollectionrequest.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 Devices Applogcollectionrequest Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-applogcollectionrequest-get.md
Title: "Get appLogCollectionRequest" description: "Read properties and relationships of the appLogCollectionRequest object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [appLogCollectionRequest](../resources/intune-devices-applogcollectionrequest.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: 341
} } ```-----
v1.0 Intune Devices Applogcollectionrequest List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-applogcollectionrequest-list.md
Title: "List appLogCollectionRequests" description: "List properties and relationships of the appLogCollectionRequest objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [appLogCollectionRequest](../resources/intune-devices-applogcollectionrequest.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: 371
] } ```-----
v1.0 Intune Devices Applogcollectionrequest Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-applogcollectionrequest-update.md
Title: "Update appLogCollectionRequest" description: "Update the properties of a appLogCollectionRequest object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [appLogCollectionRequest](../resources/intune-devices-applogcollectionrequest.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: 306
"completedDateTime": "2016-12-31T23:58:52.3534526-08:00" } ```-----
v1.0 Intune Devices Cloudpcconnectivityissue Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-cloudpcconnectivityissue-create.md
Title: "Create cloudPCConnectivityIssue" description: "Create a new cloudPCConnectivityIssue object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [cloudPCConnectivityIssue](../resources/intune-devices-cloudpcconnectivityissue.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: 374
"recommendedAction": "Recommended Action value" } ```-----
v1.0 Intune Devices Cloudpcconnectivityissue Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-cloudpcconnectivityissue-delete.md
Title: "Delete cloudPCConnectivityIssue" description: "Deletes a cloudPCConnectivityIssue."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [cloudPCConnectivityIssue](../resources/intune-devices-cloudpcconnectivityissue.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 Devices Cloudpcconnectivityissue Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-cloudpcconnectivityissue-get.md
Title: "Get cloudPCConnectivityIssue" description: "Read properties and relationships of the cloudPCConnectivityIssue object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [cloudPCConnectivityIssue](../resources/intune-devices-cloudpcconnectivityissue.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 Devices Cloudpcconnectivityissue List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-cloudpcconnectivityissue-list.md
Title: "List cloudPCConnectivityIssues" description: "List properties and relationships of the cloudPCConnectivityIssue objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [cloudPCConnectivityIssue](../resources/intune-devices-cloudpcconnectivityissue.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: 439
] } ```-----
v1.0 Intune Devices Cloudpcconnectivityissue Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-cloudpcconnectivityissue-update.md
Title: "Update cloudPCConnectivityIssue" description: "Update the properties of a cloudPCConnectivityIssue object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [cloudPCConnectivityIssue](../resources/intune-devices-cloudpcconnectivityissue.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: 374
"recommendedAction": "Recommended Action value" } ```-----
v1.0 Intune Devices Comanagementeligibledevice Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-comanagementeligibledevice-create.md
Title: "Create comanagementEligibleDevice" description: "Create a new comanagementEligibleDevice object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [comanagementEligibleDevice](../resources/intune-devices-comanagementeligibledevice.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 c
|:|:|:| |id|String|Unique Id for the device| |deviceName|String|DeviceName|
-|deviceType|[deviceType](../resources/intune-shared-devicetype.md)|DeviceType. 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`.|
+|deviceType|[deviceType](../resources/intune-devices-devicetype.md)|DeviceType. 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`.|
|clientRegistrationStatus|[deviceRegistrationState](../resources/intune-devices-deviceregistrationstate.md)|ClientRegistrationStatus. Possible values are: `notRegistered`, `registered`, `revoked`, `keyConflict`, `approvalPending`, `certificateReset`, `notRegisteredPendingEnrollment`, `unknown`.| |ownerType|[ownerType](../resources/intune-shared-ownertype.md)|OwnerType. Possible values are: `unknown`, `company`, `personal`.| |managementAgents|[managementAgentType](../resources/intune-shared-managementagenttype.md)|ManagementAgents. Possible values are: `eas`, `mdm`, `easMdm`, `intuneClient`, `easIntuneClient`, `configurationManagerClient`, `configurationManagerClientMdm`, `configurationManagerClientMdmEas`, `unknown`, `jamf`, `googleCloudDevicePolicyController`, `microsoft365ManagedMdm`, `msSense`, `intuneAosp`.|
Content-Length: 763
"status": "eligible" } ```-----
v1.0 Intune Devices Comanagementeligibledevice Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-comanagementeligibledevice-delete.md
Title: "Delete comanagementEligibleDevice" description: "Deletes a comanagementEligibleDevice."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [comanagementEligibleDevice](../resources/intune-devices-comanagementeligibledevice.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 Devices Comanagementeligibledevice Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-comanagementeligibledevice-get.md
Title: "Get comanagementEligibleDevice" description: "Read properties and relationships of the comanagementEligibleDevice object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [comanagementEligibleDevice](../resources/intune-devices-comanagementeligibledevice.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: 824
} } ```-----
v1.0 Intune Devices Comanagementeligibledevice List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-comanagementeligibledevice-list.md
Title: "List comanagementEligibleDevices" description: "List properties and relationships of the comanagementEligibleDevice objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [comanagementEligibleDevice](../resources/intune-devices-comanagementeligibledevice.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: 880
] } ```-----
v1.0 Intune Devices Comanagementeligibledevice Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-comanagementeligibledevice-update.md
Title: "Update comanagementEligibleDevice" description: "Update the properties of a comanagementEligibleDevice object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [comanagementEligibleDevice](../resources/intune-devices-comanagementeligibledevice.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 [
|:|:|:| |id|String|Unique Id for the device| |deviceName|String|DeviceName|
-|deviceType|[deviceType](../resources/intune-shared-devicetype.md)|DeviceType. 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`.|
+|deviceType|[deviceType](../resources/intune-devices-devicetype.md)|DeviceType. 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`.|
|clientRegistrationStatus|[deviceRegistrationState](../resources/intune-devices-deviceregistrationstate.md)|ClientRegistrationStatus. Possible values are: `notRegistered`, `registered`, `revoked`, `keyConflict`, `approvalPending`, `certificateReset`, `notRegisteredPendingEnrollment`, `unknown`.| |ownerType|[ownerType](../resources/intune-shared-ownertype.md)|OwnerType. Possible values are: `unknown`, `company`, `personal`.| |managementAgents|[managementAgentType](../resources/intune-shared-managementagenttype.md)|ManagementAgents. Possible values are: `eas`, `mdm`, `easMdm`, `intuneClient`, `easIntuneClient`, `configurationManagerClient`, `configurationManagerClientMdm`, `configurationManagerClientMdmEas`, `unknown`, `jamf`, `googleCloudDevicePolicyController`, `microsoft365ManagedMdm`, `msSense`, `intuneAosp`.|
Content-Length: 763
"status": "eligible" } ```-----
v1.0 Intune Devices Datasharingconsent Consenttodatasharing https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-datasharingconsent-consenttodatasharing.md
Title: "consentToDataSharing 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: 417
} } ```-----
v1.0 Intune Devices Datasharingconsent Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-datasharingconsent-create.md
Title: "Create dataSharingConsent" description: "Create a new dataSharingConsent object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [dataSharingConsent](../resources/intune-devices-datasharingconsent.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
"grantedByUserId": "Granted By User Id value" } ```-----
v1.0 Intune Devices Datasharingconsent Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-datasharingconsent-delete.md
Title: "Delete dataSharingConsent" description: "Deletes a dataSharingConsent."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [dataSharingConsent](../resources/intune-devices-datasharingconsent.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 Devices Datasharingconsent Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-datasharingconsent-get.md
Title: "Get dataSharingConsent" description: "Read properties and relationships of the dataSharingConsent object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [dataSharingConsent](../resources/intune-devices-datasharingconsent.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: 417
} } ```-----
v1.0 Intune Devices Datasharingconsent List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-datasharingconsent-list.md
Title: "List dataSharingConsents" description: "List properties and relationships of the dataSharingConsent objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [dataSharingConsent](../resources/intune-devices-datasharingconsent.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: 447
] } ```-----
v1.0 Intune Devices Datasharingconsent Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-datasharingconsent-update.md
Title: "Update dataSharingConsent" description: "Update the properties of a dataSharingConsent object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [dataSharingConsent](../resources/intune-devices-datasharingconsent.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
"grantedByUserId": "Granted By User Id value" } ```-----
v1.0 Intune Devices Detectedapp Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-detectedapp-create.md
Title: "Create detectedApp" description: "Create a new detectedApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [detectedApp](../resources/intune-devices-detectedapp.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: 277
"platform": "windows" } ```-----
v1.0 Intune Devices Detectedapp Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-detectedapp-delete.md
Title: "Delete detectedApp" description: "Deletes a detectedApp."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [detectedApp](../resources/intune-devices-detectedapp.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 Devices Detectedapp Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-detectedapp-get.md
Title: "Get detectedApp" description: "Read properties and relationships of the detectedApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [detectedApp](../resources/intune-devices-detectedapp.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: 312
} } ```-----
v1.0 Intune Devices Detectedapp List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-detectedapp-list.md
Title: "List detectedApps" description: "List properties and relationships of the detectedApp objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [detectedApp](../resources/intune-devices-detectedapp.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 Devices Detectedapp Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-detectedapp-update.md
Title: "Update detectedApp" description: "Update the properties of a detectedApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [detectedApp](../resources/intune-devices-detectedapp.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: 277
"platform": "windows" } ```-----
v1.0 Intune Devices Devicecompliancescript Assign https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicecompliancescript-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 Devices Devicecompliancescript Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicecompliancescript-create.md
Title: "Create deviceComplianceScript" description: "Create a new deviceComplianceScript object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceComplianceScript](../resources/intune-devices-devicecompliancescript.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: 592
] } ```-----
v1.0 Intune Devices Devicecompliancescript Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicecompliancescript-delete.md
Title: "Delete deviceComplianceScript" description: "Deletes a deviceComplianceScript."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceComplianceScript](../resources/intune-devices-devicecompliancescript.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 Devices Devicecompliancescript Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicecompliancescript-get.md
Title: "Get deviceComplianceScript" description: "Read properties and relationships of the deviceComplianceScript object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceComplianceScript](../resources/intune-devices-devicecompliancescript.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: 641
} } ```-----
v1.0 Intune Devices Devicecompliancescript List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicecompliancescript-list.md
Title: "List deviceComplianceScripts" description: "List properties and relationships of the deviceComplianceScript objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceComplianceScript](../resources/intune-devices-devicecompliancescript.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: 685
] } ```-----
v1.0 Intune Devices Devicecompliancescript Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicecompliancescript-update.md
Title: "Update deviceComplianceScript" description: "Update the properties of a deviceComplianceScript object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceComplianceScript](../resources/intune-devices-devicecompliancescript.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: 592
] } ```-----
v1.0 Intune Devices Devicecompliancescriptdevicestate Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicecompliancescriptdevicestate-create.md
Title: "Create deviceComplianceScriptDeviceState" description: "Create a new deviceComplianceScriptDeviceState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceComplianceScriptDeviceState](../resources/intune-devices-devicecompliancescriptdevicestate.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 d
|Property|Type|Description| |:|:|:| |id|String|Key of the device compliance script device state entity. This property is read-only.|
-|detectionState|[runState](../resources/intune-shared-runstate.md)|Detection state from the lastest device compliance script execution. Possible values are: `unknown`, `success`, `fail`, `scriptError`, `pending`, `notApplicable`.|
+|detectionState|[runState](../resources/intune-devices-runstate.md)|Detection state from the lastest device compliance script execution. Possible values are: `unknown`, `success`, `fail`, `scriptError`, `pending`, `notApplicable`.|
|lastStateUpdateDateTime|DateTimeOffset|The last timestamp of when the device compliance script executed| |expectedStateUpdateDateTime|DateTimeOffset|The next timestamp of when the device compliance script is expected to execute| |lastSyncDateTime|DateTimeOffset|The last time that Intune Managment Extension synced with Intune|
Content-Length: 436
"scriptError": "Script Error value" } ```-----
v1.0 Intune Devices Devicecompliancescriptdevicestate Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicecompliancescriptdevicestate-delete.md
Title: "Delete deviceComplianceScriptDeviceState" description: "Deletes a deviceComplianceScriptDeviceState."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceComplianceScriptDeviceState](../resources/intune-devices-devicecompliancescriptdevicestate.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 Devices Devicecompliancescriptdevicestate Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicecompliancescriptdevicestate-get.md
Title: "Get deviceComplianceScriptDeviceState" description: "Read properties and relationships of the deviceComplianceScriptDeviceState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceComplianceScriptDeviceState](../resources/intune-devices-devicecompliancescriptdevicestate.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 Devices Devicecompliancescriptdevicestate List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicecompliancescriptdevicestate-list.md
Title: "List deviceComplianceScriptDeviceStates" description: "List properties and relationships of the deviceComplianceScriptDeviceState objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceComplianceScriptDeviceState](../resources/intune-devices-devicecompliancescriptdevicestate.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 Devices Devicecompliancescriptdevicestate Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicecompliancescriptdevicestate-update.md
Title: "Update deviceComplianceScriptDeviceState" description: "Update the properties of a deviceComplianceScriptDeviceState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceComplianceScriptDeviceState](../resources/intune-devices-devicecompliancescriptdevicestate.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 [
|Property|Type|Description| |:|:|:| |id|String|Key of the device compliance script device state entity. This property is read-only.|
-|detectionState|[runState](../resources/intune-shared-runstate.md)|Detection state from the lastest device compliance script execution. Possible values are: `unknown`, `success`, `fail`, `scriptError`, `pending`, `notApplicable`.|
+|detectionState|[runState](../resources/intune-devices-runstate.md)|Detection state from the lastest device compliance script execution. Possible values are: `unknown`, `success`, `fail`, `scriptError`, `pending`, `notApplicable`.|
|lastStateUpdateDateTime|DateTimeOffset|The last timestamp of when the device compliance script executed| |expectedStateUpdateDateTime|DateTimeOffset|The next timestamp of when the device compliance script is expected to execute| |lastSyncDateTime|DateTimeOffset|The last time that Intune Managment Extension synced with Intune|
Content-Length: 436
"scriptError": "Script Error value" } ```-----
v1.0 Intune Devices Devicecompliancescriptrunsummary Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicecompliancescriptrunsummary-get.md
Title: "Get deviceComplianceScriptRunSummary" description: "Read properties and relationships of the deviceComplianceScriptRunSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceComplianceScriptRunSummary](../resources/intune-devices-devicecompliancescriptrunsummary.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: 377
} } ```-----
v1.0 Intune Devices Devicecompliancescriptrunsummary Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicecompliancescriptrunsummary-update.md
Title: "Update deviceComplianceScriptRunSummary" description: "Update the properties of a deviceComplianceScriptRunSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceComplianceScriptRunSummary](../resources/intune-devices-devicecompliancescriptrunsummary.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
"lastScriptRunDateTime": "2017-01-01T00:01:17.4310553-08:00" } ```-----
v1.0 Intune Devices Devicecustomattributeshellscript Assign https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicecustomattributeshellscript-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 Devices Devicecustomattributeshellscript Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicecustomattributeshellscript-create.md
Title: "Create deviceCustomAttributeShellScript" description: "Create a new deviceCustomAttributeShellScript object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceCustomAttributeShellScript](../resources/intune-devices-devicecustomattributeshellscript.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: 585
] } ```-----
v1.0 Intune Devices Devicecustomattributeshellscript Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicecustomattributeshellscript-delete.md
Title: "Delete deviceCustomAttributeShellScript" description: "Deletes a deviceCustomAttributeShellScript."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceCustomAttributeShellScript](../resources/intune-devices-devicecustomattributeshellscript.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 Devices Devicecustomattributeshellscript Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicecustomattributeshellscript-get.md
Title: "Get deviceCustomAttributeShellScript" description: "Read properties and relationships of the deviceCustomAttributeShellScript object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceCustomAttributeShellScript](../resources/intune-devices-devicecustomattributeshellscript.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: 632
} } ```-----
v1.0 Intune Devices Devicecustomattributeshellscript List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicecustomattributeshellscript-list.md
Title: "List deviceCustomAttributeShellScripts" description: "List properties and relationships of the deviceCustomAttributeShellScript objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceCustomAttributeShellScript](../resources/intune-devices-devicecustomattributeshellscript.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: 674
] } ```-----
v1.0 Intune Devices Devicecustomattributeshellscript Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicecustomattributeshellscript-update.md
Title: "Update deviceCustomAttributeShellScript" description: "Update the properties of a deviceCustomAttributeShellScript object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceCustomAttributeShellScript](../resources/intune-devices-devicecustomattributeshellscript.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: 585
] } ```-----
v1.0 Intune Devices Devicehealthscript Areglobalscriptsavailable https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicehealthscript-areglobalscriptsavailable.md
Title: "areGlobalScriptsAvailable 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: 26
"value": "pending" } ```-----
v1.0 Intune Devices Devicehealthscript Assign https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicehealthscript-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 Devices Devicehealthscript Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicehealthscript-create.md
Title: "Create deviceHealthScript" description: "Create a new deviceHealthScript object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceHealthScript](../resources/intune-devices-devicehealthscript.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: 1393
] } ```-----
v1.0 Intune Devices Devicehealthscript Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicehealthscript-delete.md
Title: "Delete deviceHealthScript" description: "Deletes a deviceHealthScript."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceHealthScript](../resources/intune-devices-devicehealthscript.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 Devices Devicehealthscript Enableglobalscripts https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicehealthscript-enableglobalscripts.md
Title: "enableGlobalScripts 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 Devices Devicehealthscript Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicehealthscript-get.md
Title: "Get deviceHealthScript" description: "Read properties and relationships of the deviceHealthScript object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceHealthScript](../resources/intune-devices-devicehealthscript.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: 1488
} } ```-----
v1.0 Intune Devices Devicehealthscript Getglobalscripthighestavailableversion https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicehealthscript-getglobalscripthighestavailableversion.md
Title: "getGlobalScriptHighestAvailableVersion action" description: "Update the Proprietary Device Health Script"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the Proprietary Device Health Script
-## Prerequisites
+## Permissions
One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)|
Content-Length: 68
"value": "Get Global Script Highest Available Version value" } ```-----
v1.0 Intune Devices Devicehealthscript Getremediationhistory https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicehealthscript-getremediationhistory.md
Title: "getRemediationHistory function" description: "Function to get the number of remediations by a device health scripts"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Function to get the number of remediations by a device health scripts
-## Prerequisites
+## Permissions
One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)|
Content-Length: 397
} } ```-----
v1.0 Intune Devices Devicehealthscript Getremediationsummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicehealthscript-getremediationsummary.md
Title: "getRemediationSummary 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: 155
} } ```-----
v1.0 Intune Devices Devicehealthscript List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicehealthscript-list.md
Title: "List deviceHealthScripts" description: "List properties and relationships of the deviceHealthScript objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceHealthScript](../resources/intune-devices-devicehealthscript.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: 1578
] } ```-----
v1.0 Intune Devices Devicehealthscript Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicehealthscript-update.md
Title: "Update deviceHealthScript" description: "Update the properties of a deviceHealthScript object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceHealthScript](../resources/intune-devices-devicehealthscript.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: 1393
] } ```-----
v1.0 Intune Devices Devicehealthscript Updateglobalscript https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicehealthscript-updateglobalscript.md
Title: "updateGlobalScript action" description: "Update the Proprietary Device Health Script"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the Proprietary Device Health Script
-## Prerequisites
+## Permissions
One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)|
Content-Length: 45
"value": "Update Global Script value" } ```-----
v1.0 Intune Devices Devicehealthscriptassignment Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicehealthscriptassignment-create.md
Title: "Create deviceHealthScriptAssignment" description: "Create a new deviceHealthScriptAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceHealthScriptAssignment](../resources/intune-devices-devicehealthscriptassignment.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: 639
} } ```-----
v1.0 Intune Devices Devicehealthscriptassignment Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicehealthscriptassignment-delete.md
Title: "Delete deviceHealthScriptAssignment" description: "Deletes a deviceHealthScriptAssignment."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceHealthScriptAssignment](../resources/intune-devices-devicehealthscriptassignment.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 Devices Devicehealthscriptassignment Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicehealthscriptassignment-get.md
Title: "Get deviceHealthScriptAssignment" description: "Read properties and relationships of the deviceHealthScriptAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceHealthScriptAssignment](../resources/intune-devices-devicehealthscriptassignment.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: 688
} } ```-----
v1.0 Intune Devices Devicehealthscriptassignment List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicehealthscriptassignment-list.md
Title: "List deviceHealthScriptAssignments" description: "List properties and relationships of the deviceHealthScriptAssignment objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceHealthScriptAssignment](../resources/intune-devices-devicehealthscriptassignment.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: 732
] } ```-----
v1.0 Intune Devices Devicehealthscriptassignment Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicehealthscriptassignment-update.md
Title: "Update deviceHealthScriptAssignment" description: "Update the properties of a deviceHealthScriptAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceHealthScriptAssignment](../resources/intune-devices-devicehealthscriptassignment.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: 639
} } ```-----
v1.0 Intune Devices Devicehealthscriptdevicestate Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicehealthscriptdevicestate-create.md
Title: "Create deviceHealthScriptDeviceState" description: "Create a new deviceHealthScriptDeviceState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceHealthScriptDeviceState](../resources/intune-devices-devicehealthscriptdevicestate.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 d
|Property|Type|Description| |:|:|:| |id|String|Key of the device health script device state entity. This property is read-only.|
-|detectionState|[runState](../resources/intune-shared-runstate.md)|Detection state from the lastest device health script execution. Possible values are: `unknown`, `success`, `fail`, `scriptError`, `pending`, `notApplicable`.|
+|detectionState|[runState](../resources/intune-devices-runstate.md)|Detection state from the lastest device health script execution. Possible values are: `unknown`, `success`, `fail`, `scriptError`, `pending`, `notApplicable`.|
|lastStateUpdateDateTime|DateTimeOffset|The last timestamp of when the device health script executed| |expectedStateUpdateDateTime|DateTimeOffset|The next timestamp of when the device health script is expected to execute| |lastSyncDateTime|DateTimeOffset|The last time that Intune Managment Extension synced with Intune|
Content-Length: 880
] } ```-----
v1.0 Intune Devices Devicehealthscriptdevicestate Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicehealthscriptdevicestate-delete.md
Title: "Delete deviceHealthScriptDeviceState" description: "Deletes a deviceHealthScriptDeviceState."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceHealthScriptDeviceState](../resources/intune-devices-devicehealthscriptdevicestate.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 Devices Devicehealthscriptdevicestate Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicehealthscriptdevicestate-get.md
Title: "Get deviceHealthScriptDeviceState" description: "Read properties and relationships of the deviceHealthScriptDeviceState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceHealthScriptDeviceState](../resources/intune-devices-devicehealthscriptdevicestate.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: 929
} } ```-----
v1.0 Intune Devices Devicehealthscriptdevicestate List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicehealthscriptdevicestate-list.md
Title: "List deviceHealthScriptDeviceStates" description: "List properties and relationships of the deviceHealthScriptDeviceState objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceHealthScriptDeviceState](../resources/intune-devices-devicehealthscriptdevicestate.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: 973
] } ```-----
v1.0 Intune Devices Devicehealthscriptdevicestate Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicehealthscriptdevicestate-update.md
Title: "Update deviceHealthScriptDeviceState" description: "Update the properties of a deviceHealthScriptDeviceState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceHealthScriptDeviceState](../resources/intune-devices-devicehealthscriptdevicestate.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 [
|Property|Type|Description| |:|:|:| |id|String|Key of the device health script device state entity. This property is read-only.|
-|detectionState|[runState](../resources/intune-shared-runstate.md)|Detection state from the lastest device health script execution. Possible values are: `unknown`, `success`, `fail`, `scriptError`, `pending`, `notApplicable`.|
+|detectionState|[runState](../resources/intune-devices-runstate.md)|Detection state from the lastest device health script execution. Possible values are: `unknown`, `success`, `fail`, `scriptError`, `pending`, `notApplicable`.|
|lastStateUpdateDateTime|DateTimeOffset|The last timestamp of when the device health script executed| |expectedStateUpdateDateTime|DateTimeOffset|The next timestamp of when the device health script is expected to execute| |lastSyncDateTime|DateTimeOffset|The last time that Intune Managment Extension synced with Intune|
Content-Length: 880
] } ```-----
v1.0 Intune Devices Devicehealthscriptrunsummary Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicehealthscriptrunsummary-get.md
Title: "Get deviceHealthScriptRunSummary" description: "Read properties and relationships of the deviceHealthScriptRunSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceHealthScriptRunSummary](../resources/intune-devices-devicehealthscriptrunsummary.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: 637
} } ```-----
v1.0 Intune Devices Devicehealthscriptrunsummary Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicehealthscriptrunsummary-update.md
Title: "Update deviceHealthScriptRunSummary" description: "Update the properties of a deviceHealthScriptRunSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceHealthScriptRunSummary](../resources/intune-devices-devicehealthscriptrunsummary.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: 592
"issueRemediatedCumulativeDeviceCount": 4 } ```-----
v1.0 Intune Devices Devicelogcollectionresponse Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicelogcollectionresponse-create.md
Title: "Create deviceLogCollectionResponse" description: "Create a new deviceLogCollectionResponse object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceLogCollectionResponse](../resources/intune-devices-devicelogcollectionresponse.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: 575
"enrolledByUser": "Enrolled By User value" } ```-----
v1.0 Intune Devices Devicelogcollectionresponse Createdownloadurl https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicelogcollectionresponse-createdownloadurl.md
Title: "createDownloadUrl 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: 57
"value": "https://example.com/createDownloadUrl/" } ```-----
v1.0 Intune Devices Devicelogcollectionresponse Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicelogcollectionresponse-delete.md
Title: "Delete deviceLogCollectionResponse" description: "Deletes a deviceLogCollectionResponse."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceLogCollectionResponse](../resources/intune-devices-devicelogcollectionresponse.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 Devices Devicelogcollectionresponse Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicelogcollectionresponse-get.md
Title: "Get deviceLogCollectionResponse" description: "Read properties and relationships of the deviceLogCollectionResponse object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceLogCollectionResponse](../resources/intune-devices-devicelogcollectionresponse.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: 616
} } ```-----
v1.0 Intune Devices Devicelogcollectionresponse List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicelogcollectionresponse-list.md
Title: "List deviceLogCollectionResponses" description: "List properties and relationships of the deviceLogCollectionResponse objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceLogCollectionResponse](../resources/intune-devices-devicelogcollectionresponse.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: 652
] } ```-----
v1.0 Intune Devices Devicelogcollectionresponse Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicelogcollectionresponse-update.md
Title: "Update deviceLogCollectionResponse" description: "Update the properties of a deviceLogCollectionResponse object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceLogCollectionResponse](../resources/intune-devices-devicelogcollectionresponse.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: 575
"enrolledByUser": "Enrolled By User value" } ```-----
v1.0 Intune Devices Devicemanagement Getcomanageddevicessummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicemanagement-getcomanageddevicessummary.md
Title: "getComanagedDevicesSummary 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: 379
} } ```-----
v1.0 Intune Devices Devicemanagement Getcomanagementeligibledevicessummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicemanagement-getcomanagementeligibledevicessummary.md
Title: "getComanagementEligibleDevicesSummary 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: 291
} } ```-----
v1.0 Intune Devices Devicemanagement Userexperienceanalyticssummarizeddevicescopes https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicemanagement-userexperienceanalyticssummarizeddevicescopes.md
Title: "userExperienceAnalyticsSummarizedDeviceScopes 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: 351
} } ```-----
v1.0 Intune Devices Devicemanagement Userexperienceanalyticssummarizeworkfromanywheredevices https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicemanagement-userexperienceanalyticssummarizeworkfromanywheredevices.md
Title: "userExperienceAnalyticsSummarizeWorkFromAnywhereDevices 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: 1355
} } ```-----
v1.0 Intune Devices Devicemanagementscriptassignment Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicemanagementscriptassignment-create.md
Title: "Create deviceManagementScriptAssignment" description: "Create a new deviceManagementScriptAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceManagementScriptAssignment](../resources/intune-devices-devicemanagementscriptassignment.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: 440
} } ```-----
v1.0 Intune Devices Devicemanagementscriptassignment Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicemanagementscriptassignment-delete.md
Title: "Delete deviceManagementScriptAssignment" description: "Deletes a deviceManagementScriptAssignment."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceManagementScriptAssignment](../resources/intune-devices-devicemanagementscriptassignment.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 Devices Devicemanagementscriptassignment Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicemanagementscriptassignment-get.md
Title: "Get deviceManagementScriptAssignment" description: "Read properties and relationships of the deviceManagementScriptAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementScriptAssignment](../resources/intune-devices-devicemanagementscriptassignment.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: 475
} } ```-----
v1.0 Intune Devices Devicemanagementscriptassignment List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicemanagementscriptassignment-list.md
Title: "List deviceManagementScriptAssignments" description: "List properties and relationships of the deviceManagementScriptAssignment objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceManagementScriptAssignment](../resources/intune-devices-devicemanagementscriptassignment.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: 505
] } ```-----
v1.0 Intune Devices Devicemanagementscriptassignment Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicemanagementscriptassignment-update.md
Title: "Update deviceManagementScriptAssignment" description: "Update the properties of a deviceManagementScriptAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementScriptAssignment](../resources/intune-devices-devicemanagementscriptassignment.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: 440
} } ```-----
v1.0 Intune Devices Devicemanagementscriptdevicestate Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicemanagementscriptdevicestate-create.md
Title: "Create deviceManagementScriptDeviceState" description: "Create a new deviceManagementScriptDeviceState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceManagementScriptDeviceState](../resources/intune-devices-devicemanagementscriptdevicestate.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 d
|Property|Type|Description| |:|:|:| |id|String|Key of the device management script device state entity. This property is read-only.|
-|runState|[runState](../resources/intune-shared-runstate.md)|State of latest run of the device management script. Possible values are: `unknown`, `success`, `fail`, `scriptError`, `pending`, `notApplicable`.|
+|runState|[runState](../resources/intune-devices-runstate.md)|State of latest run of the device management script. Possible values are: `unknown`, `success`, `fail`, `scriptError`, `pending`, `notApplicable`.|
|resultMessage|String|Details of execution output.| |lastStateUpdateDateTime|DateTimeOffset|Latest time the device management script executes.| |errorCode|Int32|Error code corresponding to erroneous execution of the device management script.|
Content-Length: 330
"errorDescription": "Error Description value" } ```-----
v1.0 Intune Devices Devicemanagementscriptdevicestate Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicemanagementscriptdevicestate-delete.md
Title: "Delete deviceManagementScriptDeviceState" description: "Deletes a deviceManagementScriptDeviceState."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceManagementScriptDeviceState](../resources/intune-devices-devicemanagementscriptdevicestate.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 Devices Devicemanagementscriptdevicestate Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicemanagementscriptdevicestate-get.md
Title: "Get deviceManagementScriptDeviceState" description: "Read properties and relationships of the deviceManagementScriptDeviceState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementScriptDeviceState](../resources/intune-devices-devicemanagementscriptdevicestate.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: 363
} } ```-----
v1.0 Intune Devices Devicemanagementscriptdevicestate List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicemanagementscriptdevicestate-list.md
Title: "List deviceManagementScriptDeviceStates" description: "List properties and relationships of the deviceManagementScriptDeviceState objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceManagementScriptDeviceState](../resources/intune-devices-devicemanagementscriptdevicestate.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: 391
] } ```-----
v1.0 Intune Devices Devicemanagementscriptdevicestate Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicemanagementscriptdevicestate-update.md
Title: "Update deviceManagementScriptDeviceState" description: "Update the properties of a deviceManagementScriptDeviceState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementScriptDeviceState](../resources/intune-devices-devicemanagementscriptdevicestate.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 [
|Property|Type|Description| |:|:|:| |id|String|Key of the device management script device state entity. This property is read-only.|
-|runState|[runState](../resources/intune-shared-runstate.md)|State of latest run of the device management script. Possible values are: `unknown`, `success`, `fail`, `scriptError`, `pending`, `notApplicable`.|
+|runState|[runState](../resources/intune-devices-runstate.md)|State of latest run of the device management script. Possible values are: `unknown`, `success`, `fail`, `scriptError`, `pending`, `notApplicable`.|
|resultMessage|String|Details of execution output.| |lastStateUpdateDateTime|DateTimeOffset|Latest time the device management script executes.| |errorCode|Int32|Error code corresponding to erroneous execution of the device management script.|
Content-Length: 330
"errorDescription": "Error Description value" } ```-----
v1.0 Intune Devices Devicemanagementscriptgroupassignment Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicemanagementscriptgroupassignment-create.md
Title: "Create deviceManagementScriptGroupAssignment" description: "Create a new deviceManagementScriptGroupAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceManagementScriptGroupAssignment](../resources/intune-devices-devicemanagementscriptgroupassignment.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: 173
"targetGroupId": "Target Group Id value" } ```-----
v1.0 Intune Devices Devicemanagementscriptgroupassignment Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicemanagementscriptgroupassignment-delete.md
Title: "Delete deviceManagementScriptGroupAssignment" description: "Deletes a deviceManagementScriptGroupAssignment."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceManagementScriptGroupAssignment](../resources/intune-devices-devicemanagementscriptgroupassignment.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 Devices Devicemanagementscriptgroupassignment Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicemanagementscriptgroupassignment-get.md
Title: "Get deviceManagementScriptGroupAssignment" description: "Read properties and relationships of the deviceManagementScriptGroupAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementScriptGroupAssignment](../resources/intune-devices-devicemanagementscriptgroupassignment.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: 198
} } ```-----
v1.0 Intune Devices Devicemanagementscriptgroupassignment List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicemanagementscriptgroupassignment-list.md
Title: "List deviceManagementScriptGroupAssignments" description: "List properties and relationships of the deviceManagementScriptGroupAssignment objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceManagementScriptGroupAssignment](../resources/intune-devices-devicemanagementscriptgroupassignment.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: 218
] } ```-----
v1.0 Intune Devices Devicemanagementscriptgroupassignment Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicemanagementscriptgroupassignment-update.md
Title: "Update deviceManagementScriptGroupAssignment" description: "Update the properties of a deviceManagementScriptGroupAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementScriptGroupAssignment](../resources/intune-devices-devicemanagementscriptgroupassignment.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: 173
"targetGroupId": "Target Group Id value" } ```-----
v1.0 Intune Devices Devicemanagementscriptrunsummary Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicemanagementscriptrunsummary-get.md
Title: "Get deviceManagementScriptRunSummary" description: "Read properties and relationships of the deviceManagementScriptRunSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementScriptRunSummary](../resources/intune-devices-devicemanagementscriptrunsummary.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: 259
} } ```-----
v1.0 Intune Devices Devicemanagementscriptrunsummary Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicemanagementscriptrunsummary-update.md
Title: "Update deviceManagementScriptRunSummary" description: "Update the properties of a deviceManagementScriptRunSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementScriptRunSummary](../resources/intune-devices-devicemanagementscriptrunsummary.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: 228
"errorUserCount": 14 } ```-----
v1.0 Intune Devices Devicemanagementscriptuserstate Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicemanagementscriptuserstate-create.md
Title: "Create deviceManagementScriptUserState" description: "Create a new deviceManagementScriptUserState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceManagementScriptUserState](../resources/intune-devices-devicemanagementscriptuserstate.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: 229
"userPrincipalName": "User Principal Name value" } ```-----
v1.0 Intune Devices Devicemanagementscriptuserstate Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicemanagementscriptuserstate-delete.md
Title: "Delete deviceManagementScriptUserState" description: "Deletes a deviceManagementScriptUserState."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceManagementScriptUserState](../resources/intune-devices-devicemanagementscriptuserstate.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 Devices Devicemanagementscriptuserstate Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicemanagementscriptuserstate-get.md
Title: "Get deviceManagementScriptUserState" description: "Read properties and relationships of the deviceManagementScriptUserState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementScriptUserState](../resources/intune-devices-devicemanagementscriptuserstate.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: 258
} } ```-----
v1.0 Intune Devices Devicemanagementscriptuserstate List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicemanagementscriptuserstate-list.md
Title: "List deviceManagementScriptUserStates" description: "List properties and relationships of the deviceManagementScriptUserState objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceManagementScriptUserState](../resources/intune-devices-devicemanagementscriptuserstate.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: 282
] } ```-----
v1.0 Intune Devices Devicemanagementscriptuserstate Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-devicemanagementscriptuserstate-update.md
Title: "Update deviceManagementScriptUserState" description: "Update the properties of a deviceManagementScriptUserState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementScriptUserState](../resources/intune-devices-devicemanagementscriptuserstate.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: 229
"userPrincipalName": "User Principal Name value" } ```-----
v1.0 Intune Devices Deviceshellscript Assign https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-deviceshellscript-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 Devices Deviceshellscript Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-deviceshellscript-create.md
Title: "Create deviceShellScript" description: "Create a new deviceShellScript object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceShellScript](../resources/intune-devices-deviceshellscript.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: 581
] } ```-----
v1.0 Intune Devices Deviceshellscript Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-deviceshellscript-delete.md
Title: "Delete deviceShellScript" description: "Deletes a deviceShellScript."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceShellScript](../resources/intune-devices-deviceshellscript.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 Devices Deviceshellscript Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-deviceshellscript-get.md
Title: "Get deviceShellScript" description: "Read properties and relationships of the deviceShellScript object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceShellScript](../resources/intune-devices-deviceshellscript.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: 630
} } ```-----
v1.0 Intune Devices Deviceshellscript List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-deviceshellscript-list.md
Title: "List deviceShellScripts" description: "List properties and relationships of the deviceShellScript objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceShellScript](../resources/intune-devices-deviceshellscript.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: 674
] } ```-----
v1.0 Intune Devices Deviceshellscript Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-deviceshellscript-update.md
Title: "Update deviceShellScript" description: "Update the properties of a deviceShellScript object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceShellScript](../resources/intune-devices-deviceshellscript.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: 581
] } ```-----
v1.0 Intune Devices Malwarestateforwindowsdevice Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-malwarestateforwindowsdevice-create.md
Title: "Create malwareStateForWindowsDevice" description: "Create a new malwareStateForWindowsDevice object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [malwareStateForWindowsDevice](../resources/intune-devices-malwarestateforwindowsdevice.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: 383
"detectionCount": 14 } ```-----
v1.0 Intune Devices Malwarestateforwindowsdevice Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-malwarestateforwindowsdevice-delete.md
Title: "Delete malwareStateForWindowsDevice" description: "Deletes a malwareStateForWindowsDevice."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [malwareStateForWindowsDevice](../resources/intune-devices-malwarestateforwindowsdevice.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 Devices Malwarestateforwindowsdevice Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-malwarestateforwindowsdevice-get.md
Title: "Get malwareStateForWindowsDevice" description: "Read properties and relationships of the malwareStateForWindowsDevice object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [malwareStateForWindowsDevice](../resources/intune-devices-malwarestateforwindowsdevice.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: 418
} } ```-----
v1.0 Intune Devices Malwarestateforwindowsdevice List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-malwarestateforwindowsdevice-list.md
Title: "List malwareStateForWindowsDevices" description: "List properties and relationships of the malwareStateForWindowsDevice objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [malwareStateForWindowsDevice](../resources/intune-devices-malwarestateforwindowsdevice.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: 448
] } ```-----
v1.0 Intune Devices Malwarestateforwindowsdevice Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-malwarestateforwindowsdevice-update.md
Title: "Update malwareStateForWindowsDevice" description: "Update the properties of a malwareStateForWindowsDevice object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [malwareStateForWindowsDevice](../resources/intune-devices-malwarestateforwindowsdevice.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: 383
"detectionCount": 14 } ```-----
v1.0 Intune Devices Manageddevice Activatedeviceesim https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-manageddevice-activatedeviceesim.md
Title: "activateDeviceEsim action" description: "Activate eSIM on the device."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Activate eSIM on the device.
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Devices Manageddevice Appdiagnostics https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-manageddevice-appdiagnostics.md
Title: "appDiagnostics 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: 485
] } ```-----
v1.0 Intune Devices Manageddevice Bypassactivationlock https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-manageddevice-bypassactivationlock.md
Title: "bypassActivationLock action" description: "Bypass activation lock"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Bypass activation lock
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Devices Manageddevice Cleanwindowsdevice https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-manageddevice-cleanwindowsdevice.md
Title: "cleanWindowsDevice action" description: "Clean Windows device"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Clean Windows device
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Devices Manageddevice Createdevicelogcollectionrequest https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-manageddevice-createdevicelogcollectionrequest.md
Title: "createDeviceLogCollectionRequest 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: 616
} } ```-----
v1.0 Intune Devices Manageddevice Deleteuserfromsharedappledevice https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-manageddevice-deleteuserfromsharedappledevice.md
Title: "deleteUserFromSharedAppleDevice action" description: "Delete user from shared Apple device"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Delete user from shared Apple device
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Devices Manageddevice Deprovision https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-manageddevice-deprovision.md
Title: "deprovision 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 Devices Manageddevice Disable https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-manageddevice-disable.md
Title: "disable 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 Devices Manageddevice Disablelostmode https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-manageddevice-disablelostmode.md
Title: "disableLostMode action" description: "Disable lost mode"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Disable lost mode
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Devices Manageddevice Downloadappdiagnostics https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-manageddevice-downloadappdiagnostics.md
Title: "downloadAppDiagnostics 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: 87
"value": "ZG93bmxvYWRBcHBEaWFnbm9zdGljcyBJbnR1bmUgRG9jIFNhbXBsZSAtNjMxMjUxNzE=" } ```-----
v1.0 Intune Devices Manageddevice Enablelostmode https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-manageddevice-enablelostmode.md
Title: "enableLostMode action" description: "Enable lost mode"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Enable lost mode
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Devices Manageddevice Enrollnowaction https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-manageddevice-enrollnowaction.md
Title: "enrollNowAction action" description: "Trigger comanagement enrollment action on ConfigurationManager client"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Trigger comanagement enrollment action on ConfigurationManager client
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Devices Manageddevice Executeaction https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-manageddevice-executeaction.md
Title: "executeAction 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: 385
} } ```-----
v1.0 Intune Devices Manageddevice Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-manageddevice-get.md
Title: "Get managedDevice" description: "Read properties and relationships of the managedDevice object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [managedDevice](../resources/intune-devices-manageddevice.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: 9630
} } ```-----
v1.0 Intune Devices Manageddevice Getfilevaultkey https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-manageddevice-getfilevaultkey.md
Title: "getFileVaultKey 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: 43
"value": "Get File Vault Key value" } ```-----
v1.0 Intune Devices Manageddevice Getoemwarranty https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-manageddevice-getoemwarranty.md
Title: "getOemWarranty 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: 843
} } ```-----
v1.0 Intune Devices Manageddevice Initiatemobiledevicemanagementkeyrecovery https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-manageddevice-initiatemobiledevicemanagementkeyrecovery.md
Title: "initiateMobileDeviceManagementKeyRecovery action" description: "Perform MDM key recovery and TPM attestation"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Perform MDM key recovery and TPM attestation
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Devices Manageddevice Locatedevice https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-manageddevice-locatedevice.md
Title: "locateDevice action" description: "Locate a device"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Locate a device
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Devices Manageddevice Logoutsharedappledeviceactiveuser https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-manageddevice-logoutsharedappledeviceactiveuser.md
Title: "logoutSharedAppleDeviceActiveUser action" description: "Logout shared Apple device active user"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Logout shared Apple device active user
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Devices Manageddevice Movedevicestoou https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-manageddevice-movedevicestoou.md
Title: "moveDevicesToOU 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 Devices Manageddevice Playlostmodesound https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-manageddevice-playlostmodesound.md
Title: "playLostModeSound action" description: "Play lost mode sound"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Play lost mode sound
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Devices Manageddevice Rebootnow https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-manageddevice-rebootnow.md
Title: "rebootNow action" description: "Reboot device"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Reboot device
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Devices Manageddevice Recoverpasscode https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-manageddevice-recoverpasscode.md
Title: "recoverPasscode action" description: "Recover passcode"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Recover passcode
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Devices Manageddevice Reenable https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-manageddevice-reenable.md
Title: "reenable 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 Devices Manageddevice Remotelock https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-manageddevice-remotelock.md
Title: "remoteLock action" description: "Remote lock"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Remote lock
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Devices Manageddevice Removedevicefirmwareconfigurationinterfacemanagement https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-manageddevice-removedevicefirmwareconfigurationinterfacemanagement.md
Title: "removeDeviceFirmwareConfigurationInterfaceManagement action" description: "Remove device from Device Firmware Configuration Interface management"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Remove device from Device Firmware Configuration Interface management
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Devices Manageddevice Requestremoteassistance https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-manageddevice-requestremoteassistance.md
Title: "requestRemoteAssistance action" description: "Request remote assistance"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Request remote assistance
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Devices Manageddevice Resetpasscode https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-manageddevice-resetpasscode.md
Title: "resetPasscode action" description: "Reset passcode"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Reset passcode
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Devices Manageddevice Retire https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-manageddevice-retire.md
Title: "retire action" description: "Retire a device"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Retire a device
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Devices Manageddevice Revokeapplevpplicenses https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-manageddevice-revokeapplevpplicenses.md
Title: "revokeAppleVppLicenses action" description: "Revoke all Apple Vpp licenses for a device"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Revoke all Apple Vpp licenses for a device
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Devices Manageddevice Rotatebitlockerkeys https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-manageddevice-rotatebitlockerkeys.md
Title: "rotateBitLockerKeys action" description: "Rotate BitLockerKeys"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Rotate BitLockerKeys
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Devices Manageddevice Rotatefilevaultkey https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-manageddevice-rotatefilevaultkey.md
Title: "rotateFileVaultKey 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 Devices Manageddevice Sendcustomnotificationtocompanyportal https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-manageddevice-sendcustomnotificationtocompanyportal.md
Title: "sendCustomNotificationToCompanyPortal 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 Devices Manageddevice Setdevicename https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-manageddevice-setdevicename.md
Title: "setDeviceName action" description: "Set device name of the device."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Set device name of the device.
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Devices Manageddevice Shutdown https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-manageddevice-shutdown.md
Title: "shutDown action" description: "Shut down device"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Shut down device
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Devices Manageddevice Syncdevice https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-manageddevice-syncdevice.md
Title: "syncDevice 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 Devices Manageddevice Triggerconfigurationmanageraction https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-manageddevice-triggerconfigurationmanageraction.md
Title: "triggerConfigurationManagerAction action" description: "Trigger action on ConfigurationManager client"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Trigger action on ConfigurationManager client
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Devices Manageddevice Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-manageddevice-update.md
Title: "Update managedDevice" description: "Update the properties of a managedDevice object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [managedDevice](../resources/intune-devices-manageddevice.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 [
|lastSyncDateTime|DateTimeOffset|The date and time that the device last completed a successful sync with Intune. This property is read-only.| |chassisType|[chassisType](../resources/intune-devices-chassistype.md)|Chassis type of the device. This property is read-only. Possible values are: `unknown`, `desktop`, `laptop`, `worksWorkstation`, `enterpriseServer`, `phone`, `tablet`, `mobileOther`, `mobileUnknown`.| |operatingSystem|String|Operating system of the device. Windows, iOS, etc. This property is read-only.|
-|deviceType|[deviceType](../resources/intune-shared-devicetype.md)|Platform of the device. This property is read-only. 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`.|
+|deviceType|[deviceType](../resources/intune-devices-devicetype.md)|Platform of the device. This property is read-only. 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`.|
|complianceState|[complianceState](../resources/intune-devices-compliancestate.md)|Compliance state of the device. This property is read-only. Possible values are: `unknown`, `compliant`, `noncompliant`, `conflict`, `error`, `inGracePeriod`, `configManager`.| |jailBroken|String|whether the device is jail broken or rooted. This property is read-only.| |managementAgent|[managementAgentType](../resources/intune-shared-managementagenttype.md)|Management channel of the device. Intune, EAS, etc. This property is read-only. Possible values are: `eas`, `mdm`, `easMdm`, `intuneClient`, `easIntuneClient`, `configurationManagerClient`, `configurationManagerClientMdm`, `configurationManagerClientMdmEas`, `unknown`, `jamf`, `googleCloudDevicePolicyController`, `microsoft365ManagedMdm`, `msSense`, `intuneAosp`.|
The following table shows the properties that are required when you create the [
|azureADRegistered|Boolean|Whether the device is Azure Active Directory registered. This property is read-only.| |deviceEnrollmentType|[deviceEnrollmentType](../resources/intune-devices-deviceenrollmenttype.md)|Enrollment type of the device. This property is read-only. Possible values are: `unknown`, `userEnrollment`, `deviceEnrollmentManager`, `appleBulkWithUser`, `appleBulkWithoutUser`, `windowsAzureADJoin`, `windowsBulkUserless`, `windowsAutoEnrollment`, `windowsBulkAzureDomainJoin`, `windowsCoManagement`, `windowsAzureADJoinUsingDeviceAuth`, `appleUserEnrollment`, `appleUserEnrollmentWithServiceAccount`, `azureAdJoinUsingAzureVmExtension`, `androidEnterpriseDedicatedDevice`, `androidEnterpriseFullyManaged`, `androidEnterpriseCorporateWorkProfile`.| |lostModeState|[lostModeState](../resources/intune-devices-lostmodestate.md)|Indicates if Lost mode is enabled or disabled. This property is read-only. Possible values are: `disabled`, `enabled`.|
-|activationLockBypassCode|String|Code that allows the Activation Lock on a device to be bypassed. This property is read-only.|
+|activationLockBypassCode|String|The code that allows the Activation Lock on managed device to be bypassed. Default, is Null (Non-Default property) for this property when returned as part of managedDevice entity in LIST call. Individual GET call with select query options is needed to retrieve actual values. Supports: $select. $Search is not supported. Read-only. This property is read-only.|
|emailAddress|String|Email(s) for the user associated with the device. This property is read-only.| |azureActiveDirectoryDeviceId|String|The unique identifier for the Azure Active Directory device. Read only. This property is read-only.| |azureADDeviceId|String|The unique identifier for the Azure Active Directory device. Read only. This property is read-only.|
The following table shows the properties that are required when you create the [
|notes|String|Notes on the device created by IT Admin. Return default value null in LIST managedDevices. Real value only returned in singel device GET call with device id and included in select parameter. Supports: $select. $Search is not supported.| |configurationManagerClientHealthState|[configurationManagerClientHealthState](../resources/intune-devices-configurationmanagerclienthealthstate.md)|Configuration manager client health state, valid only for devices managed by MDM/ConfigMgr Agent| |configurationManagerClientInformation|[configurationManagerClientInformation](../resources/intune-devices-configurationmanagerclientinformation.md)|Configuration manager client information, valid only for devices managed, duel-managed or tri-managed by ConfigMgr Agent|
-|ethernetMacAddress|String|Ethernet MAC. This property is read-only.|
+|ethernetMacAddress|String|Ethernet MAC. Default, is Null (Non-Default property) for this property when returned as part of managedDevice entity. Individual get call with select query options is needed to retrieve actual values. Example: deviceManagement/managedDevices({managedDeviceId})?$select=ethernetMacAddress Supports: $select. $Search is not supported. Read-only. This property is read-only.|
|physicalMemoryInBytes|Int64|Total Memory in Bytes. Return default value 0 in LIST managedDevices. Real value only returned in singel device GET call with device id and included in select parameter. Supports: $select. Default value is 0. Read-only. This property is read-only.| |processorArchitecture|[managedDeviceArchitecture](../resources/intune-devices-manageddevicearchitecture.md)|Processor architecture. This property is read-only. Possible values are: `unknown`, `x86`, `x64`, `arm`, `arM64`.| |specificationVersion|String|Specification version. This property is read-only.| |joinType|[joinType](../resources/intune-devices-jointype.md)|Device join type. Possible values are: `unknown`, `azureADJoined`, `azureADRegistered`, `hybridAzureADJoined`.| |skuFamily|String|Device sku family|
-|skuNumber|Int32|Device sku number, see also: https://learn.microsoft.com/windows/win32/api/sysinfoapi/nf-sysinfoapi-getproductinfo. Valid values 0 to 2147483647. This property is read-only.|
+|skuNumber|Int32|Device sku number, see also: https://learn.microsoft.com/en-us/windows/win32/api/sysinfoapi/nf-sysinfoapi-getproductinfo. Valid values 0 to 2147483647. This property is read-only.|
|managementFeatures|[managedDeviceManagementFeatures](../resources/intune-devices-manageddevicemanagementfeatures.md)|Device management features. Possible values are: `none`, `microsoftManagedDesktop`.| |chromeOSDeviceInfo|[chromeOSDeviceProperty](../resources/intune-devices-chromeosdeviceproperty.md) collection|List of properties of the ChromeOS Device.| |enrollmentProfileName|String|Name of the enrollment profile assigned to the device. Default value is empty string, indicating no enrollment profile was assgined. This property is read-only.|
Content-Length: 9187
"deviceFirmwareConfigurationInterfaceManaged": true } ```------
v1.0 Intune Devices Manageddevice Updatewindowsdeviceaccount https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-manageddevice-updatewindowsdeviceaccount.md
Title: "updateWindowsDeviceAccount 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 Devices Manageddevice Windowsdefenderscan https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-manageddevice-windowsdefenderscan.md
Title: "windowsDefenderScan 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 Devices Manageddevice Windowsdefenderupdatesignatures https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-manageddevice-windowsdefenderupdatesignatures.md
Title: "windowsDefenderUpdateSignatures 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 Devices Manageddevice Wipe https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-manageddevice-wipe.md
Title: "wipe action" description: "Wipe a device"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Wipe a device
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Devices Manageddeviceoverview Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-manageddeviceoverview-get.md
Title: "Get managedDeviceOverview" description: "Read properties and relationships of the managedDeviceOverview object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [managedDeviceOverview](../resources/intune-devices-manageddeviceoverview.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: 1487
} } ```-----
v1.0 Intune Devices Manageddeviceoverview Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-manageddeviceoverview-update.md
Title: "Update managedDeviceOverview" description: "Update the properties of a managedDeviceOverview object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [managedDeviceOverview](../resources/intune-devices-manageddeviceoverview.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: 1384
"lastModifiedDateTime": "2017-01-01T00:00:35.1329464-08:00" } ```-----
v1.0 Intune Devices Oemwarrantyinformationonboarding Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-oemwarrantyinformationonboarding-create.md
Title: "Create oemWarrantyInformationOnboarding" description: "Create a new oemWarrantyInformationOnboarding object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [oemWarrantyInformationOnboarding](../resources/intune-devices-oemwarrantyinformationonboarding.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: 197
"available": true } ```-----
v1.0 Intune Devices Oemwarrantyinformationonboarding Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-oemwarrantyinformationonboarding-delete.md
Title: "Delete oemWarrantyInformationOnboarding" description: "Deletes a oemWarrantyInformationOnboarding."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [oemWarrantyInformationOnboarding](../resources/intune-devices-oemwarrantyinformationonboarding.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 Devices Oemwarrantyinformationonboarding Disable https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-oemwarrantyinformationonboarding-disable.md
Title: "disable 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 Devices Oemwarrantyinformationonboarding Enable https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-oemwarrantyinformationonboarding-enable.md
Title: "enable 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 Devices Oemwarrantyinformationonboarding Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-oemwarrantyinformationonboarding-get.md
Title: "Get oemWarrantyInformationOnboarding" description: "Read properties and relationships of the oemWarrantyInformationOnboarding object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [oemWarrantyInformationOnboarding](../resources/intune-devices-oemwarrantyinformationonboarding.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: 226
} } ```-----
v1.0 Intune Devices Oemwarrantyinformationonboarding List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-oemwarrantyinformationonboarding-list.md
Title: "List oemWarrantyInformationOnboardings" description: "List properties and relationships of the oemWarrantyInformationOnboarding objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [oemWarrantyInformationOnboarding](../resources/intune-devices-oemwarrantyinformationonboarding.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: 250
] } ```-----
v1.0 Intune Devices Oemwarrantyinformationonboarding Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-oemwarrantyinformationonboarding-update.md
Title: "Update oemWarrantyInformationOnboarding" description: "Update the properties of a oemWarrantyInformationOnboarding object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [oemWarrantyInformationOnboarding](../resources/intune-devices-oemwarrantyinformationonboarding.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: 197
"available": true } ```-----
v1.0 Intune Devices Remoteactionaudit Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-remoteactionaudit-create.md
Title: "Create remoteActionAudit" description: "Create a new remoteActionAudit object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [remoteActionAudit](../resources/intune-devices-remoteactionaudit.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: 553
"managedDeviceId": "Managed Device Id value" } ```-----
v1.0 Intune Devices Remoteactionaudit Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-remoteactionaudit-delete.md
Title: "Delete remoteActionAudit" description: "Deletes a remoteActionAudit."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [remoteActionAudit](../resources/intune-devices-remoteactionaudit.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 Devices Remoteactionaudit Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-remoteactionaudit-get.md
Title: "Get remoteActionAudit" description: "Read properties and relationships of the remoteActionAudit object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [remoteActionAudit](../resources/intune-devices-remoteactionaudit.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: 594
} } ```-----
v1.0 Intune Devices Remoteactionaudit List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-remoteactionaudit-list.md
Title: "List remoteActionAudits" description: "List properties and relationships of the remoteActionAudit objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [remoteActionAudit](../resources/intune-devices-remoteactionaudit.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: 630
] } ```-----
v1.0 Intune Devices Remoteactionaudit Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-remoteactionaudit-update.md
Title: "Update remoteActionAudit" description: "Update the properties of a remoteActionAudit object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [remoteActionAudit](../resources/intune-devices-remoteactionaudit.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: 553
"managedDeviceId": "Managed Device Id value" } ```-----
v1.0 Intune Devices Tenantattachrbac Enable https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-tenantattachrbac-enable.md
Title: "enable 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 Devices Tenantattachrbac Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-tenantattachrbac-get.md
Title: "Get tenantAttachRBAC" description: "Read properties and relationships of the tenantAttachRBAC object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [tenantAttachRBAC](../resources/intune-devices-tenantattachrbac.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 Devices Tenantattachrbac Getstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-tenantattachrbac-getstate.md
Title: "getState 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: 105
} } ```-----
v1.0 Intune Devices Tenantattachrbac Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-tenantattachrbac-update.md
Title: "Update tenantAttachRBAC" description: "Update the properties of a tenantAttachRBAC object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [tenantAttachRBAC](../resources/intune-devices-tenantattachrbac.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": "37568f2c-8f2c-3756-2c8f-56372c8f5637" } ```-----
v1.0 Intune Devices Userexperienceanalyticsanomaly Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsanomaly-create.md
Title: "Create userExperienceAnalyticsAnomaly" description: "Create a new userExperienceAnalyticsAnomaly object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [userExperienceAnalyticsAnomaly](../resources/intune-devices-userexperienceanalyticsanomaly.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: 662
"assetPublisher": "Asset Publisher value" } ```-----
v1.0 Intune Devices Userexperienceanalyticsanomaly Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsanomaly-delete.md
Title: "Delete userExperienceAnalyticsAnomaly" description: "Deletes a userExperienceAnalyticsAnomaly."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [userExperienceAnalyticsAnomaly](../resources/intune-devices-userexperienceanalyticsanomaly.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 Devices Userexperienceanalyticsanomaly Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsanomaly-get.md
Title: "Get userExperienceAnalyticsAnomaly" description: "Read properties and relationships of the userExperienceAnalyticsAnomaly object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [userExperienceAnalyticsAnomaly](../resources/intune-devices-userexperienceanalyticsanomaly.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: 711
} } ```-----
v1.0 Intune Devices Userexperienceanalyticsanomaly List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsanomaly-list.md
Title: "List userExperienceAnalyticsAnomalies" description: "List properties and relationships of the userExperienceAnalyticsAnomaly objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [userExperienceAnalyticsAnomaly](../resources/intune-devices-userexperienceanalyticsanomaly.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: 755
] } ```-----
v1.0 Intune Devices Userexperienceanalyticsanomaly Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsanomaly-update.md
Title: "Update userExperienceAnalyticsAnomaly" description: "Update the properties of a userExperienceAnalyticsAnomaly object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [userExperienceAnalyticsAnomaly](../resources/intune-devices-userexperienceanalyticsanomaly.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: 662
"assetPublisher": "Asset Publisher value" } ```-----
v1.0 Intune Devices Userexperienceanalyticsanomalydevice Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsanomalydevice-create.md
Title: "Create userExperienceAnalyticsAnomalyDevice" description: "Create a new userExperienceAnalyticsAnomalyDevice object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [userExperienceAnalyticsAnomalyDevice](../resources/intune-devices-userexperienceanalyticsanomalydevice.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: 560
"anomalyOnDeviceLatestOccurrenceDateTime": "2016-12-31T23:59:20.6899849-08:00" } ```-----
v1.0 Intune Devices Userexperienceanalyticsanomalydevice Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsanomalydevice-delete.md
Title: "Delete userExperienceAnalyticsAnomalyDevice" description: "Deletes a userExperienceAnalyticsAnomalyDevice."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [userExperienceAnalyticsAnomalyDevice](../resources/intune-devices-userexperienceanalyticsanomalydevice.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 Devices Userexperienceanalyticsanomalydevice Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsanomalydevice-get.md
Title: "Get userExperienceAnalyticsAnomalyDevice" description: "Read properties and relationships of the userExperienceAnalyticsAnomalyDevice object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [userExperienceAnalyticsAnomalyDevice](../resources/intune-devices-userexperienceanalyticsanomalydevice.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: 601
} } ```-----
v1.0 Intune Devices Userexperienceanalyticsanomalydevice List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsanomalydevice-list.md
Title: "List userExperienceAnalyticsAnomalyDevices" description: "List properties and relationships of the userExperienceAnalyticsAnomalyDevice objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [userExperienceAnalyticsAnomalyDevice](../resources/intune-devices-userexperienceanalyticsanomalydevice.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: 637
] } ```-----
v1.0 Intune Devices Userexperienceanalyticsanomalydevice Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsanomalydevice-update.md
Title: "Update userExperienceAnalyticsAnomalyDevice" description: "Update the properties of a userExperienceAnalyticsAnomalyDevice object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [userExperienceAnalyticsAnomalyDevice](../resources/intune-devices-userexperienceanalyticsanomalydevice.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: 560
"anomalyOnDeviceLatestOccurrenceDateTime": "2016-12-31T23:59:20.6899849-08:00" } ```-----
v1.0 Intune Devices Userexperienceanalyticsapphealthapplicationperformance Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsapphealthapplicationperformance-create.md
Title: "Create userExperienceAnalyticsAppHealthApplicationPerformance" description: "Create a new userExperienceAnalyticsAppHealthApplicationPerformance object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [userExperienceAnalyticsAppHealthApplicationPerformance](../resources/intune-devices-userexperienceanalyticsapphealthapplicationperformance.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: 522
"meanTimeToFailureInMinutes": 10 } ```-----
v1.0 Intune Devices Userexperienceanalyticsapphealthapplicationperformance Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsapphealthapplicationperformance-delete.md
Title: "Delete userExperienceAnalyticsAppHealthApplicationPerformance" description: "Deletes a userExperienceAnalyticsAppHealthApplicationPerformance."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [userExperienceAnalyticsAppHealthApplicationPerformance](../resources/intune-devices-userexperienceanalyticsapphealthapplicationperformance.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 Devices Userexperienceanalyticsapphealthapplicationperformance Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsapphealthapplicationperformance-get.md
Title: "Get userExperienceAnalyticsAppHealthApplicationPerformance" description: "Read properties and relationships of the userExperienceAnalyticsAppHealthApplicationPerformance object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [userExperienceAnalyticsAppHealthApplicationPerformance](../resources/intune-devices-userexperienceanalyticsapphealthapplicationperformance.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 Devices Userexperienceanalyticsapphealthapplicationperformance List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsapphealthapplicationperformance-list.md
Title: "List userExperienceAnalyticsAppHealthApplicationPerformances" description: "List properties and relationships of the userExperienceAnalyticsAppHealthApplicationPerformance objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [userExperienceAnalyticsAppHealthApplicationPerformance](../resources/intune-devices-userexperienceanalyticsapphealthapplicationperformance.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: 607
] } ```-----
v1.0 Intune Devices Userexperienceanalyticsapphealthapplicationperformance Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsapphealthapplicationperformance-update.md
Title: "Update userExperienceAnalyticsAppHealthApplicationPerformance" description: "Update the properties of a userExperienceAnalyticsAppHealthApplicationPerformance object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [userExperienceAnalyticsAppHealthApplicationPerformance](../resources/intune-devices-userexperienceanalyticsapphealthapplicationperformance.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: 522
"meanTimeToFailureInMinutes": 10 } ```-----
v1.0 Intune Devices Userexperienceanalyticsapphealthappperformancebyappversion Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsapphealthappperformancebyappversion-create.md
Title: "Create userExperienceAnalyticsAppHealthAppPerformanceByAppVersion" description: "Create a new userExperienceAnalyticsAppHealthAppPerformanceByAppVersion object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [userExperienceAnalyticsAppHealthAppPerformanceByAppVersion](../resources/intune-devices-userexperienceanalyticsapphealthappperformancebyappversion.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
"meanTimeToFailureInMinutes": 10 } ```-----
v1.0 Intune Devices Userexperienceanalyticsapphealthappperformancebyappversion Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsapphealthappperformancebyappversion-delete.md
Title: "Delete userExperienceAnalyticsAppHealthAppPerformanceByAppVersion" description: "Deletes a userExperienceAnalyticsAppHealthAppPerformanceByAppVersion."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [userExperienceAnalyticsAppHealthAppPerformanceByAppVersion](../resources/intune-devices-userexperienceanalyticsapphealthappperformancebyappversion.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 Devices Userexperienceanalyticsapphealthappperformancebyappversion Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsapphealthappperformancebyappversion-get.md
Title: "Get userExperienceAnalyticsAppHealthAppPerformanceByAppVersion" description: "Read properties and relationships of the userExperienceAnalyticsAppHealthAppPerformanceByAppVersion object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [userExperienceAnalyticsAppHealthAppPerformanceByAppVersion](../resources/intune-devices-userexperienceanalyticsapphealthappperformancebyappversion.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: 432
} } ```-----
v1.0 Intune Devices Userexperienceanalyticsapphealthappperformancebyappversion List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsapphealthappperformancebyappversion-list.md
Title: "List userExperienceAnalyticsAppHealthAppPerformanceByAppVersions" description: "List properties and relationships of the userExperienceAnalyticsAppHealthAppPerformanceByAppVersion objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [userExperienceAnalyticsAppHealthAppPerformanceByAppVersion](../resources/intune-devices-userexperienceanalyticsapphealthappperformancebyappversion.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 Devices Userexperienceanalyticsapphealthappperformancebyappversion Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsapphealthappperformancebyappversion-update.md
Title: "Update userExperienceAnalyticsAppHealthAppPerformanceByAppVersion" description: "Update the properties of a userExperienceAnalyticsAppHealthAppPerformanceByAppVersion object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [userExperienceAnalyticsAppHealthAppPerformanceByAppVersion](../resources/intune-devices-userexperienceanalyticsapphealthappperformancebyappversion.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
"meanTimeToFailureInMinutes": 10 } ```-----
v1.0 Intune Devices Userexperienceanalyticsapphealthappperformancebyappversiondetails Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsapphealthappperformancebyappversiondetails-create.md
Title: "Create userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails" description: "Create a new userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails](../resources/intune-devices-userexperienceanalyticsapphealthappperformancebyappversiondetails.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
"appCrashCount": 13 } ```-----
v1.0 Intune Devices Userexperienceanalyticsapphealthappperformancebyappversiondetails Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsapphealthappperformancebyappversiondetails-delete.md
Title: "Delete userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails" description: "Deletes a userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails](../resources/intune-devices-userexperienceanalyticsapphealthappperformancebyappversiondetails.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 Devices Userexperienceanalyticsapphealthappperformancebyappversiondetails Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsapphealthappperformancebyappversiondetails-get.md
Title: "Get userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails" description: "Read properties and relationships of the userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails](../resources/intune-devices-userexperienceanalyticsapphealthappperformancebyappversiondetails.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: 472
} } ```-----
v1.0 Intune Devices Userexperienceanalyticsapphealthappperformancebyappversiondetails List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsapphealthappperformancebyappversiondetails-list.md
Title: "List userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetailses" description: "List properties and relationships of the userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails](../resources/intune-devices-userexperienceanalyticsapphealthappperformancebyappversiondetails.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: 506
] } ```-----
v1.0 Intune Devices Userexperienceanalyticsapphealthappperformancebyappversiondetails Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsapphealthappperformancebyappversiondetails-update.md
Title: "Update userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails" description: "Update the properties of a userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails](../resources/intune-devices-userexperienceanalyticsapphealthappperformancebyappversiondetails.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
"appCrashCount": 13 } ```-----
v1.0 Intune Devices Userexperienceanalyticsapphealthappperformancebyappversiondeviceid Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsapphealthappperformancebyappversiondeviceid-create.md
Title: "Create userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId" description: "Create a new userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId](../resources/intune-devices-userexperienceanalyticsapphealthappperformancebyappversiondeviceid.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: 488
"appCrashCount": 13 } ```-----
v1.0 Intune Devices Userexperienceanalyticsapphealthappperformancebyappversiondeviceid Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsapphealthappperformancebyappversiondeviceid-delete.md
Title: "Delete userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId" description: "Deletes a userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId](../resources/intune-devices-userexperienceanalyticsapphealthappperformancebyappversiondeviceid.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 Devices Userexperienceanalyticsapphealthappperformancebyappversiondeviceid Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsapphealthappperformancebyappversiondeviceid-get.md
Title: "Get userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId" description: "Read properties and relationships of the userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId](../resources/intune-devices-userexperienceanalyticsapphealthappperformancebyappversiondeviceid.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: 527
} } ```-----
v1.0 Intune Devices Userexperienceanalyticsapphealthappperformancebyappversiondeviceid List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsapphealthappperformancebyappversiondeviceid-list.md
Title: "List userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceIds" description: "List properties and relationships of the userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId](../resources/intune-devices-userexperienceanalyticsapphealthappperformancebyappversiondeviceid.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: 561
] } ```-----
v1.0 Intune Devices Userexperienceanalyticsapphealthappperformancebyappversiondeviceid Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsapphealthappperformancebyappversiondeviceid-update.md
Title: "Update userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId" description: "Update the properties of a userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId](../resources/intune-devices-userexperienceanalyticsapphealthappperformancebyappversiondeviceid.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: 488
"appCrashCount": 13 } ```-----
v1.0 Intune Devices Userexperienceanalyticsapphealthappperformancebyosversion Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsapphealthappperformancebyosversion-create.md
Title: "Create userExperienceAnalyticsAppHealthAppPerformanceByOSVersion" description: "Create a new userExperienceAnalyticsAppHealthAppPerformanceByOSVersion object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [userExperienceAnalyticsAppHealthAppPerformanceByOSVersion](../resources/intune-devices-userexperienceanalyticsapphealthappperformancebyosversion.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: 464
"meanTimeToFailureInMinutes": 10 } ```-----
v1.0 Intune Devices Userexperienceanalyticsapphealthappperformancebyosversion Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsapphealthappperformancebyosversion-delete.md
Title: "Delete userExperienceAnalyticsAppHealthAppPerformanceByOSVersion" description: "Deletes a userExperienceAnalyticsAppHealthAppPerformanceByOSVersion."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [userExperienceAnalyticsAppHealthAppPerformanceByOSVersion](../resources/intune-devices-userexperienceanalyticsapphealthappperformancebyosversion.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 Devices Userexperienceanalyticsapphealthappperformancebyosversion Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsapphealthappperformancebyosversion-get.md
Title: "Get userExperienceAnalyticsAppHealthAppPerformanceByOSVersion" description: "Read properties and relationships of the userExperienceAnalyticsAppHealthAppPerformanceByOSVersion object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [userExperienceAnalyticsAppHealthAppPerformanceByOSVersion](../resources/intune-devices-userexperienceanalyticsapphealthappperformancebyosversion.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: 505
} } ```-----
v1.0 Intune Devices Userexperienceanalyticsapphealthappperformancebyosversion List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsapphealthappperformancebyosversion-list.md
Title: "List userExperienceAnalyticsAppHealthAppPerformanceByOSVersions" description: "List properties and relationships of the userExperienceAnalyticsAppHealthAppPerformanceByOSVersion objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [userExperienceAnalyticsAppHealthAppPerformanceByOSVersion](../resources/intune-devices-userexperienceanalyticsapphealthappperformancebyosversion.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: 541
] } ```-----
v1.0 Intune Devices Userexperienceanalyticsapphealthappperformancebyosversion Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsapphealthappperformancebyosversion-update.md
Title: "Update userExperienceAnalyticsAppHealthAppPerformanceByOSVersion" description: "Update the properties of a userExperienceAnalyticsAppHealthAppPerformanceByOSVersion object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [userExperienceAnalyticsAppHealthAppPerformanceByOSVersion](../resources/intune-devices-userexperienceanalyticsapphealthappperformancebyosversion.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: 464
"meanTimeToFailureInMinutes": 10 } ```-----
v1.0 Intune Devices Userexperienceanalyticsapphealthdevicemodelperformance Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsapphealthdevicemodelperformance-create.md
Title: "Create userExperienceAnalyticsAppHealthDeviceModelPerformance" description: "Create a new userExperienceAnalyticsAppHealthDeviceModelPerformance object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [userExperienceAnalyticsAppHealthDeviceModelPerformance](../resources/intune-devices-userexperienceanalyticsapphealthdevicemodelperformance.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: 447
"healthStatus": "insufficientData" } ```-----
v1.0 Intune Devices Userexperienceanalyticsapphealthdevicemodelperformance Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsapphealthdevicemodelperformance-delete.md
Title: "Delete userExperienceAnalyticsAppHealthDeviceModelPerformance" description: "Deletes a userExperienceAnalyticsAppHealthDeviceModelPerformance."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [userExperienceAnalyticsAppHealthDeviceModelPerformance](../resources/intune-devices-userexperienceanalyticsapphealthdevicemodelperformance.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 Devices Userexperienceanalyticsapphealthdevicemodelperformance Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsapphealthdevicemodelperformance-get.md
Title: "Get userExperienceAnalyticsAppHealthDeviceModelPerformance" description: "Read properties and relationships of the userExperienceAnalyticsAppHealthDeviceModelPerformance object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [userExperienceAnalyticsAppHealthDeviceModelPerformance](../resources/intune-devices-userexperienceanalyticsapphealthdevicemodelperformance.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: 484
} } ```-----
v1.0 Intune Devices Userexperienceanalyticsapphealthdevicemodelperformance List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsapphealthdevicemodelperformance-list.md
Title: "List userExperienceAnalyticsAppHealthDeviceModelPerformances" description: "List properties and relationships of the userExperienceAnalyticsAppHealthDeviceModelPerformance objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [userExperienceAnalyticsAppHealthDeviceModelPerformance](../resources/intune-devices-userexperienceanalyticsapphealthdevicemodelperformance.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: 516
] } ```-----
v1.0 Intune Devices Userexperienceanalyticsapphealthdevicemodelperformance Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsapphealthdevicemodelperformance-update.md
Title: "Update userExperienceAnalyticsAppHealthDeviceModelPerformance" description: "Update the properties of a userExperienceAnalyticsAppHealthDeviceModelPerformance object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [userExperienceAnalyticsAppHealthDeviceModelPerformance](../resources/intune-devices-userexperienceanalyticsapphealthdevicemodelperformance.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: 447
"healthStatus": "insufficientData" } ```-----
v1.0 Intune Devices Userexperienceanalyticsapphealthdeviceperformance Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsapphealthdeviceperformance-create.md
Title: "Create userExperienceAnalyticsAppHealthDevicePerformance" description: "Create a new userExperienceAnalyticsAppHealthDevicePerformance object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [userExperienceAnalyticsAppHealthDevicePerformance](../resources/intune-devices-userexperienceanalyticsapphealthdeviceperformance.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: 639
"deviceDisplayName": "Device Display Name value" } ```-----
v1.0 Intune Devices Userexperienceanalyticsapphealthdeviceperformance Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsapphealthdeviceperformance-delete.md
Title: "Delete userExperienceAnalyticsAppHealthDevicePerformance" description: "Deletes a userExperienceAnalyticsAppHealthDevicePerformance."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [userExperienceAnalyticsAppHealthDevicePerformance](../resources/intune-devices-userexperienceanalyticsapphealthdeviceperformance.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 Devices Userexperienceanalyticsapphealthdeviceperformance Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsapphealthdeviceperformance-get.md
Title: "Get userExperienceAnalyticsAppHealthDevicePerformance" description: "Read properties and relationships of the userExperienceAnalyticsAppHealthDevicePerformance object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [userExperienceAnalyticsAppHealthDevicePerformance](../resources/intune-devices-userexperienceanalyticsapphealthdeviceperformance.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: 686
} } ```-----
v1.0 Intune Devices Userexperienceanalyticsapphealthdeviceperformance List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsapphealthdeviceperformance-list.md
Title: "List userExperienceAnalyticsAppHealthDevicePerformances" description: "List properties and relationships of the userExperienceAnalyticsAppHealthDevicePerformance objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [userExperienceAnalyticsAppHealthDevicePerformance](../resources/intune-devices-userexperienceanalyticsapphealthdeviceperformance.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: 728
] } ```-----
v1.0 Intune Devices Userexperienceanalyticsapphealthdeviceperformance Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsapphealthdeviceperformance-update.md
Title: "Update userExperienceAnalyticsAppHealthDevicePerformance" description: "Update the properties of a userExperienceAnalyticsAppHealthDevicePerformance object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [userExperienceAnalyticsAppHealthDevicePerformance](../resources/intune-devices-userexperienceanalyticsapphealthdeviceperformance.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: 639
"deviceDisplayName": "Device Display Name value" } ```-----
v1.0 Intune Devices Userexperienceanalyticsapphealthdeviceperformancedetails Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsapphealthdeviceperformancedetails-create.md
Title: "Create userExperienceAnalyticsAppHealthDevicePerformanceDetails" description: "Create a new userExperienceAnalyticsAppHealthDevicePerformanceDetails object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [userExperienceAnalyticsAppHealthDevicePerformanceDetails](../resources/intune-devices-userexperienceanalyticsapphealthdeviceperformancedetails.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: 454
"deviceDisplayName": "Device Display Name value" } ```-----
v1.0 Intune Devices Userexperienceanalyticsapphealthdeviceperformancedetails Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsapphealthdeviceperformancedetails-delete.md
Title: "Delete userExperienceAnalyticsAppHealthDevicePerformanceDetails" description: "Deletes a userExperienceAnalyticsAppHealthDevicePerformanceDetails."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [userExperienceAnalyticsAppHealthDevicePerformanceDetails](../resources/intune-devices-userexperienceanalyticsapphealthdeviceperformancedetails.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 Devices Userexperienceanalyticsapphealthdeviceperformancedetails Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsapphealthdeviceperformancedetails-get.md
Title: "Get userExperienceAnalyticsAppHealthDevicePerformanceDetails" description: "Read properties and relationships of the userExperienceAnalyticsAppHealthDevicePerformanceDetails object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [userExperienceAnalyticsAppHealthDevicePerformanceDetails](../resources/intune-devices-userexperienceanalyticsapphealthdeviceperformancedetails.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: 491
} } ```-----
v1.0 Intune Devices Userexperienceanalyticsapphealthdeviceperformancedetails List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsapphealthdeviceperformancedetails-list.md
Title: "List userExperienceAnalyticsAppHealthDevicePerformanceDetailses" description: "List properties and relationships of the userExperienceAnalyticsAppHealthDevicePerformanceDetails objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [userExperienceAnalyticsAppHealthDevicePerformanceDetails](../resources/intune-devices-userexperienceanalyticsapphealthdeviceperformancedetails.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: 523
] } ```-----
v1.0 Intune Devices Userexperienceanalyticsapphealthdeviceperformancedetails Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsapphealthdeviceperformancedetails-update.md
Title: "Update userExperienceAnalyticsAppHealthDevicePerformanceDetails" description: "Update the properties of a userExperienceAnalyticsAppHealthDevicePerformanceDetails object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [userExperienceAnalyticsAppHealthDevicePerformanceDetails](../resources/intune-devices-userexperienceanalyticsapphealthdeviceperformancedetails.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: 454
"deviceDisplayName": "Device Display Name value" } ```-----
v1.0 Intune Devices Userexperienceanalyticsapphealthosversionperformance Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsapphealthosversionperformance-create.md
Title: "Create userExperienceAnalyticsAppHealthOSVersionPerformance" description: "Create a new userExperienceAnalyticsAppHealthOSVersionPerformance object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [userExperienceAnalyticsAppHealthOSVersionPerformance](../resources/intune-devices-userexperienceanalyticsapphealthosversionperformance.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: 406
"osVersionAppHealthStatus": "Os Version App Health Status value" } ```-----
v1.0 Intune Devices Userexperienceanalyticsapphealthosversionperformance Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsapphealthosversionperformance-delete.md
Title: "Delete userExperienceAnalyticsAppHealthOSVersionPerformance" description: "Deletes a userExperienceAnalyticsAppHealthOSVersionPerformance."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [userExperienceAnalyticsAppHealthOSVersionPerformance](../resources/intune-devices-userexperienceanalyticsapphealthosversionperformance.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 Devices Userexperienceanalyticsapphealthosversionperformance Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsapphealthosversionperformance-get.md
Title: "Get userExperienceAnalyticsAppHealthOSVersionPerformance" description: "Read properties and relationships of the userExperienceAnalyticsAppHealthOSVersionPerformance object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [userExperienceAnalyticsAppHealthOSVersionPerformance](../resources/intune-devices-userexperienceanalyticsapphealthosversionperformance.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: 441
} } ```-----
v1.0 Intune Devices Userexperienceanalyticsapphealthosversionperformance List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsapphealthosversionperformance-list.md
Title: "List userExperienceAnalyticsAppHealthOSVersionPerformances" description: "List properties and relationships of the userExperienceAnalyticsAppHealthOSVersionPerformance objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [userExperienceAnalyticsAppHealthOSVersionPerformance](../resources/intune-devices-userexperienceanalyticsapphealthosversionperformance.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: 471
] } ```-----
v1.0 Intune Devices Userexperienceanalyticsapphealthosversionperformance Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsapphealthosversionperformance-update.md
Title: "Update userExperienceAnalyticsAppHealthOSVersionPerformance" description: "Update the properties of a userExperienceAnalyticsAppHealthOSVersionPerformance object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [userExperienceAnalyticsAppHealthOSVersionPerformance](../resources/intune-devices-userexperienceanalyticsapphealthosversionperformance.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: 406
"osVersionAppHealthStatus": "Os Version App Health Status value" } ```-----
v1.0 Intune Devices Userexperienceanalyticsbaseline Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsbaseline-create.md
Title: "Create userExperienceAnalyticsBaseline" description: "Create a new userExperienceAnalyticsBaseline object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [userExperienceAnalyticsBaseline](../resources/intune-devices-userexperienceanalyticsbaseline.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: 266
"createdDateTime": "2017-01-01T00:02:43.5775965-08:00" } ```-----
v1.0 Intune Devices Userexperienceanalyticsbaseline Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsbaseline-delete.md
Title: "Delete userExperienceAnalyticsBaseline" description: "Deletes a userExperienceAnalyticsBaseline."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [userExperienceAnalyticsBaseline](../resources/intune-devices-userexperienceanalyticsbaseline.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 Devices Userexperienceanalyticsbaseline Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsbaseline-get.md
Title: "Get userExperienceAnalyticsBaseline" description: "Read properties and relationships of the userExperienceAnalyticsBaseline object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [userExperienceAnalyticsBaseline](../resources/intune-devices-userexperienceanalyticsbaseline.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: 297
} } ```-----
v1.0 Intune Devices Userexperienceanalyticsbaseline List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsbaseline-list.md
Title: "List userExperienceAnalyticsBaselines" description: "List properties and relationships of the userExperienceAnalyticsBaseline objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [userExperienceAnalyticsBaseline](../resources/intune-devices-userexperienceanalyticsbaseline.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: 323
] } ```-----
v1.0 Intune Devices Userexperienceanalyticsbaseline Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsbaseline-update.md
Title: "Update userExperienceAnalyticsBaseline" description: "Update the properties of a userExperienceAnalyticsBaseline object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [userExperienceAnalyticsBaseline](../resources/intune-devices-userexperienceanalyticsbaseline.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: 266
"createdDateTime": "2017-01-01T00:02:43.5775965-08:00" } ```-----
v1.0 Intune Devices Userexperienceanalyticsbatteryhealthappimpact Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsbatteryhealthappimpact-create.md
Title: "Create userExperienceAnalyticsBatteryHealthAppImpact" description: "Create a new userExperienceAnalyticsBatteryHealthAppImpact object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [userExperienceAnalyticsBatteryHealthAppImpact](../resources/intune-devices-userexperienceanalyticsbatteryhealthappimpact.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: 357
"batteryUsagePercentage": 7.333333333333333 } ```-----
v1.0 Intune Devices Userexperienceanalyticsbatteryhealthappimpact Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsbatteryhealthappimpact-delete.md
Title: "Delete userExperienceAnalyticsBatteryHealthAppImpact" description: "Deletes a userExperienceAnalyticsBatteryHealthAppImpact."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [userExperienceAnalyticsBatteryHealthAppImpact](../resources/intune-devices-userexperienceanalyticsbatteryhealthappimpact.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 Devices Userexperienceanalyticsbatteryhealthappimpact Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsbatteryhealthappimpact-get.md
Title: "Get userExperienceAnalyticsBatteryHealthAppImpact" description: "Read properties and relationships of the userExperienceAnalyticsBatteryHealthAppImpact object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [userExperienceAnalyticsBatteryHealthAppImpact](../resources/intune-devices-userexperienceanalyticsbatteryhealthappimpact.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: 392
} } ```-----
v1.0 Intune Devices Userexperienceanalyticsbatteryhealthappimpact List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsbatteryhealthappimpact-list.md
Title: "List userExperienceAnalyticsBatteryHealthAppImpacts" description: "List properties and relationships of the userExperienceAnalyticsBatteryHealthAppImpact objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [userExperienceAnalyticsBatteryHealthAppImpact](../resources/intune-devices-userexperienceanalyticsbatteryhealthappimpact.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: 422
] } ```-----
v1.0 Intune Devices Userexperienceanalyticsbatteryhealthappimpact Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsbatteryhealthappimpact-update.md
Title: "Update userExperienceAnalyticsBatteryHealthAppImpact" description: "Update the properties of a userExperienceAnalyticsBatteryHealthAppImpact object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [userExperienceAnalyticsBatteryHealthAppImpact](../resources/intune-devices-userexperienceanalyticsbatteryhealthappimpact.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: 357
"batteryUsagePercentage": 7.333333333333333 } ```-----
v1.0 Intune Devices Userexperienceanalyticsbatteryhealthcapacitydetails Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsbatteryhealthcapacitydetails-get.md
Title: "Get userExperienceAnalyticsBatteryHealthCapacityDetails" description: "Read properties and relationships of the userExperienceAnalyticsBatteryHealthCapacityDetails object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [userExperienceAnalyticsBatteryHealthCapacityDetails](../resources/intune-devices-userexperienceanalyticsbatteryhealthcapacitydetails.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
} } ```-----
v1.0 Intune Devices Userexperienceanalyticsbatteryhealthcapacitydetails Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsbatteryhealthcapacitydetails-update.md
Title: "Update userExperienceAnalyticsBatteryHealthCapacityDetails" description: "Update the properties of a userExperienceAnalyticsBatteryHealthCapacityDetails object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [userExperienceAnalyticsBatteryHealthCapacityDetails](../resources/intune-devices-userexperienceanalyticsbatteryhealthcapacitydetails.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
"lastRefreshedDateTime": "2017-01-01T00:02:37.7100903-08:00" } ```-----
v1.0 Intune Devices Userexperienceanalyticsbatteryhealthdeviceappimpact Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsbatteryhealthdeviceappimpact-create.md
Title: "Create userExperienceAnalyticsBatteryHealthDeviceAppImpact" description: "Create a new userExperienceAnalyticsBatteryHealthDeviceAppImpact object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [userExperienceAnalyticsBatteryHealthDeviceAppImpact](../resources/intune-devices-userexperienceanalyticsbatteryhealthdeviceappimpact.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: 373
"batteryUsagePercentage": 7.333333333333333 } ```-----
v1.0 Intune Devices Userexperienceanalyticsbatteryhealthdeviceappimpact Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsbatteryhealthdeviceappimpact-delete.md
Title: "Delete userExperienceAnalyticsBatteryHealthDeviceAppImpact" description: "Deletes a userExperienceAnalyticsBatteryHealthDeviceAppImpact."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [userExperienceAnalyticsBatteryHealthDeviceAppImpact](../resources/intune-devices-userexperienceanalyticsbatteryhealthdeviceappimpact.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 Devices Userexperienceanalyticsbatteryhealthdeviceappimpact Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsbatteryhealthdeviceappimpact-get.md
Title: "Get userExperienceAnalyticsBatteryHealthDeviceAppImpact" description: "Read properties and relationships of the userExperienceAnalyticsBatteryHealthDeviceAppImpact object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [userExperienceAnalyticsBatteryHealthDeviceAppImpact](../resources/intune-devices-userexperienceanalyticsbatteryhealthdeviceappimpact.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: 408
} } ```-----
v1.0 Intune Devices Userexperienceanalyticsbatteryhealthdeviceappimpact List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsbatteryhealthdeviceappimpact-list.md
Title: "List userExperienceAnalyticsBatteryHealthDeviceAppImpacts" description: "List properties and relationships of the userExperienceAnalyticsBatteryHealthDeviceAppImpact objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [userExperienceAnalyticsBatteryHealthDeviceAppImpact](../resources/intune-devices-userexperienceanalyticsbatteryhealthdeviceappimpact.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: 438
] } ```-----
v1.0 Intune Devices Userexperienceanalyticsbatteryhealthdeviceappimpact Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsbatteryhealthdeviceappimpact-update.md
Title: "Update userExperienceAnalyticsBatteryHealthDeviceAppImpact" description: "Update the properties of a userExperienceAnalyticsBatteryHealthDeviceAppImpact object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [userExperienceAnalyticsBatteryHealthDeviceAppImpact](../resources/intune-devices-userexperienceanalyticsbatteryhealthdeviceappimpact.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: 373
"batteryUsagePercentage": 7.333333333333333 } ```-----
v1.0 Intune Devices Userexperienceanalyticsbatteryhealthdeviceperformance Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsbatteryhealthdeviceperformance-create.md
Title: "Create userExperienceAnalyticsBatteryHealthDevicePerformance" description: "Create a new userExperienceAnalyticsBatteryHealthDevicePerformance object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [userExperienceAnalyticsBatteryHealthDevicePerformance](../resources/intune-devices-userexperienceanalyticsbatteryhealthdeviceperformance.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: 449
"healthStatus": "insufficientData" } ```-----
v1.0 Intune Devices Userexperienceanalyticsbatteryhealthdeviceperformance Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsbatteryhealthdeviceperformance-delete.md
Title: "Delete userExperienceAnalyticsBatteryHealthDevicePerformance" description: "Deletes a userExperienceAnalyticsBatteryHealthDevicePerformance."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [userExperienceAnalyticsBatteryHealthDevicePerformance](../resources/intune-devices-userexperienceanalyticsbatteryhealthdeviceperformance.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 Devices Userexperienceanalyticsbatteryhealthdeviceperformance Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsbatteryhealthdeviceperformance-get.md
Title: "Get userExperienceAnalyticsBatteryHealthDevicePerformance" description: "Read properties and relationships of the userExperienceAnalyticsBatteryHealthDevicePerformance object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [userExperienceAnalyticsBatteryHealthDevicePerformance](../resources/intune-devices-userexperienceanalyticsbatteryhealthdeviceperformance.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: 490
} } ```-----
v1.0 Intune Devices Userexperienceanalyticsbatteryhealthdeviceperformance List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsbatteryhealthdeviceperformance-list.md
Title: "List userExperienceAnalyticsBatteryHealthDevicePerformances" description: "List properties and relationships of the userExperienceAnalyticsBatteryHealthDevicePerformance objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [userExperienceAnalyticsBatteryHealthDevicePerformance](../resources/intune-devices-userexperienceanalyticsbatteryhealthdeviceperformance.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: 526
] } ```-----
v1.0 Intune Devices Userexperienceanalyticsbatteryhealthdeviceperformance Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsbatteryhealthdeviceperformance-update.md
Title: "Update userExperienceAnalyticsBatteryHealthDevicePerformance" description: "Update the properties of a userExperienceAnalyticsBatteryHealthDevicePerformance object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [userExperienceAnalyticsBatteryHealthDevicePerformance](../resources/intune-devices-userexperienceanalyticsbatteryhealthdeviceperformance.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: 449
"healthStatus": "insufficientData" } ```-----
v1.0 Intune Devices Userexperienceanalyticsbatteryhealthdeviceruntimehistory Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsbatteryhealthdeviceruntimehistory-create.md
Title: "Create userExperienceAnalyticsBatteryHealthDeviceRuntimeHistory" description: "Create a new userExperienceAnalyticsBatteryHealthDeviceRuntimeHistory object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [userExperienceAnalyticsBatteryHealthDeviceRuntimeHistory](../resources/intune-devices-userexperienceanalyticsbatteryhealthdeviceruntimehistory.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: 265
"estimatedRuntimeInMinutes": 9 } ```-----
v1.0 Intune Devices Userexperienceanalyticsbatteryhealthdeviceruntimehistory Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsbatteryhealthdeviceruntimehistory-delete.md
Title: "Delete userExperienceAnalyticsBatteryHealthDeviceRuntimeHistory" description: "Deletes a userExperienceAnalyticsBatteryHealthDeviceRuntimeHistory."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [userExperienceAnalyticsBatteryHealthDeviceRuntimeHistory](../resources/intune-devices-userexperienceanalyticsbatteryhealthdeviceruntimehistory.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 Devices Userexperienceanalyticsbatteryhealthdeviceruntimehistory Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsbatteryhealthdeviceruntimehistory-get.md
Title: "Get userExperienceAnalyticsBatteryHealthDeviceRuntimeHistory" description: "Read properties and relationships of the userExperienceAnalyticsBatteryHealthDeviceRuntimeHistory object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [userExperienceAnalyticsBatteryHealthDeviceRuntimeHistory](../resources/intune-devices-userexperienceanalyticsbatteryhealthdeviceruntimehistory.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: 294
} } ```-----
v1.0 Intune Devices Userexperienceanalyticsbatteryhealthdeviceruntimehistory List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsbatteryhealthdeviceruntimehistory-list.md
Title: "List userExperienceAnalyticsBatteryHealthDeviceRuntimeHistories" description: "List properties and relationships of the userExperienceAnalyticsBatteryHealthDeviceRuntimeHistory objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [userExperienceAnalyticsBatteryHealthDeviceRuntimeHistory](../resources/intune-devices-userexperienceanalyticsbatteryhealthdeviceruntimehistory.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: 318
] } ```-----
v1.0 Intune Devices Userexperienceanalyticsbatteryhealthdeviceruntimehistory Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsbatteryhealthdeviceruntimehistory-update.md
Title: "Update userExperienceAnalyticsBatteryHealthDeviceRuntimeHistory" description: "Update the properties of a userExperienceAnalyticsBatteryHealthDeviceRuntimeHistory object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [userExperienceAnalyticsBatteryHealthDeviceRuntimeHistory](../resources/intune-devices-userexperienceanalyticsbatteryhealthdeviceruntimehistory.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: 265
"estimatedRuntimeInMinutes": 9 } ```-----
v1.0 Intune Devices Userexperienceanalyticsbatteryhealthmodelperformance Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsbatteryhealthmodelperformance-create.md
Title: "Create userExperienceAnalyticsBatteryHealthModelPerformance" description: "Create a new userExperienceAnalyticsBatteryHealthModelPerformance object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [userExperienceAnalyticsBatteryHealthModelPerformance](../resources/intune-devices-userexperienceanalyticsbatteryhealthmodelperformance.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
"modelBatteryHealthScore": 7 } ```-----
v1.0 Intune Devices Userexperienceanalyticsbatteryhealthmodelperformance Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsbatteryhealthmodelperformance-delete.md
Title: "Delete userExperienceAnalyticsBatteryHealthModelPerformance" description: "Deletes a userExperienceAnalyticsBatteryHealthModelPerformance."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [userExperienceAnalyticsBatteryHealthModelPerformance](../resources/intune-devices-userexperienceanalyticsbatteryhealthmodelperformance.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 Devices Userexperienceanalyticsbatteryhealthmodelperformance Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsbatteryhealthmodelperformance-get.md
Title: "Get userExperienceAnalyticsBatteryHealthModelPerformance" description: "Read properties and relationships of the userExperienceAnalyticsBatteryHealthModelPerformance object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [userExperienceAnalyticsBatteryHealthModelPerformance](../resources/intune-devices-userexperienceanalyticsbatteryhealthmodelperformance.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: 419
} } ```-----
v1.0 Intune Devices Userexperienceanalyticsbatteryhealthmodelperformance List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsbatteryhealthmodelperformance-list.md
Title: "List userExperienceAnalyticsBatteryHealthModelPerformances" description: "List properties and relationships of the userExperienceAnalyticsBatteryHealthModelPerformance objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [userExperienceAnalyticsBatteryHealthModelPerformance](../resources/intune-devices-userexperienceanalyticsbatteryhealthmodelperformance.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: 451
] } ```-----
v1.0 Intune Devices Userexperienceanalyticsbatteryhealthmodelperformance Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsbatteryhealthmodelperformance-update.md
Title: "Update userExperienceAnalyticsBatteryHealthModelPerformance" description: "Update the properties of a userExperienceAnalyticsBatteryHealthModelPerformance object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [userExperienceAnalyticsBatteryHealthModelPerformance](../resources/intune-devices-userexperienceanalyticsbatteryhealthmodelperformance.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
"modelBatteryHealthScore": 7 } ```-----
v1.0 Intune Devices Userexperienceanalyticsbatteryhealthosperformance Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsbatteryhealthosperformance-create.md
Title: "Create userExperienceAnalyticsBatteryHealthOsPerformance" description: "Create a new userExperienceAnalyticsBatteryHealthOsPerformance object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [userExperienceAnalyticsBatteryHealthOsPerformance](../resources/intune-devices-userexperienceanalyticsbatteryhealthosperformance.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: 359
"averageBatteryAgeInDays": 7 } ```-----
v1.0 Intune Devices Userexperienceanalyticsbatteryhealthosperformance Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsbatteryhealthosperformance-delete.md
Title: "Delete userExperienceAnalyticsBatteryHealthOsPerformance" description: "Deletes a userExperienceAnalyticsBatteryHealthOsPerformance."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [userExperienceAnalyticsBatteryHealthOsPerformance](../resources/intune-devices-userexperienceanalyticsbatteryhealthosperformance.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 Devices Userexperienceanalyticsbatteryhealthosperformance Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsbatteryhealthosperformance-get.md
Title: "Get userExperienceAnalyticsBatteryHealthOsPerformance" description: "Read properties and relationships of the userExperienceAnalyticsBatteryHealthOsPerformance object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [userExperienceAnalyticsBatteryHealthOsPerformance](../resources/intune-devices-userexperienceanalyticsbatteryhealthosperformance.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: 394
} } ```-----
v1.0 Intune Devices Userexperienceanalyticsbatteryhealthosperformance List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsbatteryhealthosperformance-list.md
Title: "List userExperienceAnalyticsBatteryHealthOsPerformances" description: "List properties and relationships of the userExperienceAnalyticsBatteryHealthOsPerformance objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [userExperienceAnalyticsBatteryHealthOsPerformance](../resources/intune-devices-userexperienceanalyticsbatteryhealthosperformance.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: 424
] } ```-----
v1.0 Intune Devices Userexperienceanalyticsbatteryhealthosperformance Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsbatteryhealthosperformance-update.md
Title: "Update userExperienceAnalyticsBatteryHealthOsPerformance" description: "Update the properties of a userExperienceAnalyticsBatteryHealthOsPerformance object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [userExperienceAnalyticsBatteryHealthOsPerformance](../resources/intune-devices-userexperienceanalyticsbatteryhealthosperformance.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: 359
"averageBatteryAgeInDays": 7 } ```-----
v1.0 Intune Devices Userexperienceanalyticsbatteryhealthruntimedetails Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsbatteryhealthruntimedetails-get.md
Title: "Get userExperienceAnalyticsBatteryHealthRuntimeDetails" description: "Read properties and relationships of the userExperienceAnalyticsBatteryHealthRuntimeDetails object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [userExperienceAnalyticsBatteryHealthRuntimeDetails](../resources/intune-devices-userexperienceanalyticsbatteryhealthruntimedetails.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: 347
} } ```-----
v1.0 Intune Devices Userexperienceanalyticsbatteryhealthruntimedetails Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsbatteryhealthruntimedetails-update.md
Title: "Update userExperienceAnalyticsBatteryHealthRuntimeDetails" description: "Update the properties of a userExperienceAnalyticsBatteryHealthRuntimeDetails object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [userExperienceAnalyticsBatteryHealthRuntimeDetails](../resources/intune-devices-userexperienceanalyticsbatteryhealthruntimedetails.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
"lastRefreshedDateTime": "2017-01-01T00:02:37.7100903-08:00" } ```-----
v1.0 Intune Devices Userexperienceanalyticscategory Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticscategory-get.md
Title: "Get userExperienceAnalyticsCategory" description: "Read properties and relationships of the userExperienceAnalyticsCategory object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [userExperienceAnalyticsCategory](../resources/intune-devices-userexperienceanalyticscategory.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: 682
} } ```-----
v1.0 Intune Devices Userexperienceanalyticscategory Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticscategory-update.md
Title: "Update userExperienceAnalyticsCategory" description: "Update the properties of a userExperienceAnalyticsCategory object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [userExperienceAnalyticsCategory](../resources/intune-devices-userexperienceanalyticscategory.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: 625
"state": "insufficientData" } ```-----
v1.0 Intune Devices Userexperienceanalyticsdeviceperformance Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsdeviceperformance-create.md
Title: "Create userExperienceAnalyticsDevicePerformance" description: "Create a new userExperienceAnalyticsDevicePerformance object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [userExperienceAnalyticsDevicePerformance](../resources/intune-devices-userexperienceanalyticsdeviceperformance.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: 788
"modelStartupPerformanceScore": 9.3333333333333339 } ```-----
v1.0 Intune Devices Userexperienceanalyticsdeviceperformance Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsdeviceperformance-delete.md
Title: "Delete userExperienceAnalyticsDevicePerformance" description: "Deletes a userExperienceAnalyticsDevicePerformance."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [userExperienceAnalyticsDevicePerformance](../resources/intune-devices-userexperienceanalyticsdeviceperformance.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 Devices Userexperienceanalyticsdeviceperformance Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsdeviceperformance-get.md
Title: "Get userExperienceAnalyticsDevicePerformance" description: "Read properties and relationships of the userExperienceAnalyticsDevicePerformance object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [userExperienceAnalyticsDevicePerformance](../resources/intune-devices-userexperienceanalyticsdeviceperformance.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: 851
} } ```-----
v1.0 Intune Devices Userexperienceanalyticsdeviceperformance List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsdeviceperformance-list.md
Title: "List userExperienceAnalyticsDevicePerformances" description: "List properties and relationships of the userExperienceAnalyticsDevicePerformance objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [userExperienceAnalyticsDevicePerformance](../resources/intune-devices-userexperienceanalyticsdeviceperformance.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: 909
] } ```-----
v1.0 Intune Devices Userexperienceanalyticsdeviceperformance Summarizedeviceperformancedevices https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsdeviceperformance-summarizedeviceperformancedevices.md
Title: "summarizeDevicePerformanceDevices 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: 909
] } ```-----
v1.0 Intune Devices Userexperienceanalyticsdeviceperformance Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsdeviceperformance-update.md
Title: "Update userExperienceAnalyticsDevicePerformance" description: "Update the properties of a userExperienceAnalyticsDevicePerformance object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [userExperienceAnalyticsDevicePerformance](../resources/intune-devices-userexperienceanalyticsdeviceperformance.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: 788
"modelStartupPerformanceScore": 9.3333333333333339 } ```-----
v1.0 Intune Devices Userexperienceanalyticsdevicescope Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsdevicescope-create.md
Title: "Create userExperienceAnalyticsDeviceScope" description: "Create a new userExperienceAnalyticsDeviceScope object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [userExperienceAnalyticsDeviceScope](../resources/intune-devices-userexperienceanalyticsdevicescope.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: 522
"lastModifiedDateTime": "2017-01-01T00:00:35.1329464-08:00" } ```-----
v1.0 Intune Devices Userexperienceanalyticsdevicescope Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsdevicescope-delete.md
Title: "Delete userExperienceAnalyticsDeviceScope" description: "Deletes a userExperienceAnalyticsDeviceScope."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [userExperienceAnalyticsDeviceScope](../resources/intune-devices-userexperienceanalyticsdevicescope.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 Devices Userexperienceanalyticsdevicescope Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsdevicescope-get.md
Title: "Get userExperienceAnalyticsDeviceScope" description: "Read properties and relationships of the userExperienceAnalyticsDeviceScope object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [userExperienceAnalyticsDeviceScope](../resources/intune-devices-userexperienceanalyticsdevicescope.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 Devices Userexperienceanalyticsdevicescope List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsdevicescope-list.md
Title: "List userExperienceAnalyticsDeviceScopes" description: "List properties and relationships of the userExperienceAnalyticsDeviceScope objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [userExperienceAnalyticsDeviceScope](../resources/intune-devices-userexperienceanalyticsdevicescope.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: 607
] } ```-----
v1.0 Intune Devices Userexperienceanalyticsdevicescope Triggerdevicescopeaction https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsdevicescope-triggerdevicescopeaction.md
Title: "triggerDeviceScopeAction 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: 236
} } ```-----
v1.0 Intune Devices Userexperienceanalyticsdevicescope Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsdevicescope-update.md
Title: "Update userExperienceAnalyticsDeviceScope" description: "Update the properties of a userExperienceAnalyticsDeviceScope object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [userExperienceAnalyticsDeviceScope](../resources/intune-devices-userexperienceanalyticsdevicescope.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: 522
"lastModifiedDateTime": "2017-01-01T00:00:35.1329464-08:00" } ```-----
v1.0 Intune Devices Userexperienceanalyticsdevicescores Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsdevicescores-create.md
Title: "Create userExperienceAnalyticsDeviceScores" description: "Create a new userExperienceAnalyticsDeviceScores object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [userExperienceAnalyticsDeviceScores](../resources/intune-devices-userexperienceanalyticsdevicescores.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: 476
"healthStatus": "insufficientData" } ```-----
v1.0 Intune Devices Userexperienceanalyticsdevicescores Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsdevicescores-delete.md
Title: "Delete userExperienceAnalyticsDeviceScores" description: "Deletes a userExperienceAnalyticsDeviceScores."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [userExperienceAnalyticsDeviceScores](../resources/intune-devices-userexperienceanalyticsdevicescores.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 Devices Userexperienceanalyticsdevicescores Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsdevicescores-get.md
Title: "Get userExperienceAnalyticsDeviceScores" description: "Read properties and relationships of the userExperienceAnalyticsDeviceScores object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [userExperienceAnalyticsDeviceScores](../resources/intune-devices-userexperienceanalyticsdevicescores.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: 517
} } ```-----
v1.0 Intune Devices Userexperienceanalyticsdevicescores List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsdevicescores-list.md
Title: "List userExperienceAnalyticsDeviceScoreses" description: "List properties and relationships of the userExperienceAnalyticsDeviceScores objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [userExperienceAnalyticsDeviceScores](../resources/intune-devices-userexperienceanalyticsdevicescores.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: 553
] } ```-----
v1.0 Intune Devices Userexperienceanalyticsdevicescores Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsdevicescores-update.md
Title: "Update userExperienceAnalyticsDeviceScores" description: "Update the properties of a userExperienceAnalyticsDeviceScores object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [userExperienceAnalyticsDeviceScores](../resources/intune-devices-userexperienceanalyticsdevicescores.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: 476
"healthStatus": "insufficientData" } ```-----
v1.0 Intune Devices Userexperienceanalyticsdevicestartuphistory Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsdevicestartuphistory-create.md
Title: "Create userExperienceAnalyticsDeviceStartupHistory" description: "Create a new userExperienceAnalyticsDeviceStartupHistory object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [userExperienceAnalyticsDeviceStartupHistory](../resources/intune-devices-userexperienceanalyticsdevicestartuphistory.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: 729
"restartFaultBucket": "Restart Fault Bucket value" } ```-----
v1.0 Intune Devices Userexperienceanalyticsdevicestartuphistory Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsdevicestartuphistory-delete.md
Title: "Delete userExperienceAnalyticsDeviceStartupHistory" description: "Deletes a userExperienceAnalyticsDeviceStartupHistory."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [userExperienceAnalyticsDeviceStartupHistory](../resources/intune-devices-userexperienceanalyticsdevicestartuphistory.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 Devices Userexperienceanalyticsdevicestartuphistory Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsdevicestartuphistory-get.md
Title: "Get userExperienceAnalyticsDeviceStartupHistory" description: "Read properties and relationships of the userExperienceAnalyticsDeviceStartupHistory object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [userExperienceAnalyticsDeviceStartupHistory](../resources/intune-devices-userexperienceanalyticsdevicestartuphistory.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: 784
} } ```-----
v1.0 Intune Devices Userexperienceanalyticsdevicestartuphistory List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsdevicestartuphistory-list.md
Title: "List userExperienceAnalyticsDeviceStartupHistories" description: "List properties and relationships of the userExperienceAnalyticsDeviceStartupHistory objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [userExperienceAnalyticsDeviceStartupHistory](../resources/intune-devices-userexperienceanalyticsdevicestartuphistory.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: 834
] } ```-----
v1.0 Intune Devices Userexperienceanalyticsdevicestartuphistory Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsdevicestartuphistory-update.md
Title: "Update userExperienceAnalyticsDeviceStartupHistory" description: "Update the properties of a userExperienceAnalyticsDeviceStartupHistory object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [userExperienceAnalyticsDeviceStartupHistory](../resources/intune-devices-userexperienceanalyticsdevicestartuphistory.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: 729
"restartFaultBucket": "Restart Fault Bucket value" } ```-----
v1.0 Intune Devices Userexperienceanalyticsdevicestartupprocess Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsdevicestartupprocess-create.md
Title: "Create userExperienceAnalyticsDeviceStartupProcess" description: "Create a new userExperienceAnalyticsDeviceStartupProcess object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [userExperienceAnalyticsDeviceStartupProcess](../resources/intune-devices-userexperienceanalyticsdevicestartupprocess.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: 325
"startupImpactInMs": 1 } ```-----
v1.0 Intune Devices Userexperienceanalyticsdevicestartupprocess Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsdevicestartupprocess-delete.md
Title: "Delete userExperienceAnalyticsDeviceStartupProcess" description: "Deletes a userExperienceAnalyticsDeviceStartupProcess."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [userExperienceAnalyticsDeviceStartupProcess](../resources/intune-devices-userexperienceanalyticsdevicestartupprocess.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 Devices Userexperienceanalyticsdevicestartupprocess Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsdevicestartupprocess-get.md
Title: "Get userExperienceAnalyticsDeviceStartupProcess" description: "Read properties and relationships of the userExperienceAnalyticsDeviceStartupProcess object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [userExperienceAnalyticsDeviceStartupProcess](../resources/intune-devices-userexperienceanalyticsdevicestartupprocess.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: 358
} } ```-----
v1.0 Intune Devices Userexperienceanalyticsdevicestartupprocess List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsdevicestartupprocess-list.md
Title: "List userExperienceAnalyticsDeviceStartupProcesses" description: "List properties and relationships of the userExperienceAnalyticsDeviceStartupProcess objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [userExperienceAnalyticsDeviceStartupProcess](../resources/intune-devices-userexperienceanalyticsdevicestartupprocess.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: 386
] } ```-----
v1.0 Intune Devices Userexperienceanalyticsdevicestartupprocess Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsdevicestartupprocess-update.md
Title: "Update userExperienceAnalyticsDeviceStartupProcess" description: "Update the properties of a userExperienceAnalyticsDeviceStartupProcess object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [userExperienceAnalyticsDeviceStartupProcess](../resources/intune-devices-userexperienceanalyticsdevicestartupprocess.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: 325
"startupImpactInMs": 1 } ```-----
v1.0 Intune Devices Userexperienceanalyticsdevicestartupprocessperformance Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsdevicestartupprocessperformance-create.md
Title: "Create userExperienceAnalyticsDeviceStartupProcessPerformance" description: "Create a new userExperienceAnalyticsDeviceStartupProcessPerformance object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [userExperienceAnalyticsDeviceStartupProcessPerformance](../resources/intune-devices-userexperienceanalyticsdevicestartupprocessperformance.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: 387
"totalImpactInMs2": 0 } ```-----
v1.0 Intune Devices Userexperienceanalyticsdevicestartupprocessperformance Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsdevicestartupprocessperformance-delete.md
Title: "Delete userExperienceAnalyticsDeviceStartupProcessPerformance" description: "Deletes a userExperienceAnalyticsDeviceStartupProcessPerformance."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [userExperienceAnalyticsDeviceStartupProcessPerformance](../resources/intune-devices-userexperienceanalyticsdevicestartupprocessperformance.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 Devices Userexperienceanalyticsdevicestartupprocessperformance Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsdevicestartupprocessperformance-get.md
Title: "Get userExperienceAnalyticsDeviceStartupProcessPerformance" description: "Read properties and relationships of the userExperienceAnalyticsDeviceStartupProcessPerformance object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [userExperienceAnalyticsDeviceStartupProcessPerformance](../resources/intune-devices-userexperienceanalyticsdevicestartupprocessperformance.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: 426
} } ```-----
v1.0 Intune Devices Userexperienceanalyticsdevicestartupprocessperformance List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsdevicestartupprocessperformance-list.md
Title: "List userExperienceAnalyticsDeviceStartupProcessPerformances" description: "List properties and relationships of the userExperienceAnalyticsDeviceStartupProcessPerformance objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [userExperienceAnalyticsDeviceStartupProcessPerformance](../resources/intune-devices-userexperienceanalyticsdevicestartupprocessperformance.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: 460
] } ```-----
v1.0 Intune Devices Userexperienceanalyticsdevicestartupprocessperformance Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsdevicestartupprocessperformance-update.md
Title: "Update userExperienceAnalyticsDeviceStartupProcessPerformance" description: "Update the properties of a userExperienceAnalyticsDeviceStartupProcessPerformance object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [userExperienceAnalyticsDeviceStartupProcessPerformance](../resources/intune-devices-userexperienceanalyticsdevicestartupprocessperformance.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: 387
"totalImpactInMs2": 0 } ```-----
v1.0 Intune Devices Userexperienceanalyticsdevicetimelineevents Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsdevicetimelineevents-create.md
+
+ Title: "Create userExperienceAnalyticsDeviceTimelineEvents"
+description: "Create a new userExperienceAnalyticsDeviceTimelineEvents object."
+
+localization_priority: Normal
++
+# Create userExperienceAnalyticsDeviceTimelineEvents
+
+Namespace: microsoft.graph
+
+> **Important:** Microsoft Graph APIs under the /beta version are subject to change; production use is not supported.
+
+> **Note:** The Microsoft Graph API for Intune requires an [active Intune license](https://go.microsoft.com/fwlink/?linkid=839381) for the tenant.
+
+Create a new [userExperienceAnalyticsDeviceTimelineEvents](../resources/intune-devices-userexperienceanalyticsdevicetimelineevents.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)|DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All|
+|Delegated (personal Microsoft account)|Not supported.|
+|Application|DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All|
+
+## HTTP Request
+<!-- {
+ "blockType": "ignored"
+}
+-->
+``` http
+POST /deviceManagement/userExperienceAnalyticsDeviceTimelineEvents
+```
+
+## Request headers
+|Header|Value|
+|:|:|
+|Authorization|Bearer &lt;token&gt; Required.|
+|Accept|application/json|
+
+## Request body
+In the request body, supply a JSON representation for the userExperienceAnalyticsDeviceTimelineEvents object.
+
+The following table shows the properties that are required when you create the userExperienceAnalyticsDeviceTimelineEvents.
+
+|Property|Type|Description|
+|:|:|:|
+|id|String|The unique identifier of the user experience analytics NRT device timeline events object.|
+|deviceId|String|The id of the device where the event occurred.|
+|eventDateTime|DateTimeOffset|The time the event occured.|
+|eventLevel|[deviceEventLevel](../resources/intune-devices-deviceeventlevel.md)|The severity level of the event enum. Possible values are: `none`, `verbose`, `information`, `warning`, `error` ,`critical`. Default value: `none`. Possible values are: `none`, `verbose`, `information`, `warning`, `error`, `critical`, `unknownFutureValue`.|
+|eventSource|String|The source of the event. Examples include: Intune, Sccm.|
+|eventName|String|The name of the event. Examples include: BootEvent, LogonEvent, AppCrashEvent, AppHangEvent.|
+|eventDetails|String|The details provided by the event, format depends on event type.|
+|eventAdditionalInformation|String|Placeholder value for future expansion.|
+++
+## Response
+If successful, this method returns a `201 Created` response code and a [userExperienceAnalyticsDeviceTimelineEvents](../resources/intune-devices-userexperienceanalyticsdevicetimelineevents.md) object in the response body.
+
+## Example
+
+### Request
+Here is an example of the request.
+``` http
+POST https://graph.microsoft.com/beta/deviceManagement/userExperienceAnalyticsDeviceTimelineEvents
+Content-type: application/json
+Content-length: 393
+
+{
+ "@odata.type": "#microsoft.graph.userExperienceAnalyticsDeviceTimelineEvents",
+ "deviceId": "Device Id value",
+ "eventDateTime": "2016-12-31T23:59:23.3984029-08:00",
+ "eventLevel": "verbose",
+ "eventSource": "Event Source value",
+ "eventName": "Event Name value",
+ "eventDetails": "Event Details value",
+ "eventAdditionalInformation": "Event Additional Information value"
+}
+```
+
+### Response
+Here is an example of the response. Note: The response object shown here may be truncated for brevity. All of the properties will be returned from an actual call.
+``` http
+HTTP/1.1 201 Created
+Content-Type: application/json
+Content-Length: 442
+
+{
+ "@odata.type": "#microsoft.graph.userExperienceAnalyticsDeviceTimelineEvents",
+ "id": "c958258a-258a-c958-8a25-58c98a2558c9",
+ "deviceId": "Device Id value",
+ "eventDateTime": "2016-12-31T23:59:23.3984029-08:00",
+ "eventLevel": "verbose",
+ "eventSource": "Event Source value",
+ "eventName": "Event Name value",
+ "eventDetails": "Event Details value",
+ "eventAdditionalInformation": "Event Additional Information value"
+}
+```
v1.0 Intune Devices Userexperienceanalyticsdevicetimelineevents Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsdevicetimelineevents-delete.md
+
+ Title: "Delete userExperienceAnalyticsDeviceTimelineEvents"
+description: "Deletes a userExperienceAnalyticsDeviceTimelineEvents."
+
+localization_priority: Normal
++
+# Delete userExperienceAnalyticsDeviceTimelineEvents
+
+Namespace: microsoft.graph
+
+> **Important:** Microsoft Graph APIs under the /beta version are subject to change; production use is not supported.
+
+> **Note:** The Microsoft Graph API for Intune requires an [active Intune license](https://go.microsoft.com/fwlink/?linkid=839381) for the tenant.
+
+Deletes a [userExperienceAnalyticsDeviceTimelineEvents](../resources/intune-devices-userexperienceanalyticsdevicetimelineevents.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)|DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All|
+|Delegated (personal Microsoft account)|Not supported.|
+|Application|DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All|
+
+## HTTP Request
+<!-- {
+ "blockType": "ignored"
+}
+-->
+``` http
+DELETE /deviceManagement/userExperienceAnalyticsDeviceTimelineEvents/{userExperienceAnalyticsDeviceTimelineEventsId}
+```
+
+## Request headers
+|Header|Value|
+|:|:|
+|Authorization|Bearer &lt;token&gt; Required.|
+|Accept|application/json|
+
+## Request body
+Do not supply a request body for this method.
+
+## Response
+If successful, this method returns a `204 No Content` response code.
+
+## Example
+
+### Request
+Here is an example of the request.
+``` http
+DELETE https://graph.microsoft.com/beta/deviceManagement/userExperienceAnalyticsDeviceTimelineEvents/{userExperienceAnalyticsDeviceTimelineEventsId}
+```
+
+### Response
+Here is an example of the response. Note: The response object shown here may be truncated for brevity. All of the properties will be returned from an actual call.
+``` http
+HTTP/1.1 204 No Content
+```
v1.0 Intune Devices Userexperienceanalyticsdevicetimelineevents Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsdevicetimelineevents-get.md
+
+ Title: "Get userExperienceAnalyticsDeviceTimelineEvents"
+description: "Read properties and relationships of the userExperienceAnalyticsDeviceTimelineEvents object."
+
+localization_priority: Normal
++
+# Get userExperienceAnalyticsDeviceTimelineEvents
+
+Namespace: microsoft.graph
+
+> **Important:** Microsoft Graph APIs under the /beta version are subject to change; production use is not supported.
+
+> **Note:** The Microsoft Graph API for Intune requires an [active Intune license](https://go.microsoft.com/fwlink/?linkid=839381) for the tenant.
+
+Read properties and relationships of the [userExperienceAnalyticsDeviceTimelineEvents](../resources/intune-devices-userexperienceanalyticsdevicetimelineevents.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)|DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All|
+|Delegated (personal Microsoft account)|Not supported.|
+|Application|DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All|
+
+## HTTP Request
+<!-- {
+ "blockType": "ignored"
+}
+-->
+``` http
+GET /deviceManagement/userExperienceAnalyticsDeviceTimelineEvents/{userExperienceAnalyticsDeviceTimelineEventsId}
+```
+
+## Optional query parameters
+This method supports the [OData Query Parameters](/graph/query-parameters) to help customize the response.
+
+## Request headers
+|Header|Value|
+|:|:|
+|Authorization|Bearer &lt;token&gt; Required.|
+|Accept|application/json|
+
+## Request body
+Do not supply a request body for this method.
+
+## Response
+If successful, this method returns a `200 OK` response code and [userExperienceAnalyticsDeviceTimelineEvents](../resources/intune-devices-userexperienceanalyticsdevicetimelineevents.md) object in the response body.
+
+## Example
+
+### Request
+Here is an example of the request.
+``` http
+GET https://graph.microsoft.com/beta/deviceManagement/userExperienceAnalyticsDeviceTimelineEvents/{userExperienceAnalyticsDeviceTimelineEventsId}
+```
+
+### Response
+Here is an example of the response. Note: The response object shown here may be truncated for brevity. All of the properties will be returned from an actual call.
+``` http
+HTTP/1.1 200 OK
+Content-Type: application/json
+Content-Length: 479
+
+{
+ "value": {
+ "@odata.type": "#microsoft.graph.userExperienceAnalyticsDeviceTimelineEvents",
+ "id": "c958258a-258a-c958-8a25-58c98a2558c9",
+ "deviceId": "Device Id value",
+ "eventDateTime": "2016-12-31T23:59:23.3984029-08:00",
+ "eventLevel": "verbose",
+ "eventSource": "Event Source value",
+ "eventName": "Event Name value",
+ "eventDetails": "Event Details value",
+ "eventAdditionalInformation": "Event Additional Information value"
+ }
+}
+```
v1.0 Intune Devices Userexperienceanalyticsdevicetimelineevents List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsdevicetimelineevents-list.md
+
+ Title: "List userExperienceAnalyticsDeviceTimelineEventses"
+description: "List properties and relationships of the userExperienceAnalyticsDeviceTimelineEvents objects."
+
+localization_priority: Normal
++
+# List userExperienceAnalyticsDeviceTimelineEventses
+
+Namespace: microsoft.graph
+
+> **Important:** Microsoft Graph APIs under the /beta version are subject to change; production use is not supported.
+
+> **Note:** The Microsoft Graph API for Intune requires an [active Intune license](https://go.microsoft.com/fwlink/?linkid=839381) for the tenant.
+
+List properties and relationships of the [userExperienceAnalyticsDeviceTimelineEvents](../resources/intune-devices-userexperienceanalyticsdevicetimelineevents.md) objects.
+
+## Permissions
+One of the following permissions is required to 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)|DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All|
+|Delegated (personal Microsoft account)|Not supported.|
+|Application|DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All|
+
+## HTTP Request
+<!-- {
+ "blockType": "ignored"
+}
+-->
+``` http
+GET /deviceManagement/userExperienceAnalyticsDeviceTimelineEvents
+```
+
+## Request headers
+|Header|Value|
+|:|:|
+|Authorization|Bearer &lt;token&gt; Required.|
+|Accept|application/json|
+
+## 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 [userExperienceAnalyticsDeviceTimelineEvents](../resources/intune-devices-userexperienceanalyticsdevicetimelineevents.md) objects in the response body.
+
+## Example
+
+### Request
+Here is an example of the request.
+``` http
+GET https://graph.microsoft.com/beta/deviceManagement/userExperienceAnalyticsDeviceTimelineEvents
+```
+
+### Response
+Here is an example of the response. Note: The response object shown here may be truncated for brevity. All of the properties will be returned from an actual call.
+``` http
+HTTP/1.1 200 OK
+Content-Type: application/json
+Content-Length: 511
+
+{
+ "value": [
+ {
+ "@odata.type": "#microsoft.graph.userExperienceAnalyticsDeviceTimelineEvents",
+ "id": "c958258a-258a-c958-8a25-58c98a2558c9",
+ "deviceId": "Device Id value",
+ "eventDateTime": "2016-12-31T23:59:23.3984029-08:00",
+ "eventLevel": "verbose",
+ "eventSource": "Event Source value",
+ "eventName": "Event Name value",
+ "eventDetails": "Event Details value",
+ "eventAdditionalInformation": "Event Additional Information value"
+ }
+ ]
+}
+```
v1.0 Intune Devices Userexperienceanalyticsdevicetimelineevents Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsdevicetimelineevents-update.md
+
+ Title: "Update userExperienceAnalyticsDeviceTimelineEvents"
+description: "Update the properties of a userExperienceAnalyticsDeviceTimelineEvents object."
+
+localization_priority: Normal
++
+# Update userExperienceAnalyticsDeviceTimelineEvents
+
+Namespace: microsoft.graph
+
+> **Important:** Microsoft Graph APIs under the /beta version are subject to change; production use is not supported.
+
+> **Note:** The Microsoft Graph API for Intune requires an [active Intune license](https://go.microsoft.com/fwlink/?linkid=839381) for the tenant.
+
+Update the properties of a [userExperienceAnalyticsDeviceTimelineEvents](../resources/intune-devices-userexperienceanalyticsdevicetimelineevents.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)|DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All|
+|Delegated (personal Microsoft account)|Not supported.|
+|Application|DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All|
+
+## HTTP Request
+<!-- {
+ "blockType": "ignored"
+}
+-->
+``` http
+PATCH /deviceManagement/userExperienceAnalyticsDeviceTimelineEvents/{userExperienceAnalyticsDeviceTimelineEventsId}
+```
+
+## Request headers
+|Header|Value|
+|:|:|
+|Authorization|Bearer &lt;token&gt; Required.|
+|Accept|application/json|
+
+## Request body
+In the request body, supply a JSON representation for the [userExperienceAnalyticsDeviceTimelineEvents](../resources/intune-devices-userexperienceanalyticsdevicetimelineevents.md) object.
+
+The following table shows the properties that are required when you create the [userExperienceAnalyticsDeviceTimelineEvents](../resources/intune-devices-userexperienceanalyticsdevicetimelineevents.md).
+
+|Property|Type|Description|
+|:|:|:|
+|id|String|The unique identifier of the user experience analytics NRT device timeline events object.|
+|deviceId|String|The id of the device where the event occurred.|
+|eventDateTime|DateTimeOffset|The time the event occured.|
+|eventLevel|[deviceEventLevel](../resources/intune-devices-deviceeventlevel.md)|The severity level of the event enum. Possible values are: `none`, `verbose`, `information`, `warning`, `error` ,`critical`. Default value: `none`. Possible values are: `none`, `verbose`, `information`, `warning`, `error`, `critical`, `unknownFutureValue`.|
+|eventSource|String|The source of the event. Examples include: Intune, Sccm.|
+|eventName|String|The name of the event. Examples include: BootEvent, LogonEvent, AppCrashEvent, AppHangEvent.|
+|eventDetails|String|The details provided by the event, format depends on event type.|
+|eventAdditionalInformation|String|Placeholder value for future expansion.|
+++
+## Response
+If successful, this method returns a `200 OK` response code and an updated [userExperienceAnalyticsDeviceTimelineEvents](../resources/intune-devices-userexperienceanalyticsdevicetimelineevents.md) object in the response body.
+
+## Example
+
+### Request
+Here is an example of the request.
+``` http
+PATCH https://graph.microsoft.com/beta/deviceManagement/userExperienceAnalyticsDeviceTimelineEvents/{userExperienceAnalyticsDeviceTimelineEventsId}
+Content-type: application/json
+Content-length: 393
+
+{
+ "@odata.type": "#microsoft.graph.userExperienceAnalyticsDeviceTimelineEvents",
+ "deviceId": "Device Id value",
+ "eventDateTime": "2016-12-31T23:59:23.3984029-08:00",
+ "eventLevel": "verbose",
+ "eventSource": "Event Source value",
+ "eventName": "Event Name value",
+ "eventDetails": "Event Details value",
+ "eventAdditionalInformation": "Event Additional Information value"
+}
+```
+
+### Response
+Here is an example of the response. Note: The response object shown here may be truncated for brevity. All of the properties will be returned from an actual call.
+``` http
+HTTP/1.1 200 OK
+Content-Type: application/json
+Content-Length: 442
+
+{
+ "@odata.type": "#microsoft.graph.userExperienceAnalyticsDeviceTimelineEvents",
+ "id": "c958258a-258a-c958-8a25-58c98a2558c9",
+ "deviceId": "Device Id value",
+ "eventDateTime": "2016-12-31T23:59:23.3984029-08:00",
+ "eventLevel": "verbose",
+ "eventSource": "Event Source value",
+ "eventName": "Event Name value",
+ "eventDetails": "Event Details value",
+ "eventAdditionalInformation": "Event Additional Information value"
+}
+```
v1.0 Intune Devices Userexperienceanalyticsdevicewithoutcloudidentity Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsdevicewithoutcloudidentity-create.md
Title: "Create userExperienceAnalyticsDeviceWithoutCloudIdentity" description: "Create a new userExperienceAnalyticsDeviceWithoutCloudIdentity object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [userExperienceAnalyticsDeviceWithoutCloudIdentity](../resources/intune-devices-userexperienceanalyticsdevicewithoutcloudidentity.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: 228
"azureAdDeviceId": "Azure Ad Device Id value" } ```-----
v1.0 Intune Devices Userexperienceanalyticsdevicewithoutcloudidentity Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsdevicewithoutcloudidentity-delete.md
Title: "Delete userExperienceAnalyticsDeviceWithoutCloudIdentity" description: "Deletes a userExperienceAnalyticsDeviceWithoutCloudIdentity."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [userExperienceAnalyticsDeviceWithoutCloudIdentity](../resources/intune-devices-userexperienceanalyticsdevicewithoutcloudidentity.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 Devices Userexperienceanalyticsdevicewithoutcloudidentity Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsdevicewithoutcloudidentity-get.md
Title: "Get userExperienceAnalyticsDeviceWithoutCloudIdentity" description: "Read properties and relationships of the userExperienceAnalyticsDeviceWithoutCloudIdentity object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [userExperienceAnalyticsDeviceWithoutCloudIdentity](../resources/intune-devices-userexperienceanalyticsdevicewithoutcloudidentity.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: 255
} } ```-----
v1.0 Intune Devices Userexperienceanalyticsdevicewithoutcloudidentity List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsdevicewithoutcloudidentity-list.md
Title: "List userExperienceAnalyticsDeviceWithoutCloudIdentities" description: "List properties and relationships of the userExperienceAnalyticsDeviceWithoutCloudIdentity objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [userExperienceAnalyticsDeviceWithoutCloudIdentity](../resources/intune-devices-userexperienceanalyticsdevicewithoutcloudidentity.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: 277
] } ```-----
v1.0 Intune Devices Userexperienceanalyticsdevicewithoutcloudidentity Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsdevicewithoutcloudidentity-update.md
Title: "Update userExperienceAnalyticsDeviceWithoutCloudIdentity" description: "Update the properties of a userExperienceAnalyticsDeviceWithoutCloudIdentity object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [userExperienceAnalyticsDeviceWithoutCloudIdentity](../resources/intune-devices-userexperienceanalyticsdevicewithoutcloudidentity.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: 228
"azureAdDeviceId": "Azure Ad Device Id value" } ```-----
v1.0 Intune Devices Userexperienceanalyticsimpactingprocess Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsimpactingprocess-create.md
Title: "Create userExperienceAnalyticsImpactingProcess" description: "Create a new userExperienceAnalyticsImpactingProcess object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [userExperienceAnalyticsImpactingProcess](../resources/intune-devices-userexperienceanalyticsimpactingprocess.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: 349
"impactValue": 3.6666666666666665 } ```-----
v1.0 Intune Devices Userexperienceanalyticsimpactingprocess Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsimpactingprocess-delete.md
Title: "Delete userExperienceAnalyticsImpactingProcess" description: "Deletes a userExperienceAnalyticsImpactingProcess."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [userExperienceAnalyticsImpactingProcess](../resources/intune-devices-userexperienceanalyticsimpactingprocess.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 Devices Userexperienceanalyticsimpactingprocess Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsimpactingprocess-get.md
Title: "Get userExperienceAnalyticsImpactingProcess" description: "Read properties and relationships of the userExperienceAnalyticsImpactingProcess object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [userExperienceAnalyticsImpactingProcess](../resources/intune-devices-userexperienceanalyticsimpactingprocess.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: 384
} } ```-----
v1.0 Intune Devices Userexperienceanalyticsimpactingprocess List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsimpactingprocess-list.md
Title: "List userExperienceAnalyticsImpactingProcesses" description: "List properties and relationships of the userExperienceAnalyticsImpactingProcess objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [userExperienceAnalyticsImpactingProcess](../resources/intune-devices-userexperienceanalyticsimpactingprocess.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: 414
] } ```-----
v1.0 Intune Devices Userexperienceanalyticsimpactingprocess Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsimpactingprocess-update.md
Title: "Update userExperienceAnalyticsImpactingProcess" description: "Update the properties of a userExperienceAnalyticsImpactingProcess object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [userExperienceAnalyticsImpactingProcess](../resources/intune-devices-userexperienceanalyticsimpactingprocess.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: 349
"impactValue": 3.6666666666666665 } ```-----
v1.0 Intune Devices Userexperienceanalyticsmetric Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsmetric-create.md
Title: "Create userExperienceAnalyticsMetric" description: "Create a new userExperienceAnalyticsMetric object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [userExperienceAnalyticsMetric](../resources/intune-devices-userexperienceanalyticsmetric.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: 177
"unit": "Unit value" } ```-----
v1.0 Intune Devices Userexperienceanalyticsmetric Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsmetric-delete.md
Title: "Delete userExperienceAnalyticsMetric" description: "Deletes a userExperienceAnalyticsMetric."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [userExperienceAnalyticsMetric](../resources/intune-devices-userexperienceanalyticsmetric.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 Devices Userexperienceanalyticsmetric Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsmetric-get.md
Title: "Get userExperienceAnalyticsMetric" description: "Read properties and relationships of the userExperienceAnalyticsMetric object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [userExperienceAnalyticsMetric](../resources/intune-devices-userexperienceanalyticsmetric.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: 204
} } ```-----
v1.0 Intune Devices Userexperienceanalyticsmetric List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsmetric-list.md
Title: "List userExperienceAnalyticsMetrics" description: "List properties and relationships of the userExperienceAnalyticsMetric objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [userExperienceAnalyticsMetric](../resources/intune-devices-userexperienceanalyticsmetric.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: 226
] } ```-----
v1.0 Intune Devices Userexperienceanalyticsmetric Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsmetric-update.md
Title: "Update userExperienceAnalyticsMetric" description: "Update the properties of a userExperienceAnalyticsMetric object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [userExperienceAnalyticsMetric](../resources/intune-devices-userexperienceanalyticsmetric.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: 177
"unit": "Unit value" } ```-----
v1.0 Intune Devices Userexperienceanalyticsmetrichistory Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsmetrichistory-create.md
Title: "Create userExperienceAnalyticsMetricHistory" description: "Create a new userExperienceAnalyticsMetricHistory object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [userExperienceAnalyticsMetricHistory](../resources/intune-devices-userexperienceanalyticsmetrichistory.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: 257
"metricType": "Metric Type value" } ```-----
v1.0 Intune Devices Userexperienceanalyticsmetrichistory Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsmetrichistory-delete.md
Title: "Delete userExperienceAnalyticsMetricHistory" description: "Deletes a userExperienceAnalyticsMetricHistory."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [userExperienceAnalyticsMetricHistory](../resources/intune-devices-userexperienceanalyticsmetrichistory.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 Devices Userexperienceanalyticsmetrichistory Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsmetrichistory-get.md
Title: "Get userExperienceAnalyticsMetricHistory" description: "Read properties and relationships of the userExperienceAnalyticsMetricHistory object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [userExperienceAnalyticsMetricHistory](../resources/intune-devices-userexperienceanalyticsmetrichistory.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: 286
} } ```-----
v1.0 Intune Devices Userexperienceanalyticsmetrichistory List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsmetrichistory-list.md
Title: "List userExperienceAnalyticsMetricHistories" description: "List properties and relationships of the userExperienceAnalyticsMetricHistory objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [userExperienceAnalyticsMetricHistory](../resources/intune-devices-userexperienceanalyticsmetrichistory.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: 310
] } ```-----
v1.0 Intune Devices Userexperienceanalyticsmetrichistory Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsmetrichistory-update.md
Title: "Update userExperienceAnalyticsMetricHistory" description: "Update the properties of a userExperienceAnalyticsMetricHistory object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [userExperienceAnalyticsMetricHistory](../resources/intune-devices-userexperienceanalyticsmetrichistory.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: 257
"metricType": "Metric Type value" } ```-----
v1.0 Intune Devices Userexperienceanalyticsmodelscores Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsmodelscores-create.md
Title: "Create userExperienceAnalyticsModelScores" description: "Create a new userExperienceAnalyticsModelScores object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [userExperienceAnalyticsModelScores](../resources/intune-devices-userexperienceanalyticsmodelscores.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
"healthStatus": "insufficientData" } ```-----
v1.0 Intune Devices Userexperienceanalyticsmodelscores Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsmodelscores-delete.md
Title: "Delete userExperienceAnalyticsModelScores" description: "Deletes a userExperienceAnalyticsModelScores."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [userExperienceAnalyticsModelScores](../resources/intune-devices-userexperienceanalyticsmodelscores.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 Devices Userexperienceanalyticsmodelscores Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsmodelscores-get.md
Title: "Get userExperienceAnalyticsModelScores" description: "Read properties and relationships of the userExperienceAnalyticsModelScores object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [userExperienceAnalyticsModelScores](../resources/intune-devices-userexperienceanalyticsmodelscores.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: 504
} } ```-----
v1.0 Intune Devices Userexperienceanalyticsmodelscores List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsmodelscores-list.md
Title: "List userExperienceAnalyticsModelScoreses" description: "List properties and relationships of the userExperienceAnalyticsModelScores objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [userExperienceAnalyticsModelScores](../resources/intune-devices-userexperienceanalyticsmodelscores.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: 540
] } ```-----
v1.0 Intune Devices Userexperienceanalyticsmodelscores Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsmodelscores-update.md
Title: "Update userExperienceAnalyticsModelScores" description: "Update the properties of a userExperienceAnalyticsModelScores object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [userExperienceAnalyticsModelScores](../resources/intune-devices-userexperienceanalyticsmodelscores.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
"healthStatus": "insufficientData" } ```-----
v1.0 Intune Devices Userexperienceanalyticsnotautopilotreadydevice Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsnotautopilotreadydevice-create.md
Title: "Create userExperienceAnalyticsNotAutopilotReadyDevice" description: "Create a new userExperienceAnalyticsNotAutopilotReadyDevice object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [userExperienceAnalyticsNotAutopilotReadyDevice](../resources/intune-devices-userexperienceanalyticsnotautopilotreadydevice.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
"azureAdJoinType": "Azure Ad Join Type value" } ```-----
v1.0 Intune Devices Userexperienceanalyticsnotautopilotreadydevice Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsnotautopilotreadydevice-delete.md
Title: "Delete userExperienceAnalyticsNotAutopilotReadyDevice" description: "Deletes a userExperienceAnalyticsNotAutopilotReadyDevice."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [userExperienceAnalyticsNotAutopilotReadyDevice](../resources/intune-devices-userexperienceanalyticsnotautopilotreadydevice.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 Devices Userexperienceanalyticsnotautopilotreadydevice Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsnotautopilotreadydevice-get.md
Title: "Get userExperienceAnalyticsNotAutopilotReadyDevice" description: "Read properties and relationships of the userExperienceAnalyticsNotAutopilotReadyDevice object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [userExperienceAnalyticsNotAutopilotReadyDevice](../resources/intune-devices-userexperienceanalyticsnotautopilotreadydevice.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 Devices Userexperienceanalyticsnotautopilotreadydevice List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsnotautopilotreadydevice-list.md
Title: "List userExperienceAnalyticsNotAutopilotReadyDevices" description: "List properties and relationships of the userExperienceAnalyticsNotAutopilotReadyDevice objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [userExperienceAnalyticsNotAutopilotReadyDevice](../resources/intune-devices-userexperienceanalyticsnotautopilotreadydevice.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: 547
] } ```-----
v1.0 Intune Devices Userexperienceanalyticsnotautopilotreadydevice Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsnotautopilotreadydevice-update.md
Title: "Update userExperienceAnalyticsNotAutopilotReadyDevice" description: "Update the properties of a userExperienceAnalyticsNotAutopilotReadyDevice object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [userExperienceAnalyticsNotAutopilotReadyDevice](../resources/intune-devices-userexperienceanalyticsnotautopilotreadydevice.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
"azureAdJoinType": "Azure Ad Join Type value" } ```-----
v1.0 Intune Devices Userexperienceanalyticsoverview Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsoverview-get.md
Title: "Get userExperienceAnalyticsOverview" description: "Read properties and relationships of the userExperienceAnalyticsOverview object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [userExperienceAnalyticsOverview](../resources/intune-devices-userexperienceanalyticsoverview.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: 1213
} } ```-----
v1.0 Intune Devices Userexperienceanalyticsoverview Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsoverview-update.md
Title: "Update userExperienceAnalyticsOverview" description: "Update the properties of a userExperienceAnalyticsOverview object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [userExperienceAnalyticsOverview](../resources/intune-devices-userexperienceanalyticsoverview.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: 1134
"batteryHealthState": "insufficientData" } ```-----
v1.0 Intune Devices Userexperienceanalyticsregressionsummary Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsregressionsummary-get.md
Title: "Get userExperienceAnalyticsRegressionSummary" description: "Read properties and relationships of the userExperienceAnalyticsRegressionSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [userExperienceAnalyticsRegressionSummary](../resources/intune-devices-userexperienceanalyticsregressionsummary.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: 154
} } ```-----
v1.0 Intune Devices Userexperienceanalyticsregressionsummary Summarizedeviceregressionperformance https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsregressionsummary-summarizedeviceregressionperformance.md
Title: "summarizeDeviceRegressionPerformance 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: 154
} } ```-----
v1.0 Intune Devices Userexperienceanalyticsregressionsummary Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsregressionsummary-update.md
Title: "Update userExperienceAnalyticsRegressionSummary" description: "Update the properties of a userExperienceAnalyticsRegressionSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [userExperienceAnalyticsRegressionSummary](../resources/intune-devices-userexperienceanalyticsregressionsummary.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: 131
"id": "41683327-3327-4168-2733-684127336841" } ```-----
v1.0 Intune Devices Userexperienceanalyticsremoteconnection Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsremoteconnection-create.md
Title: "Create userExperienceAnalyticsRemoteConnection" description: "Create a new userExperienceAnalyticsRemoteConnection object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [userExperienceAnalyticsRemoteConnection](../resources/intune-devices-userexperienceanalyticsremoteconnection.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: 622
"userPrincipalName": "User Principal Name value" } ```-----
v1.0 Intune Devices Userexperienceanalyticsremoteconnection Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsremoteconnection-delete.md
Title: "Delete userExperienceAnalyticsRemoteConnection" description: "Deletes a userExperienceAnalyticsRemoteConnection."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [userExperienceAnalyticsRemoteConnection](../resources/intune-devices-userexperienceanalyticsremoteconnection.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 Devices Userexperienceanalyticsremoteconnection Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsremoteconnection-get.md
Title: "Get userExperienceAnalyticsRemoteConnection" description: "Read properties and relationships of the userExperienceAnalyticsRemoteConnection object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [userExperienceAnalyticsRemoteConnection](../resources/intune-devices-userexperienceanalyticsremoteconnection.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: 671
} } ```-----
v1.0 Intune Devices Userexperienceanalyticsremoteconnection List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsremoteconnection-list.md
Title: "List userExperienceAnalyticsRemoteConnections" description: "List properties and relationships of the userExperienceAnalyticsRemoteConnection objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [userExperienceAnalyticsRemoteConnection](../resources/intune-devices-userexperienceanalyticsremoteconnection.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: 715
] } ```-----
v1.0 Intune Devices Userexperienceanalyticsremoteconnection Summarizedeviceremoteconnection https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsremoteconnection-summarizedeviceremoteconnection.md
Title: "summarizeDeviceRemoteConnection 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: 715
] } ```-----
v1.0 Intune Devices Userexperienceanalyticsremoteconnection Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsremoteconnection-update.md
Title: "Update userExperienceAnalyticsRemoteConnection" description: "Update the properties of a userExperienceAnalyticsRemoteConnection object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [userExperienceAnalyticsRemoteConnection](../resources/intune-devices-userexperienceanalyticsremoteconnection.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: 622
"userPrincipalName": "User Principal Name value" } ```-----
v1.0 Intune Devices Userexperienceanalyticsresourceperformance Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsresourceperformance-create.md
Title: "Create userExperienceAnalyticsResourcePerformance" description: "Create a new userExperienceAnalyticsResourcePerformance object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [userExperienceAnalyticsResourcePerformance](../resources/intune-devices-userexperienceanalyticsresourceperformance.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: 633
"averageSpikeTimeScore": 5 } ```-----
v1.0 Intune Devices Userexperienceanalyticsresourceperformance Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsresourceperformance-delete.md
Title: "Delete userExperienceAnalyticsResourcePerformance" description: "Deletes a userExperienceAnalyticsResourcePerformance."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [userExperienceAnalyticsResourcePerformance](../resources/intune-devices-userexperienceanalyticsresourceperformance.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 Devices Userexperienceanalyticsresourceperformance Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsresourceperformance-get.md
Title: "Get userExperienceAnalyticsResourcePerformance" description: "Read properties and relationships of the userExperienceAnalyticsResourcePerformance object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [userExperienceAnalyticsResourcePerformance](../resources/intune-devices-userexperienceanalyticsresourceperformance.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: 682
} } ```-----
v1.0 Intune Devices Userexperienceanalyticsresourceperformance List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsresourceperformance-list.md
Title: "List userExperienceAnalyticsResourcePerformances" description: "List properties and relationships of the userExperienceAnalyticsResourcePerformance objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [userExperienceAnalyticsResourcePerformance](../resources/intune-devices-userexperienceanalyticsresourceperformance.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: 726
] } ```-----
v1.0 Intune Devices Userexperienceanalyticsresourceperformance Summarizedeviceresourceperformance https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsresourceperformance-summarizedeviceresourceperformance.md
Title: "summarizeDeviceResourcePerformance 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: 726
] } ```-----
v1.0 Intune Devices Userexperienceanalyticsresourceperformance Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsresourceperformance-update.md
Title: "Update userExperienceAnalyticsResourcePerformance" description: "Update the properties of a userExperienceAnalyticsResourcePerformance object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [userExperienceAnalyticsResourcePerformance](../resources/intune-devices-userexperienceanalyticsresourceperformance.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: 633
"averageSpikeTimeScore": 5 } ```-----
v1.0 Intune Devices Userexperienceanalyticsscorehistory Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsscorehistory-create.md
Title: "Create userExperienceAnalyticsScoreHistory" description: "Create a new userExperienceAnalyticsScoreHistory object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [userExperienceAnalyticsScoreHistory](../resources/intune-devices-userexperienceanalyticsscorehistory.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
"restartScore": 12 } ```-----
v1.0 Intune Devices Userexperienceanalyticsscorehistory Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsscorehistory-delete.md
Title: "Delete userExperienceAnalyticsScoreHistory" description: "Deletes a userExperienceAnalyticsScoreHistory."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [userExperienceAnalyticsScoreHistory](../resources/intune-devices-userexperienceanalyticsscorehistory.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 Devices Userexperienceanalyticsscorehistory Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsscorehistory-get.md
Title: "Get userExperienceAnalyticsScoreHistory" description: "Read properties and relationships of the userExperienceAnalyticsScoreHistory object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [userExperienceAnalyticsScoreHistory](../resources/intune-devices-userexperienceanalyticsscorehistory.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: 657
} } ```-----
v1.0 Intune Devices Userexperienceanalyticsscorehistory List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsscorehistory-list.md
Title: "List userExperienceAnalyticsScoreHistories" description: "List properties and relationships of the userExperienceAnalyticsScoreHistory objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [userExperienceAnalyticsScoreHistory](../resources/intune-devices-userexperienceanalyticsscorehistory.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: 705
] } ```-----
v1.0 Intune Devices Userexperienceanalyticsscorehistory Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsscorehistory-update.md
Title: "Update userExperienceAnalyticsScoreHistory" description: "Update the properties of a userExperienceAnalyticsScoreHistory object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [userExperienceAnalyticsScoreHistory](../resources/intune-devices-userexperienceanalyticsscorehistory.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
"restartScore": 12 } ```-----
v1.0 Intune Devices Userexperienceanalyticsworkfromanywheredevice Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsworkfromanywheredevice-create.md
Title: "Create userExperienceAnalyticsWorkFromAnywhereDevice" description: "Create a new userExperienceAnalyticsWorkFromAnywhereDevice object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [userExperienceAnalyticsWorkFromAnywhereDevice](../resources/intune-devices-userexperienceanalyticsworkfromanywheredevice.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: 1372
"healthStatus": "insufficientData" } ```-----
v1.0 Intune Devices Userexperienceanalyticsworkfromanywheredevice Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsworkfromanywheredevice-delete.md
Title: "Delete userExperienceAnalyticsWorkFromAnywhereDevice" description: "Deletes a userExperienceAnalyticsWorkFromAnywhereDevice."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [userExperienceAnalyticsWorkFromAnywhereDevice](../resources/intune-devices-userexperienceanalyticsworkfromanywheredevice.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 Devices Userexperienceanalyticsworkfromanywheredevice Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsworkfromanywheredevice-get.md
Title: "Get userExperienceAnalyticsWorkFromAnywhereDevice" description: "Read properties and relationships of the userExperienceAnalyticsWorkFromAnywhereDevice object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [userExperienceAnalyticsWorkFromAnywhereDevice](../resources/intune-devices-userexperienceanalyticsworkfromanywheredevice.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: 1463
} } ```-----
v1.0 Intune Devices Userexperienceanalyticsworkfromanywheredevice List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsworkfromanywheredevice-list.md
Title: "List userExperienceAnalyticsWorkFromAnywhereDevices" description: "List properties and relationships of the userExperienceAnalyticsWorkFromAnywhereDevice objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [userExperienceAnalyticsWorkFromAnywhereDevice](../resources/intune-devices-userexperienceanalyticsworkfromanywheredevice.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: 1549
] } ```-----
v1.0 Intune Devices Userexperienceanalyticsworkfromanywheredevice Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsworkfromanywheredevice-update.md
Title: "Update userExperienceAnalyticsWorkFromAnywhereDevice" description: "Update the properties of a userExperienceAnalyticsWorkFromAnywhereDevice object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [userExperienceAnalyticsWorkFromAnywhereDevice](../resources/intune-devices-userexperienceanalyticsworkfromanywheredevice.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: 1372
"healthStatus": "insufficientData" } ```-----
v1.0 Intune Devices Userexperienceanalyticsworkfromanywherehardwarereadinessmetric Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsworkfromanywherehardwarereadinessmetric-get.md
Title: "Get userExperienceAnalyticsWorkFromAnywhereHardwareReadinessMetric" description: "Read properties and relationships of the userExperienceAnalyticsWorkFromAnywhereHardwareReadinessMetric object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [userExperienceAnalyticsWorkFromAnywhereHardwareReadinessMetric](../resources/intune-devices-userexperienceanalyticsworkfromanywherehardwarereadinessmetric.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: 720
} } ```-----
v1.0 Intune Devices Userexperienceanalyticsworkfromanywherehardwarereadinessmetric Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsworkfromanywherehardwarereadinessmetric-update.md
Title: "Update userExperienceAnalyticsWorkFromAnywhereHardwareReadinessMetric" description: "Update the properties of a userExperienceAnalyticsWorkFromAnywhereHardwareReadinessMetric object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [userExperienceAnalyticsWorkFromAnywhereHardwareReadinessMetric](../resources/intune-devices-userexperienceanalyticsworkfromanywherehardwarereadinessmetric.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: 675
"osCheckFailedPercentage": 7.666666666666667 } ```-----
v1.0 Intune Devices Userexperienceanalyticsworkfromanywheremetric Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsworkfromanywheremetric-create.md
Title: "Create userExperienceAnalyticsWorkFromAnywhereMetric" description: "Create a new userExperienceAnalyticsWorkFromAnywhereMetric object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [userExperienceAnalyticsWorkFromAnywhereMetric](../resources/intune-devices-userexperienceanalyticsworkfromanywheremetric.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: 136
"id": "7e6fda96-da96-7e6f-96da-6f7e96da6f7e" } ```-----
v1.0 Intune Devices Userexperienceanalyticsworkfromanywheremetric Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsworkfromanywheremetric-delete.md
Title: "Delete userExperienceAnalyticsWorkFromAnywhereMetric" description: "Deletes a userExperienceAnalyticsWorkFromAnywhereMetric."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [userExperienceAnalyticsWorkFromAnywhereMetric](../resources/intune-devices-userexperienceanalyticsworkfromanywheremetric.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 Devices Userexperienceanalyticsworkfromanywheremetric Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsworkfromanywheremetric-get.md
Title: "Get userExperienceAnalyticsWorkFromAnywhereMetric" description: "Read properties and relationships of the userExperienceAnalyticsWorkFromAnywhereMetric object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [userExperienceAnalyticsWorkFromAnywhereMetric](../resources/intune-devices-userexperienceanalyticsworkfromanywheremetric.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: 159
} } ```-----
v1.0 Intune Devices Userexperienceanalyticsworkfromanywheremetric List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsworkfromanywheremetric-list.md
Title: "List userExperienceAnalyticsWorkFromAnywhereMetrics" description: "List properties and relationships of the userExperienceAnalyticsWorkFromAnywhereMetric objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [userExperienceAnalyticsWorkFromAnywhereMetric](../resources/intune-devices-userexperienceanalyticsworkfromanywheremetric.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: 177
] } ```-----
v1.0 Intune Devices Userexperienceanalyticsworkfromanywheremetric Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsworkfromanywheremetric-update.md
Title: "Update userExperienceAnalyticsWorkFromAnywhereMetric" description: "Update the properties of a userExperienceAnalyticsWorkFromAnywhereMetric object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [userExperienceAnalyticsWorkFromAnywhereMetric](../resources/intune-devices-userexperienceanalyticsworkfromanywheremetric.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: 136
"id": "7e6fda96-da96-7e6f-96da-6f7e96da6f7e" } ```-----
v1.0 Intune Devices Userexperienceanalyticsworkfromanywheremodelperformance Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsworkfromanywheremodelperformance-create.md
Title: "Create userExperienceAnalyticsWorkFromAnywhereModelPerformance" description: "Create a new userExperienceAnalyticsWorkFromAnywhereModelPerformance object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [userExperienceAnalyticsWorkFromAnywhereModelPerformance](../resources/intune-devices-userexperienceanalyticsworkfromanywheremodelperformance.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
"healthStatus": "insufficientData" } ```-----
v1.0 Intune Devices Userexperienceanalyticsworkfromanywheremodelperformance Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsworkfromanywheremodelperformance-delete.md
Title: "Delete userExperienceAnalyticsWorkFromAnywhereModelPerformance" description: "Deletes a userExperienceAnalyticsWorkFromAnywhereModelPerformance."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [userExperienceAnalyticsWorkFromAnywhereModelPerformance](../resources/intune-devices-userexperienceanalyticsworkfromanywheremodelperformance.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 Devices Userexperienceanalyticsworkfromanywheremodelperformance Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsworkfromanywheremodelperformance-get.md
Title: "Get userExperienceAnalyticsWorkFromAnywhereModelPerformance" description: "Read properties and relationships of the userExperienceAnalyticsWorkFromAnywhereModelPerformance object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [userExperienceAnalyticsWorkFromAnywhereModelPerformance](../resources/intune-devices-userexperienceanalyticsworkfromanywheremodelperformance.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: 501
} } ```-----
v1.0 Intune Devices Userexperienceanalyticsworkfromanywheremodelperformance List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsworkfromanywheremodelperformance-list.md
Title: "List userExperienceAnalyticsWorkFromAnywhereModelPerformances" description: "List properties and relationships of the userExperienceAnalyticsWorkFromAnywhereModelPerformance objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [userExperienceAnalyticsWorkFromAnywhereModelPerformance](../resources/intune-devices-userexperienceanalyticsworkfromanywheremodelperformance.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: 537
] } ```-----
v1.0 Intune Devices Userexperienceanalyticsworkfromanywheremodelperformance Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-userexperienceanalyticsworkfromanywheremodelperformance-update.md
Title: "Update userExperienceAnalyticsWorkFromAnywhereModelPerformance" description: "Update the properties of a userExperienceAnalyticsWorkFromAnywhereModelPerformance object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [userExperienceAnalyticsWorkFromAnywhereModelPerformance](../resources/intune-devices-userexperienceanalyticsworkfromanywheremodelperformance.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
"healthStatus": "insufficientData" } ```-----
v1.0 Intune Devices Windowsdevicemalwarestate Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-windowsdevicemalwarestate-create.md
Title: "Create windowsDeviceMalwareState" description: "Create a new windowsDeviceMalwareState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windowsDeviceMalwareState](../resources/intune-devices-windowsdevicemalwarestate.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: 533
"category": "adware" } ```-----
v1.0 Intune Devices Windowsdevicemalwarestate Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-windowsdevicemalwarestate-delete.md
Title: "Delete windowsDeviceMalwareState" description: "Deletes a windowsDeviceMalwareState."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windowsDeviceMalwareState](../resources/intune-devices-windowsdevicemalwarestate.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 Devices Windowsdevicemalwarestate Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-windowsdevicemalwarestate-get.md
Title: "Get windowsDeviceMalwareState" description: "Read properties and relationships of the windowsDeviceMalwareState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsDeviceMalwareState](../resources/intune-devices-windowsdevicemalwarestate.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: 576
} } ```-----
v1.0 Intune Devices Windowsdevicemalwarestate List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-windowsdevicemalwarestate-list.md
Title: "List windowsDeviceMalwareStates" description: "List properties and relationships of the windowsDeviceMalwareState objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsDeviceMalwareState](../resources/intune-devices-windowsdevicemalwarestate.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: 614
] } ```-----
v1.0 Intune Devices Windowsdevicemalwarestate Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-windowsdevicemalwarestate-update.md
Title: "Update windowsDeviceMalwareState" description: "Update the properties of a windowsDeviceMalwareState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windowsDeviceMalwareState](../resources/intune-devices-windowsdevicemalwarestate.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: 533
"category": "adware" } ```-----
v1.0 Intune Devices Windowsmalwareinformation Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-windowsmalwareinformation-create.md
Title: "Create windowsMalwareInformation" description: "Create a new windowsMalwareInformation object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windowsMalwareInformation](../resources/intune-devices-windowsmalwareinformation.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: 348
"lastDetectionDateTime": "2016-12-31T23:59:27.3805104-08:00" } ```-----
v1.0 Intune Devices Windowsmalwareinformation Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-windowsmalwareinformation-delete.md
Title: "Delete windowsMalwareInformation" description: "Deletes a windowsMalwareInformation."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windowsMalwareInformation](../resources/intune-devices-windowsmalwareinformation.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 Devices Windowsmalwareinformation Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-windowsmalwareinformation-get.md
Title: "Get windowsMalwareInformation" description: "Read properties and relationships of the windowsMalwareInformation object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsMalwareInformation](../resources/intune-devices-windowsmalwareinformation.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: 381
} } ```-----
v1.0 Intune Devices Windowsmalwareinformation List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-windowsmalwareinformation-list.md
Title: "List windowsMalwareInformations" description: "List properties and relationships of the windowsMalwareInformation objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsMalwareInformation](../resources/intune-devices-windowsmalwareinformation.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: 409
] } ```-----
v1.0 Intune Devices Windowsmalwareinformation Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-windowsmalwareinformation-update.md
Title: "Update windowsMalwareInformation" description: "Update the properties of a windowsMalwareInformation object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windowsMalwareInformation](../resources/intune-devices-windowsmalwareinformation.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: 348
"lastDetectionDateTime": "2016-12-31T23:59:27.3805104-08:00" } ```-----
v1.0 Intune Devices Windowsmanageddevice Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-windowsmanageddevice-create.md
Title: "Create windowsManagedDevice" description: "Create a new windowsManagedDevice object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windowsManagedDevice](../resources/intune-devices-windowsmanageddevice.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
|lastSyncDateTime|DateTimeOffset|The date and time that the device last completed a successful sync with Intune. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)| |chassisType|[chassisType](../resources/intune-devices-chassistype.md)|Chassis type of the device. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md). Possible values are: `unknown`, `desktop`, `laptop`, `worksWorkstation`, `enterpriseServer`, `phone`, `tablet`, `mobileOther`, `mobileUnknown`.| |operatingSystem|String|Operating system of the device. Windows, iOS, etc. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)|
-|deviceType|[deviceType](../resources/intune-shared-devicetype.md)|Platform of the device. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md). 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`.|
+|deviceType|[deviceType](../resources/intune-devices-devicetype.md)|Platform of the device. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md). 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`.|
|complianceState|[complianceState](../resources/intune-devices-compliancestate.md)|Compliance state of the device. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md). Possible values are: `unknown`, `compliant`, `noncompliant`, `conflict`, `error`, `inGracePeriod`, `configManager`.| |jailBroken|String|whether the device is jail broken or rooted. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)| |managementAgent|[managementAgentType](../resources/intune-shared-managementagenttype.md)|Management channel of the device. Intune, EAS, etc. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md). Possible values are: `eas`, `mdm`, `easMdm`, `intuneClient`, `easIntuneClient`, `configurationManagerClient`, `configurationManagerClientMdm`, `configurationManagerClientMdmEas`, `unknown`, `jamf`, `googleCloudDevicePolicyController`, `microsoft365ManagedMdm`, `msSense`, `intuneAosp`.|
The following table shows the properties that are required when you create the w
|azureADRegistered|Boolean|Whether the device is Azure Active Directory registered. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)| |deviceEnrollmentType|[deviceEnrollmentType](../resources/intune-devices-deviceenrollmenttype.md)|Enrollment type of the device. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md). Possible values are: `unknown`, `userEnrollment`, `deviceEnrollmentManager`, `appleBulkWithUser`, `appleBulkWithoutUser`, `windowsAzureADJoin`, `windowsBulkUserless`, `windowsAutoEnrollment`, `windowsBulkAzureDomainJoin`, `windowsCoManagement`, `windowsAzureADJoinUsingDeviceAuth`, `appleUserEnrollment`, `appleUserEnrollmentWithServiceAccount`, `azureAdJoinUsingAzureVmExtension`, `androidEnterpriseDedicatedDevice`, `androidEnterpriseFullyManaged`, `androidEnterpriseCorporateWorkProfile`.| |lostModeState|[lostModeState](../resources/intune-devices-lostmodestate.md)|Indicates if Lost mode is enabled or disabled. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md). Possible values are: `disabled`, `enabled`.|
-|activationLockBypassCode|String|Code that allows the Activation Lock on a device to be bypassed. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)|
+|activationLockBypassCode|String|The code that allows the Activation Lock on managed device to be bypassed. Default, is Null (Non-Default property) for this property when returned as part of managedDevice entity in LIST call. Individual GET call with select query options is needed to retrieve actual values. Supports: $select. $Search is not supported. Read-only. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)|
|emailAddress|String|Email(s) for the user associated with the device. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)| |azureActiveDirectoryDeviceId|String|The unique identifier for the Azure Active Directory device. Read only. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)| |azureADDeviceId|String|The unique identifier for the Azure Active Directory device. Read only. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)|
The following table shows the properties that are required when you create the w
|notes|String|Notes on the device created by IT Admin. Return default value null in LIST managedDevices. Real value only returned in singel device GET call with device id and included in select parameter. Supports: $select. $Search is not supported. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)| |configurationManagerClientHealthState|[configurationManagerClientHealthState](../resources/intune-devices-configurationmanagerclienthealthstate.md)|Configuration manager client health state, valid only for devices managed by MDM/ConfigMgr Agent Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)| |configurationManagerClientInformation|[configurationManagerClientInformation](../resources/intune-devices-configurationmanagerclientinformation.md)|Configuration manager client information, valid only for devices managed, duel-managed or tri-managed by ConfigMgr Agent Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)|
-|ethernetMacAddress|String|Ethernet MAC. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)|
+|ethernetMacAddress|String|Ethernet MAC. Default, is Null (Non-Default property) for this property when returned as part of managedDevice entity. Individual get call with select query options is needed to retrieve actual values. Example: deviceManagement/managedDevices({managedDeviceId})?$select=ethernetMacAddress Supports: $select. $Search is not supported. Read-only. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)|
|physicalMemoryInBytes|Int64|Total Memory in Bytes. Return default value 0 in LIST managedDevices. Real value only returned in singel device GET call with device id and included in select parameter. Supports: $select. Default value is 0. Read-only. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)| |processorArchitecture|[managedDeviceArchitecture](../resources/intune-devices-manageddevicearchitecture.md)|Processor architecture. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md). Possible values are: `unknown`, `x86`, `x64`, `arm`, `arM64`.| |specificationVersion|String|Specification version. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)| |joinType|[joinType](../resources/intune-devices-jointype.md)|Device join type Inherited from [managedDevice](../resources/intune-devices-manageddevice.md). Possible values are: `unknown`, `azureADJoined`, `azureADRegistered`, `hybridAzureADJoined`.| |skuFamily|String|Device sku family Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)|
-|skuNumber|Int32|Device sku number, see also: https://learn.microsoft.com/windows/win32/api/sysinfoapi/nf-sysinfoapi-getproductinfo. Valid values 0 to 2147483647. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)|
+|skuNumber|Int32|Device sku number, see also: https://learn.microsoft.com/en-us/windows/win32/api/sysinfoapi/nf-sysinfoapi-getproductinfo. Valid values 0 to 2147483647. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)|
|managementFeatures|[managedDeviceManagementFeatures](../resources/intune-devices-manageddevicemanagementfeatures.md)|Device management features Inherited from [managedDevice](../resources/intune-devices-manageddevice.md). Possible values are: `none`, `microsoftManagedDesktop`.| |chromeOSDeviceInfo|[chromeOSDeviceProperty](../resources/intune-devices-chromeosdeviceproperty.md) collection|List of properties of the ChromeOS Device. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)| |enrollmentProfileName|String|Name of the enrollment profile assigned to the device. Default value is empty string, indicating no enrollment profile was assgined. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)|
Content-Length: 9194
"deviceFirmwareConfigurationInterfaceManaged": true } ```------
v1.0 Intune Devices Windowsmanageddevice Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-windowsmanageddevice-delete.md
Title: "Delete windowsManagedDevice" description: "Deletes a windowsManagedDevice."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windowsManagedDevice](../resources/intune-devices-windowsmanageddevice.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 Devices Windowsmanageddevice Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-windowsmanageddevice-get.md
Title: "Get windowsManagedDevice" description: "Read properties and relationships of the windowsManagedDevice object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsManagedDevice](../resources/intune-devices-windowsmanageddevice.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: 9637
} } ```-----
v1.0 Intune Devices Windowsmanageddevice List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-windowsmanageddevice-list.md
Title: "List windowsManagedDevices" description: "List properties and relationships of the windowsManagedDevice objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsManagedDevice](../resources/intune-devices-windowsmanageddevice.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: 10075
] } ```-----
v1.0 Intune Devices Windowsmanageddevice Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-windowsmanageddevice-update.md
Title: "Update windowsManagedDevice" description: "Update the properties of a windowsManagedDevice object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windowsManagedDevice](../resources/intune-devices-windowsmanageddevice.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 [
|lastSyncDateTime|DateTimeOffset|The date and time that the device last completed a successful sync with Intune. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)| |chassisType|[chassisType](../resources/intune-devices-chassistype.md)|Chassis type of the device. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md). Possible values are: `unknown`, `desktop`, `laptop`, `worksWorkstation`, `enterpriseServer`, `phone`, `tablet`, `mobileOther`, `mobileUnknown`.| |operatingSystem|String|Operating system of the device. Windows, iOS, etc. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)|
-|deviceType|[deviceType](../resources/intune-shared-devicetype.md)|Platform of the device. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md). 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`.|
+|deviceType|[deviceType](../resources/intune-devices-devicetype.md)|Platform of the device. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md). 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`.|
|complianceState|[complianceState](../resources/intune-devices-compliancestate.md)|Compliance state of the device. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md). Possible values are: `unknown`, `compliant`, `noncompliant`, `conflict`, `error`, `inGracePeriod`, `configManager`.| |jailBroken|String|whether the device is jail broken or rooted. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)| |managementAgent|[managementAgentType](../resources/intune-shared-managementagenttype.md)|Management channel of the device. Intune, EAS, etc. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md). Possible values are: `eas`, `mdm`, `easMdm`, `intuneClient`, `easIntuneClient`, `configurationManagerClient`, `configurationManagerClientMdm`, `configurationManagerClientMdmEas`, `unknown`, `jamf`, `googleCloudDevicePolicyController`, `microsoft365ManagedMdm`, `msSense`, `intuneAosp`.|
The following table shows the properties that are required when you create the [
|azureADRegistered|Boolean|Whether the device is Azure Active Directory registered. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)| |deviceEnrollmentType|[deviceEnrollmentType](../resources/intune-devices-deviceenrollmenttype.md)|Enrollment type of the device. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md). Possible values are: `unknown`, `userEnrollment`, `deviceEnrollmentManager`, `appleBulkWithUser`, `appleBulkWithoutUser`, `windowsAzureADJoin`, `windowsBulkUserless`, `windowsAutoEnrollment`, `windowsBulkAzureDomainJoin`, `windowsCoManagement`, `windowsAzureADJoinUsingDeviceAuth`, `appleUserEnrollment`, `appleUserEnrollmentWithServiceAccount`, `azureAdJoinUsingAzureVmExtension`, `androidEnterpriseDedicatedDevice`, `androidEnterpriseFullyManaged`, `androidEnterpriseCorporateWorkProfile`.| |lostModeState|[lostModeState](../resources/intune-devices-lostmodestate.md)|Indicates if Lost mode is enabled or disabled. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md). Possible values are: `disabled`, `enabled`.|
-|activationLockBypassCode|String|Code that allows the Activation Lock on a device to be bypassed. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)|
+|activationLockBypassCode|String|The code that allows the Activation Lock on managed device to be bypassed. Default, is Null (Non-Default property) for this property when returned as part of managedDevice entity in LIST call. Individual GET call with select query options is needed to retrieve actual values. Supports: $select. $Search is not supported. Read-only. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)|
|emailAddress|String|Email(s) for the user associated with the device. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)| |azureActiveDirectoryDeviceId|String|The unique identifier for the Azure Active Directory device. Read only. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)| |azureADDeviceId|String|The unique identifier for the Azure Active Directory device. Read only. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)|
The following table shows the properties that are required when you create the [
|notes|String|Notes on the device created by IT Admin. Return default value null in LIST managedDevices. Real value only returned in singel device GET call with device id and included in select parameter. Supports: $select. $Search is not supported. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)| |configurationManagerClientHealthState|[configurationManagerClientHealthState](../resources/intune-devices-configurationmanagerclienthealthstate.md)|Configuration manager client health state, valid only for devices managed by MDM/ConfigMgr Agent Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)| |configurationManagerClientInformation|[configurationManagerClientInformation](../resources/intune-devices-configurationmanagerclientinformation.md)|Configuration manager client information, valid only for devices managed, duel-managed or tri-managed by ConfigMgr Agent Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)|
-|ethernetMacAddress|String|Ethernet MAC. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)|
+|ethernetMacAddress|String|Ethernet MAC. Default, is Null (Non-Default property) for this property when returned as part of managedDevice entity. Individual get call with select query options is needed to retrieve actual values. Example: deviceManagement/managedDevices({managedDeviceId})?$select=ethernetMacAddress Supports: $select. $Search is not supported. Read-only. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)|
|physicalMemoryInBytes|Int64|Total Memory in Bytes. Return default value 0 in LIST managedDevices. Real value only returned in singel device GET call with device id and included in select parameter. Supports: $select. Default value is 0. Read-only. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)| |processorArchitecture|[managedDeviceArchitecture](../resources/intune-devices-manageddevicearchitecture.md)|Processor architecture. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md). Possible values are: `unknown`, `x86`, `x64`, `arm`, `arM64`.| |specificationVersion|String|Specification version. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)| |joinType|[joinType](../resources/intune-devices-jointype.md)|Device join type Inherited from [managedDevice](../resources/intune-devices-manageddevice.md). Possible values are: `unknown`, `azureADJoined`, `azureADRegistered`, `hybridAzureADJoined`.| |skuFamily|String|Device sku family Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)|
-|skuNumber|Int32|Device sku number, see also: https://learn.microsoft.com/windows/win32/api/sysinfoapi/nf-sysinfoapi-getproductinfo. Valid values 0 to 2147483647. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)|
+|skuNumber|Int32|Device sku number, see also: https://learn.microsoft.com/en-us/windows/win32/api/sysinfoapi/nf-sysinfoapi-getproductinfo. Valid values 0 to 2147483647. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)|
|managementFeatures|[managedDeviceManagementFeatures](../resources/intune-devices-manageddevicemanagementfeatures.md)|Device management features Inherited from [managedDevice](../resources/intune-devices-manageddevice.md). Possible values are: `none`, `microsoftManagedDesktop`.| |chromeOSDeviceInfo|[chromeOSDeviceProperty](../resources/intune-devices-chromeosdeviceproperty.md) collection|List of properties of the ChromeOS Device. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)| |enrollmentProfileName|String|Name of the enrollment profile assigned to the device. Default value is empty string, indicating no enrollment profile was assgined. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)|
Content-Length: 9194
"deviceFirmwareConfigurationInterfaceManaged": true } ```------
v1.0 Intune Devices Windowsmanagementapp Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-windowsmanagementapp-get.md
Title: "Get windowsManagementApp" description: "Read properties and relationships of the windowsManagementApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsManagementApp](../resources/intune-devices-windowsmanagementapp.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
} } ```-----
v1.0 Intune Devices Windowsmanagementapp Setasmanagedinstaller https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-windowsmanagementapp-setasmanagedinstaller.md
Title: "setAsManagedInstaller action" description: "Set the Managed Installer status for the caller tenant"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Set the Managed Installer status for the caller tenant
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Devices Windowsmanagementapp Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-windowsmanagementapp-update.md
Title: "Update windowsManagementApp" description: "Update the properties of a windowsManagementApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windowsManagementApp](../resources/intune-devices-windowsmanagementapp.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: 284
"managedInstallerConfiguredDateTime": "Managed Installer Configured Date Time value" } ```-----
v1.0 Intune Devices Windowsmanagementapphealthstate Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-windowsmanagementapphealthstate-create.md
Title: "Create windowsManagementAppHealthState" description: "Create a new windowsManagementAppHealthState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windowsManagementAppHealthState](../resources/intune-devices-windowsmanagementapphealthstate.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: 349
"deviceOSVersion": "Device OSVersion value" } ```-----
v1.0 Intune Devices Windowsmanagementapphealthstate Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-windowsmanagementapphealthstate-delete.md
Title: "Delete windowsManagementAppHealthState" description: "Deletes a windowsManagementAppHealthState."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windowsManagementAppHealthState](../resources/intune-devices-windowsmanagementapphealthstate.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 Devices Windowsmanagementapphealthstate Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-windowsmanagementapphealthstate-get.md
Title: "Get windowsManagementAppHealthState" description: "Read properties and relationships of the windowsManagementAppHealthState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsManagementAppHealthState](../resources/intune-devices-windowsmanagementapphealthstate.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 Devices Windowsmanagementapphealthstate List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-windowsmanagementapphealthstate-list.md
Title: "List windowsManagementAppHealthStates" description: "List properties and relationships of the windowsManagementAppHealthState objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsManagementAppHealthState](../resources/intune-devices-windowsmanagementapphealthstate.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: 410
] } ```-----
v1.0 Intune Devices Windowsmanagementapphealthstate Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-windowsmanagementapphealthstate-update.md
Title: "Update windowsManagementAppHealthState" description: "Update the properties of a windowsManagementAppHealthState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windowsManagementAppHealthState](../resources/intune-devices-windowsmanagementapphealthstate.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: 349
"deviceOSVersion": "Device OSVersion value" } ```-----
v1.0 Intune Devices Windowsprotectionstate Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-windowsprotectionstate-get.md
Title: "Get windowsProtectionState" description: "Read properties and relationships of the windowsProtectionState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsProtectionState](../resources/intune-devices-windowsprotectionstate.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: 1083
} } ```-----
v1.0 Intune Devices Windowsprotectionstate Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-devices-windowsprotectionstate-update.md
Title: "Update windowsProtectionState" description: "Update the properties of a windowsProtectionState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windowsProtectionState](../resources/intune-devices-windowsprotectionstate.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
"tamperProtectionEnabled": true } ```-----
v1.0 Intune Enrollment Activedirectorywindowsautopilotdeploymentprofile Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-activedirectorywindowsautopilotdeploymentprofile-create.md
Title: "Create activeDirectoryWindowsAutopilotDeploymentProfile" description: "Create a new activeDirectoryWindowsAutopilotDeploymentProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [activeDirectoryWindowsAutopilotDeploymentProfile](../resources/intune-enrollment-activedirectorywindowsautopilotdeploymentprofile.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: 1454
"hybridAzureADJoinSkipConnectivityCheck": true } ```-----
v1.0 Intune Enrollment Activedirectorywindowsautopilotdeploymentprofile Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-activedirectorywindowsautopilotdeploymentprofile-delete.md
Title: "Delete activeDirectoryWindowsAutopilotDeploymentProfile" description: "Deletes a activeDirectoryWindowsAutopilotDeploymentProfile."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [activeDirectoryWindowsAutopilotDeploymentProfile](../resources/intune-enrollment-activedirectorywindowsautopilotdeploymentprofile.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 Enrollment Activedirectorywindowsautopilotdeploymentprofile Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-activedirectorywindowsautopilotdeploymentprofile-get.md
Title: "Get activeDirectoryWindowsAutopilotDeploymentProfile" description: "Read properties and relationships of the activeDirectoryWindowsAutopilotDeploymentProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [activeDirectoryWindowsAutopilotDeploymentProfile](../resources/intune-enrollment-activedirectorywindowsautopilotdeploymentprofile.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: 1543
} } ```-----
v1.0 Intune Enrollment Activedirectorywindowsautopilotdeploymentprofile List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-activedirectorywindowsautopilotdeploymentprofile-list.md
Title: "List activeDirectoryWindowsAutopilotDeploymentProfiles" description: "List properties and relationships of the activeDirectoryWindowsAutopilotDeploymentProfile objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [activeDirectoryWindowsAutopilotDeploymentProfile](../resources/intune-enrollment-activedirectorywindowsautopilotdeploymentprofile.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: 1627
] } ```-----
v1.0 Intune Enrollment Activedirectorywindowsautopilotdeploymentprofile Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-activedirectorywindowsautopilotdeploymentprofile-update.md
Title: "Update activeDirectoryWindowsAutopilotDeploymentProfile" description: "Update the properties of a activeDirectoryWindowsAutopilotDeploymentProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [activeDirectoryWindowsAutopilotDeploymentProfile](../resources/intune-enrollment-activedirectorywindowsautopilotdeploymentprofile.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: 1454
"hybridAzureADJoinSkipConnectivityCheck": true } ```-----
v1.0 Intune Enrollment Appleenrollmentprofileassignment Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-appleenrollmentprofileassignment-create.md
Title: "Create appleEnrollmentProfileAssignment" description: "Create a new appleEnrollmentProfileAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [appleEnrollmentProfileAssignment](../resources/intune-enrollment-appleenrollmentprofileassignment.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: 440
} } ```-----
v1.0 Intune Enrollment Appleenrollmentprofileassignment Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-appleenrollmentprofileassignment-delete.md
Title: "Delete appleEnrollmentProfileAssignment" description: "Deletes a appleEnrollmentProfileAssignment."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [appleEnrollmentProfileAssignment](../resources/intune-enrollment-appleenrollmentprofileassignment.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 Enrollment Appleenrollmentprofileassignment Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-appleenrollmentprofileassignment-get.md
Title: "Get appleEnrollmentProfileAssignment" description: "Read properties and relationships of the appleEnrollmentProfileAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [appleEnrollmentProfileAssignment](../resources/intune-enrollment-appleenrollmentprofileassignment.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: 475
} } ```-----
v1.0 Intune Enrollment Appleenrollmentprofileassignment List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-appleenrollmentprofileassignment-list.md
Title: "List appleEnrollmentProfileAssignments" description: "List properties and relationships of the appleEnrollmentProfileAssignment objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [appleEnrollmentProfileAssignment](../resources/intune-enrollment-appleenrollmentprofileassignment.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: 505
] } ```-----
v1.0 Intune Enrollment Appleenrollmentprofileassignment Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-appleenrollmentprofileassignment-update.md
Title: "Update appleEnrollmentProfileAssignment" description: "Update the properties of a appleEnrollmentProfileAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [appleEnrollmentProfileAssignment](../resources/intune-enrollment-appleenrollmentprofileassignment.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: 440
} } ```-----
v1.0 Intune Enrollment Appleuserinitiatedenrollmentprofile Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-appleuserinitiatedenrollmentprofile-create.md
Title: "Create appleUserInitiatedEnrollmentProfile" description: "Create a new appleUserInitiatedEnrollmentProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [appleUserInitiatedEnrollmentProfile](../resources/intune-enrollment-appleuserinitiatedenrollmentprofile.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: 611
"lastModifiedDateTime": "2017-01-01T00:00:35.1329464-08:00" } ```-----
v1.0 Intune Enrollment Appleuserinitiatedenrollmentprofile Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-appleuserinitiatedenrollmentprofile-delete.md
Title: "Delete appleUserInitiatedEnrollmentProfile" description: "Deletes a appleUserInitiatedEnrollmentProfile."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [appleUserInitiatedEnrollmentProfile](../resources/intune-enrollment-appleuserinitiatedenrollmentprofile.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 Enrollment Appleuserinitiatedenrollmentprofile Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-appleuserinitiatedenrollmentprofile-get.md
Title: "Get appleUserInitiatedEnrollmentProfile" description: "Read properties and relationships of the appleUserInitiatedEnrollmentProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [appleUserInitiatedEnrollmentProfile](../resources/intune-enrollment-appleuserinitiatedenrollmentprofile.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: 662
} } ```-----
v1.0 Intune Enrollment Appleuserinitiatedenrollmentprofile List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-appleuserinitiatedenrollmentprofile-list.md
Title: "List appleUserInitiatedEnrollmentProfiles" description: "List properties and relationships of the appleUserInitiatedEnrollmentProfile objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [appleUserInitiatedEnrollmentProfile](../resources/intune-enrollment-appleuserinitiatedenrollmentprofile.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: 708
] } ```-----
v1.0 Intune Enrollment Appleuserinitiatedenrollmentprofile Setpriority https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-appleuserinitiatedenrollmentprofile-setpriority.md
Title: "setPriority 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 Enrollment Appleuserinitiatedenrollmentprofile Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-appleuserinitiatedenrollmentprofile-update.md
Title: "Update appleUserInitiatedEnrollmentProfile" description: "Update the properties of a appleUserInitiatedEnrollmentProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [appleUserInitiatedEnrollmentProfile](../resources/intune-enrollment-appleuserinitiatedenrollmentprofile.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: 611
"lastModifiedDateTime": "2017-01-01T00:00:35.1329464-08:00" } ```-----
v1.0 Intune Enrollment Azureadwindowsautopilotdeploymentprofile Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-azureadwindowsautopilotdeploymentprofile-create.md
Title: "Create azureADWindowsAutopilotDeploymentProfile" description: "Create a new azureADWindowsAutopilotDeploymentProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [azureADWindowsAutopilotDeploymentProfile](../resources/intune-enrollment-azureadwindowsautopilotdeploymentprofile.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: 1395
"managementServiceAppId": "Management Service App Id value" } ```-----
v1.0 Intune Enrollment Azureadwindowsautopilotdeploymentprofile Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-azureadwindowsautopilotdeploymentprofile-delete.md
Title: "Delete azureADWindowsAutopilotDeploymentProfile" description: "Deletes a azureADWindowsAutopilotDeploymentProfile."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [azureADWindowsAutopilotDeploymentProfile](../resources/intune-enrollment-azureadwindowsautopilotdeploymentprofile.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 Enrollment Azureadwindowsautopilotdeploymentprofile Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-azureadwindowsautopilotdeploymentprofile-get.md
Title: "Get azureADWindowsAutopilotDeploymentProfile" description: "Read properties and relationships of the azureADWindowsAutopilotDeploymentProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [azureADWindowsAutopilotDeploymentProfile](../resources/intune-enrollment-azureadwindowsautopilotdeploymentprofile.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: 1482
} } ```-----
v1.0 Intune Enrollment Azureadwindowsautopilotdeploymentprofile List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-azureadwindowsautopilotdeploymentprofile-list.md
Title: "List azureADWindowsAutopilotDeploymentProfiles" description: "List properties and relationships of the azureADWindowsAutopilotDeploymentProfile objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [azureADWindowsAutopilotDeploymentProfile](../resources/intune-enrollment-azureadwindowsautopilotdeploymentprofile.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: 1564
] } ```-----
v1.0 Intune Enrollment Azureadwindowsautopilotdeploymentprofile Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-azureadwindowsautopilotdeploymentprofile-update.md
Title: "Update azureADWindowsAutopilotDeploymentProfile" description: "Update the properties of a azureADWindowsAutopilotDeploymentProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [azureADWindowsAutopilotDeploymentProfile](../resources/intune-enrollment-azureadwindowsautopilotdeploymentprofile.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: 1395
"managementServiceAppId": "Management Service App Id value" } ```-----
v1.0 Intune Enrollment Depenrollmentbaseprofile Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-depenrollmentbaseprofile-get.md
Title: "Get depEnrollmentBaseProfile" description: "Read properties and relationships of the depEnrollmentBaseProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.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: 1151
+Content-Length: 1218
{ "value": {
Content-Length: 1151
"privacyPaneDisabled": true, "screenTimeScreenDisabled": true, "deviceNameTemplate": "Device Name Template value",
- "configurationWebUrl": true
+ "configurationWebUrl": true,
+ "enabledSkipKeys": [
+ "Enabled Skip Keys value"
+ ]
} } ```-----
v1.0 Intune Enrollment Depenrollmentbaseprofile List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-depenrollmentbaseprofile-list.md
Title: "List depEnrollmentBaseProfiles" description: "List properties and relationships of the depEnrollmentBaseProfile objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.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: 1219
+Content-Length: 1292
{ "value": [
Content-Length: 1219
"privacyPaneDisabled": true, "screenTimeScreenDisabled": true, "deviceNameTemplate": "Device Name Template value",
- "configurationWebUrl": true
+ "configurationWebUrl": true,
+ "enabledSkipKeys": [
+ "Enabled Skip Keys value"
+ ]
} ] } ```-----
v1.0 Intune Enrollment Depenrollmentprofile Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-depenrollmentprofile-create.md
Title: "Create depEnrollmentProfile" description: "Create a new depEnrollmentProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [depEnrollmentProfile](../resources/intune-enrollment-depenrollmentprofile.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 d
|enableAuthenticationViaCompanyPortal|Boolean|Indicates to authenticate with Apple Setup Assistant instead of Company Portal. Inherited from [enrollmentProfile](../resources/intune-enrollment-enrollmentprofile.md)| |requireCompanyPortalOnSetupAssistantEnrolledDevices|Boolean|Indicates that Company Portal is required on setup assistant enrolled devices Inherited from [enrollmentProfile](../resources/intune-enrollment-enrollmentprofile.md)| |isDefault|Boolean|Indicates if this is the default profile|
-|supervisedModeEnabled|Boolean|Supervised mode, True to enable, false otherwise. See https://learn.microsoft.com/intune/deploy-use/enroll-devices-in-microsoft-intune for additional information.|
+|supervisedModeEnabled|Boolean|Supervised mode, True to enable, false otherwise. See https://learn.microsoft.com/en-us/intune/deploy-use/enroll-devices-in-microsoft-intune for additional information.|
|supportDepartment|String|Support department information| |passCodeDisabled|Boolean|Indicates if Passcode setup pane is disabled| |isMandatory|Boolean|Indicates if the profile is mandatory|
Content-Length: 1403
"enableSharedIPad": true } ```------
v1.0 Intune Enrollment Depenrollmentprofile Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-depenrollmentprofile-delete.md
Title: "Delete depEnrollmentProfile" description: "Deletes a depEnrollmentProfile."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [depEnrollmentProfile](../resources/intune-enrollment-depenrollmentprofile.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 Enrollment Depenrollmentprofile Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-depenrollmentprofile-get.md
Title: "Get depEnrollmentProfile" description: "Read properties and relationships of the depEnrollmentProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [depEnrollmentProfile](../resources/intune-enrollment-depenrollmentprofile.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: 1498
} } ```-----
v1.0 Intune Enrollment Depenrollmentprofile List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-depenrollmentprofile-list.md
Title: "List depEnrollmentProfiles" description: "List properties and relationships of the depEnrollmentProfile objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [depEnrollmentProfile](../resources/intune-enrollment-depenrollmentprofile.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: 1588
] } ```-----
v1.0 Intune Enrollment Depenrollmentprofile Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-depenrollmentprofile-update.md
Title: "Update depEnrollmentProfile" description: "Update the properties of a depEnrollmentProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [depEnrollmentProfile](../resources/intune-enrollment-depenrollmentprofile.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 [
|enableAuthenticationViaCompanyPortal|Boolean|Indicates to authenticate with Apple Setup Assistant instead of Company Portal. Inherited from [enrollmentProfile](../resources/intune-enrollment-enrollmentprofile.md)| |requireCompanyPortalOnSetupAssistantEnrolledDevices|Boolean|Indicates that Company Portal is required on setup assistant enrolled devices Inherited from [enrollmentProfile](../resources/intune-enrollment-enrollmentprofile.md)| |isDefault|Boolean|Indicates if this is the default profile|
-|supervisedModeEnabled|Boolean|Supervised mode, True to enable, false otherwise. See https://learn.microsoft.com/intune/deploy-use/enroll-devices-in-microsoft-intune for additional information.|
+|supervisedModeEnabled|Boolean|Supervised mode, True to enable, false otherwise. See https://learn.microsoft.com/en-us/intune/deploy-use/enroll-devices-in-microsoft-intune for additional information.|
|supportDepartment|String|Support department information| |passCodeDisabled|Boolean|Indicates if Passcode setup pane is disabled| |isMandatory|Boolean|Indicates if the profile is mandatory|
Content-Length: 1403
"enableSharedIPad": true } ```------
v1.0 Intune Enrollment Depiosenrollmentprofile Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-depiosenrollmentprofile-create.md
Title: "Create depIOSEnrollmentProfile" description: "Create a new depIOSEnrollmentProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [depIOSEnrollmentProfile](../resources/intune-enrollment-depiosenrollmentprofile.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 d
|enableAuthenticationViaCompanyPortal|Boolean|Indicates to authenticate with Apple Setup Assistant instead of Company Portal. Inherited from [enrollmentProfile](../resources/intune-enrollment-enrollmentprofile.md)| |requireCompanyPortalOnSetupAssistantEnrolledDevices|Boolean|Indicates that Company Portal is required on setup assistant enrolled devices Inherited from [enrollmentProfile](../resources/intune-enrollment-enrollmentprofile.md)| |isDefault|Boolean|Indicates if this is the default profile Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)|
-|supervisedModeEnabled|Boolean|Supervised mode, True to enable, false otherwise. See https://learn.microsoft.com/intune/deploy-use/enroll-devices-in-microsoft-intune for additional information. Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)|
+|supervisedModeEnabled|Boolean|Supervised mode, True to enable, false otherwise. See https://learn.microsoft.com/en-us/intune/deploy-use/enroll-devices-in-microsoft-intune for additional information. Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)|
|supportDepartment|String|Support department information Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)| |isMandatory|Boolean|Indicates if the profile is mandatory Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)| |locationDisabled|Boolean|Indicates if Location service setup pane is disabled Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)|
The following table shows the properties that are required when you create the d
|screenTimeScreenDisabled|Boolean|Indicates if screen timeout setup is disabled Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)| |deviceNameTemplate|String|Sets a literal or name pattern. Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)| |configurationWebUrl|Boolean|URL for setup assistant login Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)|
+|enabledSkipKeys|String collection|enabledSkipKeys contains all the enabled skip keys as strings Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)|
|iTunesPairingMode|[iTunesPairingMode](../resources/intune-enrollment-itunespairingmode.md)|Indicates the iTunes pairing mode. Possible values are: `disallow`, `allow`, `requiresCertificate`.| |managementCertificates|[managementCertificateWithThumbprint](../resources/intune-enrollment-managementcertificatewiththumbprint.md) collection|Management certificates for Apple Configurator| |restoreFromAndroidDisabled|Boolean|Indicates if Restore from Android is disabled|
The following table shows the properties that are required when you create the d
|userSessionTimeoutInSeconds|Int32|Indicates timeout of temporary session| |passcodeLockGracePeriodInSeconds|Int32|Indicates timeout before locked screen requires the user to enter the device passocde to unlock it| |carrierActivationUrl|String|Carrier URL for activating device eSIM.|
-|userlessSharedAadModeEnabled|Boolean|Indicates that this apple device is designated to support 'shared device mode' scenarios. This is distinct from the 'shared iPad' scenario. See https://learn.microsoft.com/mem/intune/enrollment/device-enrollment-shared-ios|
+|userlessSharedAadModeEnabled|Boolean|Indicates that this apple device is designated to support 'shared device mode' scenarios. This is distinct from the 'shared iPad' scenario. See https://learn.microsoft.com/en-us/mem/intune/enrollment/device-enrollment-shared-ios|
Here is an example of the request.
``` http POST https://graph.microsoft.com/beta/deviceManagement/depOnboardingSettings/{depOnboardingSettingId}/enrollmentProfiles Content-type: application/json
-Content-length: 2377
+Content-length: 2438
{ "@odata.type": "#microsoft.graph.depIOSEnrollmentProfile",
Content-length: 2377
"screenTimeScreenDisabled": true, "deviceNameTemplate": "Device Name Template value", "configurationWebUrl": true,
+ "enabledSkipKeys": [
+ "Enabled Skip Keys value"
+ ],
"iTunesPairingMode": "allow", "managementCertificates": [ {
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: 2426
+Content-Length: 2487
{ "@odata.type": "#microsoft.graph.depIOSEnrollmentProfile",
Content-Length: 2426
"screenTimeScreenDisabled": true, "deviceNameTemplate": "Device Name Template value", "configurationWebUrl": true,
+ "enabledSkipKeys": [
+ "Enabled Skip Keys value"
+ ],
"iTunesPairingMode": "allow", "managementCertificates": [ {
Content-Length: 2426
"userlessSharedAadModeEnabled": true } ```------
v1.0 Intune Enrollment Depiosenrollmentprofile Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-depiosenrollmentprofile-delete.md
Title: "Delete depIOSEnrollmentProfile" description: "Deletes a depIOSEnrollmentProfile."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [depIOSEnrollmentProfile](../resources/intune-enrollment-depiosenrollmentprofile.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 Enrollment Depiosenrollmentprofile Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-depiosenrollmentprofile-get.md
Title: "Get depIOSEnrollmentProfile" description: "Read properties and relationships of the depIOSEnrollmentProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [depIOSEnrollmentProfile](../resources/intune-enrollment-depiosenrollmentprofile.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: 2569
+Content-Length: 2636
{ "value": {
Content-Length: 2569
"screenTimeScreenDisabled": true, "deviceNameTemplate": "Device Name Template value", "configurationWebUrl": true,
+ "enabledSkipKeys": [
+ "Enabled Skip Keys value"
+ ],
"iTunesPairingMode": "allow", "managementCertificates": [ {
Content-Length: 2569
} } ```-----
v1.0 Intune Enrollment Depiosenrollmentprofile List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-depiosenrollmentprofile-list.md
Title: "List depIOSEnrollmentProfiles" description: "List properties and relationships of the depIOSEnrollmentProfile objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [depIOSEnrollmentProfile](../resources/intune-enrollment-depiosenrollmentprofile.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: 2707
+Content-Length: 2780
{ "value": [
Content-Length: 2707
"screenTimeScreenDisabled": true, "deviceNameTemplate": "Device Name Template value", "configurationWebUrl": true,
+ "enabledSkipKeys": [
+ "Enabled Skip Keys value"
+ ],
"iTunesPairingMode": "allow", "managementCertificates": [ {
Content-Length: 2707
] } ```-----
v1.0 Intune Enrollment Depiosenrollmentprofile Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-depiosenrollmentprofile-update.md
Title: "Update depIOSEnrollmentProfile" description: "Update the properties of a depIOSEnrollmentProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [depIOSEnrollmentProfile](../resources/intune-enrollment-depiosenrollmentprofile.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 [
|enableAuthenticationViaCompanyPortal|Boolean|Indicates to authenticate with Apple Setup Assistant instead of Company Portal. Inherited from [enrollmentProfile](../resources/intune-enrollment-enrollmentprofile.md)| |requireCompanyPortalOnSetupAssistantEnrolledDevices|Boolean|Indicates that Company Portal is required on setup assistant enrolled devices Inherited from [enrollmentProfile](../resources/intune-enrollment-enrollmentprofile.md)| |isDefault|Boolean|Indicates if this is the default profile Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)|
-|supervisedModeEnabled|Boolean|Supervised mode, True to enable, false otherwise. See https://learn.microsoft.com/intune/deploy-use/enroll-devices-in-microsoft-intune for additional information. Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)|
+|supervisedModeEnabled|Boolean|Supervised mode, True to enable, false otherwise. See https://learn.microsoft.com/en-us/intune/deploy-use/enroll-devices-in-microsoft-intune for additional information. Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)|
|supportDepartment|String|Support department information Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)| |isMandatory|Boolean|Indicates if the profile is mandatory Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)| |locationDisabled|Boolean|Indicates if Location service setup pane is disabled Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)|
The following table shows the properties that are required when you create the [
|screenTimeScreenDisabled|Boolean|Indicates if screen timeout setup is disabled Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)| |deviceNameTemplate|String|Sets a literal or name pattern. Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)| |configurationWebUrl|Boolean|URL for setup assistant login Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)|
+|enabledSkipKeys|String collection|enabledSkipKeys contains all the enabled skip keys as strings Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)|
|iTunesPairingMode|[iTunesPairingMode](../resources/intune-enrollment-itunespairingmode.md)|Indicates the iTunes pairing mode. Possible values are: `disallow`, `allow`, `requiresCertificate`.| |managementCertificates|[managementCertificateWithThumbprint](../resources/intune-enrollment-managementcertificatewiththumbprint.md) collection|Management certificates for Apple Configurator| |restoreFromAndroidDisabled|Boolean|Indicates if Restore from Android is disabled|
The following table shows the properties that are required when you create the [
|userSessionTimeoutInSeconds|Int32|Indicates timeout of temporary session| |passcodeLockGracePeriodInSeconds|Int32|Indicates timeout before locked screen requires the user to enter the device passocde to unlock it| |carrierActivationUrl|String|Carrier URL for activating device eSIM.|
-|userlessSharedAadModeEnabled|Boolean|Indicates that this apple device is designated to support 'shared device mode' scenarios. This is distinct from the 'shared iPad' scenario. See https://learn.microsoft.com/mem/intune/enrollment/device-enrollment-shared-ios|
+|userlessSharedAadModeEnabled|Boolean|Indicates that this apple device is designated to support 'shared device mode' scenarios. This is distinct from the 'shared iPad' scenario. See https://learn.microsoft.com/en-us/mem/intune/enrollment/device-enrollment-shared-ios|
Here is an example of the request.
``` http PATCH https://graph.microsoft.com/beta/deviceManagement/depOnboardingSettings/{depOnboardingSettingId}/defaultIosEnrollmentProfile Content-type: application/json
-Content-length: 2377
+Content-length: 2438
{ "@odata.type": "#microsoft.graph.depIOSEnrollmentProfile",
Content-length: 2377
"screenTimeScreenDisabled": true, "deviceNameTemplate": "Device Name Template value", "configurationWebUrl": true,
+ "enabledSkipKeys": [
+ "Enabled Skip Keys value"
+ ],
"iTunesPairingMode": "allow", "managementCertificates": [ {
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: 2426
+Content-Length: 2487
{ "@odata.type": "#microsoft.graph.depIOSEnrollmentProfile",
Content-Length: 2426
"screenTimeScreenDisabled": true, "deviceNameTemplate": "Device Name Template value", "configurationWebUrl": true,
+ "enabledSkipKeys": [
+ "Enabled Skip Keys value"
+ ],
"iTunesPairingMode": "allow", "managementCertificates": [ {
Content-Length: 2426
"userlessSharedAadModeEnabled": true } ```------
v1.0 Intune Enrollment Depmacosenrollmentprofile Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-depmacosenrollmentprofile-create.md
Title: "Create depMacOSEnrollmentProfile" description: "Create a new depMacOSEnrollmentProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [depMacOSEnrollmentProfile](../resources/intune-enrollment-depmacosenrollmentprofile.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 d
|enableAuthenticationViaCompanyPortal|Boolean|Indicates to authenticate with Apple Setup Assistant instead of Company Portal. Inherited from [enrollmentProfile](../resources/intune-enrollment-enrollmentprofile.md)| |requireCompanyPortalOnSetupAssistantEnrolledDevices|Boolean|Indicates that Company Portal is required on setup assistant enrolled devices Inherited from [enrollmentProfile](../resources/intune-enrollment-enrollmentprofile.md)| |isDefault|Boolean|Indicates if this is the default profile Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)|
-|supervisedModeEnabled|Boolean|Supervised mode, True to enable, false otherwise. See https://learn.microsoft.com/intune/deploy-use/enroll-devices-in-microsoft-intune for additional information. Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)|
+|supervisedModeEnabled|Boolean|Supervised mode, True to enable, false otherwise. See https://learn.microsoft.com/en-us/intune/deploy-use/enroll-devices-in-microsoft-intune for additional information. Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)|
|supportDepartment|String|Support department information Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)| |isMandatory|Boolean|Indicates if the profile is mandatory Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)| |locationDisabled|Boolean|Indicates if Location service setup pane is disabled Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)|
The following table shows the properties that are required when you create the d
|screenTimeScreenDisabled|Boolean|Indicates if screen timeout setup is disabled Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)| |deviceNameTemplate|String|Sets a literal or name pattern. Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)| |configurationWebUrl|Boolean|URL for setup assistant login Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)|
+|enabledSkipKeys|String collection|enabledSkipKeys contains all the enabled skip keys as strings Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)|
|registrationDisabled|Boolean|Indicates if registration is disabled| |fileVaultDisabled|Boolean|Indicates if file vault is disabled| |iCloudDiagnosticsDisabled|Boolean|Indicates if iCloud Analytics screen is disabled|
Here is an example of the request.
``` http POST https://graph.microsoft.com/beta/deviceManagement/depOnboardingSettings/{depOnboardingSettingId}/enrollmentProfiles Content-type: application/json
-Content-length: 1944
+Content-length: 2005
{ "@odata.type": "#microsoft.graph.depMacOSEnrollmentProfile",
Content-length: 1944
"screenTimeScreenDisabled": true, "deviceNameTemplate": "Device Name Template value", "configurationWebUrl": true,
+ "enabledSkipKeys": [
+ "Enabled Skip Keys value"
+ ],
"registrationDisabled": true, "fileVaultDisabled": true, "iCloudDiagnosticsDisabled": 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: 1993
+Content-Length: 2054
{ "@odata.type": "#microsoft.graph.depMacOSEnrollmentProfile",
Content-Length: 1993
"screenTimeScreenDisabled": true, "deviceNameTemplate": "Device Name Template value", "configurationWebUrl": true,
+ "enabledSkipKeys": [
+ "Enabled Skip Keys value"
+ ],
"registrationDisabled": true, "fileVaultDisabled": true, "iCloudDiagnosticsDisabled": true,
Content-Length: 1993
"enableRestrictEditing": true } ```------
v1.0 Intune Enrollment Depmacosenrollmentprofile Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-depmacosenrollmentprofile-delete.md
Title: "Delete depMacOSEnrollmentProfile" description: "Deletes a depMacOSEnrollmentProfile."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [depMacOSEnrollmentProfile](../resources/intune-enrollment-depmacosenrollmentprofile.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 Enrollment Depmacosenrollmentprofile Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-depmacosenrollmentprofile-get.md
Title: "Get depMacOSEnrollmentProfile" description: "Read properties and relationships of the depMacOSEnrollmentProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [depMacOSEnrollmentProfile](../resources/intune-enrollment-depmacosenrollmentprofile.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: 2112
+Content-Length: 2179
{ "value": {
Content-Length: 2112
"screenTimeScreenDisabled": true, "deviceNameTemplate": "Device Name Template value", "configurationWebUrl": true,
+ "enabledSkipKeys": [
+ "Enabled Skip Keys value"
+ ],
"registrationDisabled": true, "fileVaultDisabled": true, "iCloudDiagnosticsDisabled": true,
Content-Length: 2112
} } ```-----
v1.0 Intune Enrollment Depmacosenrollmentprofile List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-depmacosenrollmentprofile-list.md
Title: "List depMacOSEnrollmentProfiles" description: "List properties and relationships of the depMacOSEnrollmentProfile objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [depMacOSEnrollmentProfile](../resources/intune-enrollment-depmacosenrollmentprofile.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: 2226
+Content-Length: 2299
{ "value": [
Content-Length: 2226
"screenTimeScreenDisabled": true, "deviceNameTemplate": "Device Name Template value", "configurationWebUrl": true,
+ "enabledSkipKeys": [
+ "Enabled Skip Keys value"
+ ],
"registrationDisabled": true, "fileVaultDisabled": true, "iCloudDiagnosticsDisabled": true,
Content-Length: 2226
] } ```-----
v1.0 Intune Enrollment Depmacosenrollmentprofile Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-depmacosenrollmentprofile-update.md
Title: "Update depMacOSEnrollmentProfile" description: "Update the properties of a depMacOSEnrollmentProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [depMacOSEnrollmentProfile](../resources/intune-enrollment-depmacosenrollmentprofile.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 [
|enableAuthenticationViaCompanyPortal|Boolean|Indicates to authenticate with Apple Setup Assistant instead of Company Portal. Inherited from [enrollmentProfile](../resources/intune-enrollment-enrollmentprofile.md)| |requireCompanyPortalOnSetupAssistantEnrolledDevices|Boolean|Indicates that Company Portal is required on setup assistant enrolled devices Inherited from [enrollmentProfile](../resources/intune-enrollment-enrollmentprofile.md)| |isDefault|Boolean|Indicates if this is the default profile Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)|
-|supervisedModeEnabled|Boolean|Supervised mode, True to enable, false otherwise. See https://learn.microsoft.com/intune/deploy-use/enroll-devices-in-microsoft-intune for additional information. Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)|
+|supervisedModeEnabled|Boolean|Supervised mode, True to enable, false otherwise. See https://learn.microsoft.com/en-us/intune/deploy-use/enroll-devices-in-microsoft-intune for additional information. Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)|
|supportDepartment|String|Support department information Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)| |isMandatory|Boolean|Indicates if the profile is mandatory Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)| |locationDisabled|Boolean|Indicates if Location service setup pane is disabled Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)|
The following table shows the properties that are required when you create the [
|screenTimeScreenDisabled|Boolean|Indicates if screen timeout setup is disabled Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)| |deviceNameTemplate|String|Sets a literal or name pattern. Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)| |configurationWebUrl|Boolean|URL for setup assistant login Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)|
+|enabledSkipKeys|String collection|enabledSkipKeys contains all the enabled skip keys as strings Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)|
|registrationDisabled|Boolean|Indicates if registration is disabled| |fileVaultDisabled|Boolean|Indicates if file vault is disabled| |iCloudDiagnosticsDisabled|Boolean|Indicates if iCloud Analytics screen is disabled|
Here is an example of the request.
``` http PATCH https://graph.microsoft.com/beta/deviceManagement/depOnboardingSettings/{depOnboardingSettingId}/defaultMacOsEnrollmentProfile Content-type: application/json
-Content-length: 1944
+Content-length: 2005
{ "@odata.type": "#microsoft.graph.depMacOSEnrollmentProfile",
Content-length: 1944
"screenTimeScreenDisabled": true, "deviceNameTemplate": "Device Name Template value", "configurationWebUrl": true,
+ "enabledSkipKeys": [
+ "Enabled Skip Keys value"
+ ],
"registrationDisabled": true, "fileVaultDisabled": true, "iCloudDiagnosticsDisabled": 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: 1993
+Content-Length: 2054
{ "@odata.type": "#microsoft.graph.depMacOSEnrollmentProfile",
Content-Length: 1993
"screenTimeScreenDisabled": true, "deviceNameTemplate": "Device Name Template value", "configurationWebUrl": true,
+ "enabledSkipKeys": [
+ "Enabled Skip Keys value"
+ ],
"registrationDisabled": true, "fileVaultDisabled": true, "iCloudDiagnosticsDisabled": true,
Content-Length: 1993
"enableRestrictEditing": true } ```------
v1.0 Intune Enrollment Deponboardingsetting Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-deponboardingsetting-create.md
Title: "Create depOnboardingSetting" description: "Create a new depOnboardingSetting object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [depOnboardingSetting](../resources/intune-enrollment-deponboardingsetting.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: 689
] } ```-----
v1.0 Intune Enrollment Deponboardingsetting Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-deponboardingsetting-delete.md
Title: "Delete depOnboardingSetting" description: "Deletes a depOnboardingSetting."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [depOnboardingSetting](../resources/intune-enrollment-deponboardingsetting.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 Enrollment Deponboardingsetting Generateencryptionpublickey https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-deponboardingsetting-generateencryptionpublickey.md
Title: "generateEncryptionPublicKey action" description: "Generate a public key to use to encrypt the Apple device enrollment program token"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Generate a public key to use to encrypt the Apple device enrollment program token
-## Prerequisites
+## Permissions
One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)|
Content-Length: 55
"value": "Generate Encryption Public Key value" } ```-----
v1.0 Intune Enrollment Deponboardingsetting Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-deponboardingsetting-get.md
Title: "Get depOnboardingSetting" description: "Read properties and relationships of the depOnboardingSetting object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [depOnboardingSetting](../resources/intune-enrollment-deponboardingsetting.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: 740
} } ```-----
v1.0 Intune Enrollment Deponboardingsetting Getencryptionpublickey https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-deponboardingsetting-getencryptionpublickey.md
Title: "getEncryptionPublicKey function" description: "Get a public key to use to encrypt the Apple device enrollment program token"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Get a public key to use to encrypt the Apple device enrollment program token
-## Prerequisites
+## Permissions
One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)|
Content-Length: 50
"value": "Get Encryption Public Key value" } ```-----
v1.0 Intune Enrollment Deponboardingsetting Getexpiringvpptokencount https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-deponboardingsetting-getexpiringvpptokencount.md
Title: "getExpiringVppTokenCount 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: 18
"value": 8 } ```-----
v1.0 Intune Enrollment Deponboardingsetting List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-deponboardingsetting-list.md
Title: "List depOnboardingSettings" description: "List properties and relationships of the depOnboardingSetting objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [depOnboardingSetting](../resources/intune-enrollment-deponboardingsetting.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: 786
] } ```-----
v1.0 Intune Enrollment Deponboardingsetting Shareforschooldatasyncservice https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-deponboardingsetting-shareforschooldatasyncservice.md
Title: "shareForSchoolDataSyncService 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 Enrollment Deponboardingsetting Syncwithappledeviceenrollmentprogram https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-deponboardingsetting-syncwithappledeviceenrollmentprogram.md
Title: "syncWithAppleDeviceEnrollmentProgram action" description: "Synchronizes between Apple Device Enrollment Program and Intune"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Synchronizes between Apple Device Enrollment Program and Intune
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Enrollment Deponboardingsetting Unshareforschooldatasyncservice https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-deponboardingsetting-unshareforschooldatasyncservice.md
Title: "unshareForSchoolDataSyncService 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 Enrollment Deponboardingsetting Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-deponboardingsetting-update.md
Title: "Update depOnboardingSetting" description: "Update the properties of a depOnboardingSetting object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [depOnboardingSetting](../resources/intune-enrollment-deponboardingsetting.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: 689
] } ```-----
v1.0 Intune Enrollment Deponboardingsetting Uploaddeptoken https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-deponboardingsetting-uploaddeptoken.md
Title: "uploadDepToken action" description: "Uploads a new Device Enrollment Program token"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Uploads a new Device Enrollment Program token
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Enrollment Devicemanagement Getsuggestedenrollmentlimit https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-devicemanagement-getsuggestedenrollmentlimit.md
Title: "getSuggestedEnrollmentLimit 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: 117
} } ```-----
v1.0 Intune Enrollment Enrollmentprofile Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-enrollmentprofile-create.md
Title: "Create enrollmentProfile" description: "Create a new enrollmentProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [enrollmentProfile](../resources/intune-enrollment-enrollmentprofile.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: 419
"requireCompanyPortalOnSetupAssistantEnrolledDevices": true } ```-----
v1.0 Intune Enrollment Enrollmentprofile Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-enrollmentprofile-delete.md
Title: "Delete enrollmentProfile" description: "Deletes a enrollmentProfile."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [enrollmentProfile](../resources/intune-enrollment-enrollmentprofile.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 Enrollment Enrollmentprofile Exportmobileconfig https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-enrollmentprofile-exportmobileconfig.md
Title: "exportMobileConfig function" description: "Exports the mobile configuration"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Exports the mobile configuration
-## Prerequisites
+## Permissions
One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)|
Content-Length: 45
"value": "Export Mobile Config value" } ```-----
v1.0 Intune Enrollment Enrollmentprofile Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-enrollmentprofile-get.md
Title: "Get enrollmentProfile" description: "Read properties and relationships of the enrollmentProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [enrollmentProfile](../resources/intune-enrollment-enrollmentprofile.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: 454
} } ```-----
v1.0 Intune Enrollment Enrollmentprofile List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-enrollmentprofile-list.md
Title: "List enrollmentProfiles" description: "List properties and relationships of the enrollmentProfile objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [enrollmentProfile](../resources/intune-enrollment-enrollmentprofile.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: 484
] } ```-----
v1.0 Intune Enrollment Enrollmentprofile Setdefaultprofile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-enrollmentprofile-setdefaultprofile.md
Title: "setDefaultProfile 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 Enrollment Enrollmentprofile Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-enrollmentprofile-update.md
Title: "Update enrollmentProfile" description: "Update the properties of a enrollmentProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [enrollmentProfile](../resources/intune-enrollment-enrollmentprofile.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: 419
"requireCompanyPortalOnSetupAssistantEnrolledDevices": true } ```-----
v1.0 Intune Enrollment Enrollmentprofile Updatedeviceprofileassignment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-enrollmentprofile-updatedeviceprofileassignment.md
Title: "updateDeviceProfileAssignment 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 Enrollment Importedappledeviceidentity Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-importedappledeviceidentity-create.md
Title: "Create importedAppleDeviceIdentity" description: "Create a new importedAppleDeviceIdentity object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [importedAppleDeviceIdentity](../resources/intune-enrollment-importedappledeviceidentity.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: 627
"platform": "ios" } ```-----
v1.0 Intune Enrollment Importedappledeviceidentity Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-importedappledeviceidentity-delete.md
Title: "Delete importedAppleDeviceIdentity" description: "Deletes a importedAppleDeviceIdentity."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [importedAppleDeviceIdentity](../resources/intune-enrollment-importedappledeviceidentity.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 Enrollment Importedappledeviceidentity Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-importedappledeviceidentity-get.md
Title: "Get importedAppleDeviceIdentity" description: "Read properties and relationships of the importedAppleDeviceIdentity object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [importedAppleDeviceIdentity](../resources/intune-enrollment-importedappledeviceidentity.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: 672
} } ```-----
v1.0 Intune Enrollment Importedappledeviceidentity Importappledeviceidentitylist https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-importedappledeviceidentity-importappledeviceidentitylist.md
Title: "importAppleDeviceIdentityList 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: 741
] } ```-----
v1.0 Intune Enrollment Importedappledeviceidentity List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-importedappledeviceidentity-list.md
Title: "List importedAppleDeviceIdentities" description: "List properties and relationships of the importedAppleDeviceIdentity objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [importedAppleDeviceIdentity](../resources/intune-enrollment-importedappledeviceidentity.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: 712
] } ```-----
v1.0 Intune Enrollment Importedappledeviceidentity Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-importedappledeviceidentity-update.md
Title: "Update importedAppleDeviceIdentity" description: "Update the properties of a importedAppleDeviceIdentity object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [importedAppleDeviceIdentity](../resources/intune-enrollment-importedappledeviceidentity.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: 627
"platform": "ios" } ```-----
v1.0 Intune Enrollment Importedappledeviceidentityresult Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-importedappledeviceidentityresult-create.md
Title: "Create importedAppleDeviceIdentityResult" description: "Create a new importedAppleDeviceIdentityResult object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [importedAppleDeviceIdentityResult](../resources/intune-enrollment-importedappledeviceidentityresult.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: 652
"status": true } ```-----
v1.0 Intune Enrollment Importedappledeviceidentityresult Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-importedappledeviceidentityresult-delete.md
Title: "Delete importedAppleDeviceIdentityResult" description: "Deletes a importedAppleDeviceIdentityResult."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [importedAppleDeviceIdentityResult](../resources/intune-enrollment-importedappledeviceidentityresult.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 Enrollment Importedappledeviceidentityresult Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-importedappledeviceidentityresult-get.md
Title: "Get importedAppleDeviceIdentityResult" description: "Read properties and relationships of the importedAppleDeviceIdentityResult object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [importedAppleDeviceIdentityResult](../resources/intune-enrollment-importedappledeviceidentityresult.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: 699
} } ```-----
v1.0 Intune Enrollment Importedappledeviceidentityresult List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-importedappledeviceidentityresult-list.md
Title: "List importedAppleDeviceIdentityResults" description: "List properties and relationships of the importedAppleDeviceIdentityResult objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [importedAppleDeviceIdentityResult](../resources/intune-enrollment-importedappledeviceidentityresult.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: 741
] } ```-----
v1.0 Intune Enrollment Importedappledeviceidentityresult Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-importedappledeviceidentityresult-update.md
Title: "Update importedAppleDeviceIdentityResult" description: "Update the properties of a importedAppleDeviceIdentityResult object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [importedAppleDeviceIdentityResult](../resources/intune-enrollment-importedappledeviceidentityresult.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: 652
"status": true } ```-----
v1.0 Intune Enrollment Importeddeviceidentity Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-importeddeviceidentity-create.md
Title: "Create importedDeviceIdentity" description: "Create a new importedDeviceIdentity object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [importedDeviceIdentity](../resources/intune-enrollment-importeddeviceidentity.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: 504
"platform": "ios" } ```-----
v1.0 Intune Enrollment Importeddeviceidentity Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-importeddeviceidentity-delete.md
Title: "Delete importedDeviceIdentity" description: "Deletes a importedDeviceIdentity."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [importedDeviceIdentity](../resources/intune-enrollment-importeddeviceidentity.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 Enrollment Importeddeviceidentity Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-importeddeviceidentity-get.md
Title: "Get importedDeviceIdentity" description: "Read properties and relationships of the importedDeviceIdentity object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [importedDeviceIdentity](../resources/intune-enrollment-importeddeviceidentity.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: 543
} } ```-----
v1.0 Intune Enrollment Importeddeviceidentity Importdeviceidentitylist https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-importeddeviceidentity-importdeviceidentitylist.md
Title: "importDeviceIdentityList 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: 606
] } ```-----
v1.0 Intune Enrollment Importeddeviceidentity List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-importeddeviceidentity-list.md
Title: "List importedDeviceIdentities" description: "List properties and relationships of the importedDeviceIdentity objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [importedDeviceIdentity](../resources/intune-enrollment-importeddeviceidentity.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: 577
] } ```-----
v1.0 Intune Enrollment Importeddeviceidentity Searchexistingidentities https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-importeddeviceidentity-searchexistingidentities.md
Title: "searchExistingIdentities 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: 577
] } ```-----
v1.0 Intune Enrollment Importeddeviceidentity Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-importeddeviceidentity-update.md
Title: "Update importedDeviceIdentity" description: "Update the properties of a importedDeviceIdentity object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [importedDeviceIdentity](../resources/intune-enrollment-importeddeviceidentity.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: 504
"platform": "ios" } ```-----
v1.0 Intune Enrollment Importeddeviceidentityresult Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-importeddeviceidentityresult-create.md
Title: "Create importedDeviceIdentityResult" description: "Create a new importedDeviceIdentityResult object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [importedDeviceIdentityResult](../resources/intune-enrollment-importeddeviceidentityresult.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: 529
"status": true } ```-----
v1.0 Intune Enrollment Importeddeviceidentityresult Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-importeddeviceidentityresult-delete.md
Title: "Delete importedDeviceIdentityResult" description: "Deletes a importedDeviceIdentityResult."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [importedDeviceIdentityResult](../resources/intune-enrollment-importeddeviceidentityresult.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 Enrollment Importeddeviceidentityresult Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-importeddeviceidentityresult-get.md
Title: "Get importedDeviceIdentityResult" description: "Read properties and relationships of the importedDeviceIdentityResult object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [importedDeviceIdentityResult](../resources/intune-enrollment-importeddeviceidentityresult.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: 570
} } ```-----
v1.0 Intune Enrollment Importeddeviceidentityresult List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-importeddeviceidentityresult-list.md
Title: "List importedDeviceIdentityResults" description: "List properties and relationships of the importedDeviceIdentityResult objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [importedDeviceIdentityResult](../resources/intune-enrollment-importeddeviceidentityresult.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: 606
] } ```-----
v1.0 Intune Enrollment Importeddeviceidentityresult Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-importeddeviceidentityresult-update.md
Title: "Update importedDeviceIdentityResult" description: "Update the properties of a importedDeviceIdentityResult object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [importedDeviceIdentityResult](../resources/intune-enrollment-importeddeviceidentityresult.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: 529
"status": true } ```-----
v1.0 Intune Enrollment Importedwindowsautopilotdeviceidentity Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-importedwindowsautopilotdeviceidentity-create.md
Title: "Create importedWindowsAutopilotDeviceIdentity" description: "Create a new importedWindowsAutopilotDeviceIdentity object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [importedWindowsAutopilotDeviceIdentity](../resources/intune-enrollment-importedwindowsautopilotdeviceidentity.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: 680
"assignedUserPrincipalName": "Assigned User Principal Name value" } ```-----
v1.0 Intune Enrollment Importedwindowsautopilotdeviceidentity Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-importedwindowsautopilotdeviceidentity-delete.md
Title: "Delete importedWindowsAutopilotDeviceIdentity" description: "Deletes a importedWindowsAutopilotDeviceIdentity."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [importedWindowsAutopilotDeviceIdentity](../resources/intune-enrollment-importedwindowsautopilotdeviceidentity.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 Enrollment Importedwindowsautopilotdeviceidentity Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-importedwindowsautopilotdeviceidentity-get.md
Title: "Get importedWindowsAutopilotDeviceIdentity" description: "Read properties and relationships of the importedWindowsAutopilotDeviceIdentity object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [importedWindowsAutopilotDeviceIdentity](../resources/intune-enrollment-importedwindowsautopilotdeviceidentity.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: 729
} } ```-----
v1.0 Intune Enrollment Importedwindowsautopilotdeviceidentity Import https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-importedwindowsautopilotdeviceidentity-import.md
Title: "import 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: 773
] } ```-----
v1.0 Intune Enrollment Importedwindowsautopilotdeviceidentity List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-importedwindowsautopilotdeviceidentity-list.md
Title: "List importedWindowsAutopilotDeviceIdentities" description: "List properties and relationships of the importedWindowsAutopilotDeviceIdentity objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [importedWindowsAutopilotDeviceIdentity](../resources/intune-enrollment-importedwindowsautopilotdeviceidentity.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: 773
] } ```-----
v1.0 Intune Enrollment Windowsautopilotdeploymentprofileassignment Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-windowsautopilotdeploymentprofileassignment-create.md
Title: "Create windowsAutopilotDeploymentProfileAssignment" description: "Create a new windowsAutopilotDeploymentProfileAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windowsAutopilotDeploymentProfileAssignment](../resources/intune-enrollment-windowsautopilotdeploymentprofileassignment.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
"sourceId": "Source Id value" } ```-----
v1.0 Intune Enrollment Windowsautopilotdeploymentprofileassignment Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-windowsautopilotdeploymentprofileassignment-delete.md
Title: "Delete windowsAutopilotDeploymentProfileAssignment" description: "Deletes a windowsAutopilotDeploymentProfileAssignment."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windowsAutopilotDeploymentProfileAssignment](../resources/intune-enrollment-windowsautopilotdeploymentprofileassignment.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 Enrollment Windowsautopilotdeploymentprofileassignment Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-windowsautopilotdeploymentprofileassignment-get.md
Title: "Get windowsAutopilotDeploymentProfileAssignment" description: "Read properties and relationships of the windowsAutopilotDeploymentProfileAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsAutopilotDeploymentProfileAssignment](../resources/intune-enrollment-windowsautopilotdeploymentprofileassignment.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: 497
} } ```-----
v1.0 Intune Enrollment Windowsautopilotdeploymentprofileassignment List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-windowsautopilotdeploymentprofileassignment-list.md
Title: "List windowsAutopilotDeploymentProfileAssignments" description: "List properties and relationships of the windowsAutopilotDeploymentProfileAssignment objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsAutopilotDeploymentProfileAssignment](../resources/intune-enrollment-windowsautopilotdeploymentprofileassignment.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: 529
] } ```-----
v1.0 Intune Enrollment Windowsautopilotdeploymentprofileassignment Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-windowsautopilotdeploymentprofileassignment-update.md
Title: "Update windowsAutopilotDeploymentProfileAssignment" description: "Update the properties of a windowsAutopilotDeploymentProfileAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windowsAutopilotDeploymentProfileAssignment](../resources/intune-enrollment-windowsautopilotdeploymentprofileassignment.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
"sourceId": "Source Id value" } ```-----
v1.0 Intune Enrollment Windowsautopilotdeviceidentity Assignresourceaccounttodevice https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-windowsautopilotdeviceidentity-assignresourceaccounttodevice.md
Title: "assignResourceAccountToDevice action" description: "Assigns resource account to Autopilot devices."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Assigns resource account to Autopilot devices.
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Enrollment Windowsautopilotdeviceidentity Assignusertodevice https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-windowsautopilotdeviceidentity-assignusertodevice.md
Title: "assignUserToDevice action" description: "Assigns user to Autopilot devices."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Assigns user to Autopilot devices.
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Enrollment Windowsautopilotdeviceidentity Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-windowsautopilotdeviceidentity-create.md
Title: "Create windowsAutopilotDeviceIdentity" description: "Create a new windowsAutopilotDeviceIdentity object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windowsAutopilotDeviceIdentity](../resources/intune-enrollment-windowsautopilotdeviceidentity.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: 1420
"remediationStateLastModifiedDateTime": "2017-01-01T00:00:10.730021-08:00" } ```-----
v1.0 Intune Enrollment Windowsautopilotdeviceidentity Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-windowsautopilotdeviceidentity-delete.md
Title: "Delete windowsAutopilotDeviceIdentity" description: "Deletes a windowsAutopilotDeviceIdentity."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windowsAutopilotDeviceIdentity](../resources/intune-enrollment-windowsautopilotdeviceidentity.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 Enrollment Windowsautopilotdeviceidentity Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-windowsautopilotdeviceidentity-get.md
Title: "Get windowsAutopilotDeviceIdentity" description: "Read properties and relationships of the windowsAutopilotDeviceIdentity object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsAutopilotDeviceIdentity](../resources/intune-enrollment-windowsautopilotdeviceidentity.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: 1493
} } ```-----
v1.0 Intune Enrollment Windowsautopilotdeviceidentity List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-windowsautopilotdeviceidentity-list.md
Title: "List windowsAutopilotDeviceIdentities" description: "List properties and relationships of the windowsAutopilotDeviceIdentity objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsAutopilotDeviceIdentity](../resources/intune-enrollment-windowsautopilotdeviceidentity.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: 1561
] } ```-----
v1.0 Intune Enrollment Windowsautopilotdeviceidentity Unassignresourceaccountfromdevice https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-windowsautopilotdeviceidentity-unassignresourceaccountfromdevice.md
Title: "unassignResourceAccountFromDevice action" description: "Unassigns the resource account from an Autopilot device."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Unassigns the resource account from an Autopilot device.
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Enrollment Windowsautopilotdeviceidentity Unassignuserfromdevice https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-windowsautopilotdeviceidentity-unassignuserfromdevice.md
Title: "unassignUserFromDevice action" description: "Unassigns the user from an Autopilot device."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Unassigns the user from an Autopilot device.
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Enrollment Windowsautopilotdeviceidentity Updatedeviceproperties https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-windowsautopilotdeviceidentity-updatedeviceproperties.md
Title: "updateDeviceProperties action" description: "Updates properties on Autopilot devices."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Updates properties on Autopilot devices.
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Enrollment Windowsautopilotsettings Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-windowsautopilotsettings-get.md
Title: "Get windowsAutopilotSettings" description: "Read properties and relationships of the windowsAutopilotSettings object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsAutopilotSettings](../resources/intune-enrollment-windowsautopilotsettings.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: 308
} } ```-----
v1.0 Intune Enrollment Windowsautopilotsettings Sync https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-windowsautopilotsettings-sync.md
Title: "sync action" description: "Initiates a sync of all AutoPilot registered devices from Store for Business and other portals. If the sync successful, this action returns a 204 No Content response code. If a sync is already in progress, the action returns a 409 Conflict response code. If this sync action is called within 10 minutes of the previous sync, the action returns a 429 Too Many Requests response code."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Initiates a sync of all AutoPilot registered devices from Store for Business and other portals. If the sync successful, this action returns a 204 No Content response code. If a sync is already in progress, the action returns a 409 Conflict response code. If this sync action is called within 10 minutes of the previous sync, the action returns a 429 Too Many Requests response code.
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Enrollment Windowsautopilotsettings Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-enrollment-windowsautopilotsettings-update.md
Title: "Update windowsAutopilotSettings" description: "Update the properties of a windowsAutopilotSettings object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windowsAutopilotSettings](../resources/intune-enrollment-windowsautopilotsettings.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: 279
"syncStatus": "inProgress" } ```-----
v1.0 Intune Esim Embeddedsimactivationcodepool Assign https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-esim-embeddedsimactivationcodepool-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)|
Content-Length: 450
] } ```-----
v1.0 Intune Esim Embeddedsimactivationcodepool Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-esim-embeddedsimactivationcodepool-create.md
Title: "Create embeddedSIMActivationCodePool" description: "Create a new embeddedSIMActivationCodePool object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [embeddedSIMActivationCodePool](../resources/intune-esim-embeddedsimactivationcodepool.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: 628
"activationCodeCount": 3 } ```-----
v1.0 Intune Esim Embeddedsimactivationcodepool Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-esim-embeddedsimactivationcodepool-delete.md
Title: "Delete embeddedSIMActivationCodePool" description: "Deletes a embeddedSIMActivationCodePool."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [embeddedSIMActivationCodePool](../resources/intune-esim-embeddedsimactivationcodepool.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 Esim Embeddedsimactivationcodepool Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-esim-embeddedsimactivationcodepool-get.md
Title: "Get embeddedSIMActivationCodePool" description: "Read properties and relationships of the embeddedSIMActivationCodePool object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [embeddedSIMActivationCodePool](../resources/intune-esim-embeddedsimactivationcodepool.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: 675
} } ```-----
v1.0 Intune Esim Embeddedsimactivationcodepool List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-esim-embeddedsimactivationcodepool-list.md
Title: "List embeddedSIMActivationCodePools" description: "List properties and relationships of the embeddedSIMActivationCodePool objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [embeddedSIMActivationCodePool](../resources/intune-esim-embeddedsimactivationcodepool.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: 717
] } ```-----
v1.0 Intune Esim Embeddedsimactivationcodepool Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-esim-embeddedsimactivationcodepool-update.md
Title: "Update embeddedSIMActivationCodePool" description: "Update the properties of a embeddedSIMActivationCodePool object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [embeddedSIMActivationCodePool](../resources/intune-esim-embeddedsimactivationcodepool.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: 628
"activationCodeCount": 3 } ```-----
v1.0 Intune Esim Embeddedsimactivationcodepoolassignment Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-esim-embeddedsimactivationcodepoolassignment-create.md
Title: "Create embeddedSIMActivationCodePoolAssignment" description: "Create a new embeddedSIMActivationCodePoolAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [embeddedSIMActivationCodePoolAssignment](../resources/intune-esim-embeddedsimactivationcodepoolassignment.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: 389
} } ```-----
v1.0 Intune Esim Embeddedsimactivationcodepoolassignment Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-esim-embeddedsimactivationcodepoolassignment-delete.md
Title: "Delete embeddedSIMActivationCodePoolAssignment" description: "Deletes a embeddedSIMActivationCodePoolAssignment."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [embeddedSIMActivationCodePoolAssignment](../resources/intune-esim-embeddedsimactivationcodepoolassignment.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 Esim Embeddedsimactivationcodepoolassignment Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-esim-embeddedsimactivationcodepoolassignment-get.md
Title: "Get embeddedSIMActivationCodePoolAssignment" description: "Read properties and relationships of the embeddedSIMActivationCodePoolAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [embeddedSIMActivationCodePoolAssignment](../resources/intune-esim-embeddedsimactivationcodepoolassignment.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: 422
} } ```-----
v1.0 Intune Esim Embeddedsimactivationcodepoolassignment List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-esim-embeddedsimactivationcodepoolassignment-list.md
Title: "List embeddedSIMActivationCodePoolAssignments" description: "List properties and relationships of the embeddedSIMActivationCodePoolAssignment objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [embeddedSIMActivationCodePoolAssignment](../resources/intune-esim-embeddedsimactivationcodepoolassignment.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: 450
] } ```-----
v1.0 Intune Esim Embeddedsimactivationcodepoolassignment Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-esim-embeddedsimactivationcodepoolassignment-update.md
Title: "Update embeddedSIMActivationCodePoolAssignment" description: "Update the properties of a embeddedSIMActivationCodePoolAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [embeddedSIMActivationCodePoolAssignment](../resources/intune-esim-embeddedsimactivationcodepoolassignment.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: 389
} } ```-----
v1.0 Intune Esim Embeddedsimdevicestate Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-esim-embeddedsimdevicestate-create.md
Title: "Create embeddedSIMDeviceState" description: "Create a new embeddedSIMDeviceState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [embeddedSIMDeviceState](../resources/intune-esim-embeddedsimdevicestate.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: 529
"stateDetails": "State Details value" } ```-----
v1.0 Intune Esim Embeddedsimdevicestate Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-esim-embeddedsimdevicestate-delete.md
Title: "Delete embeddedSIMDeviceState" description: "Deletes a embeddedSIMDeviceState."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [embeddedSIMDeviceState](../resources/intune-esim-embeddedsimdevicestate.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 Esim Embeddedsimdevicestate Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-esim-embeddedsimdevicestate-get.md
Title: "Get embeddedSIMDeviceState" description: "Read properties and relationships of the embeddedSIMDeviceState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [embeddedSIMDeviceState](../resources/intune-esim-embeddedsimdevicestate.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
} } ```-----
v1.0 Intune Esim Embeddedsimdevicestate List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-esim-embeddedsimdevicestate-list.md
Title: "List embeddedSIMDeviceStates" description: "List properties and relationships of the embeddedSIMDeviceState objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [embeddedSIMDeviceState](../resources/intune-esim-embeddedsimdevicestate.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: 602
] } ```-----
v1.0 Intune Esim Embeddedsimdevicestate Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-esim-embeddedsimdevicestate-update.md
Title: "Update embeddedSIMDeviceState" description: "Update the properties of a embeddedSIMDeviceState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [embeddedSIMDeviceState](../resources/intune-esim-embeddedsimdevicestate.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: 529
"stateDetails": "State Details value" } ```-----
v1.0 Intune Fencing Circulargeofencemanagementcondition Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-fencing-circulargeofencemanagementcondition-create.md
Title: "Create circularGeofenceManagementCondition" description: "Create a new circularGeofenceManagementCondition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [circularGeofenceManagementCondition](../resources/intune-fencing-circulargeofencemanagementcondition.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: 539
"radiusInMeters": 4.666666666666667 } ```---
v1.0 Intune Fencing Circulargeofencemanagementcondition Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-fencing-circulargeofencemanagementcondition-delete.md
Title: "Delete circularGeofenceManagementCondition" description: "Deletes a circularGeofenceManagementCondition."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [circularGeofenceManagementCondition](../resources/intune-fencing-circulargeofencemanagementcondition.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 Fencing Circulargeofencemanagementcondition Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-fencing-circulargeofencemanagementcondition-get.md
Title: "Get circularGeofenceManagementCondition" description: "Read properties and relationships of the circularGeofenceManagementCondition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [circularGeofenceManagementCondition](../resources/intune-fencing-circulargeofencemanagementcondition.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: 586
} } ```---
v1.0 Intune Fencing Circulargeofencemanagementcondition List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-fencing-circulargeofencemanagementcondition-list.md
Title: "List circularGeofenceManagementConditions" description: "List properties and relationships of the circularGeofenceManagementCondition objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [circularGeofenceManagementCondition](../resources/intune-fencing-circulargeofencemanagementcondition.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: 628
] } ```---
v1.0 Intune Fencing Circulargeofencemanagementcondition Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-fencing-circulargeofencemanagementcondition-update.md
Title: "Update circularGeofenceManagementCondition" description: "Update the properties of a circularGeofenceManagementCondition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [circularGeofenceManagementCondition](../resources/intune-fencing-circulargeofencemanagementcondition.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: 539
"radiusInMeters": 4.666666666666667 } ```---
v1.0 Intune Fencing Locationmanagementcondition Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-fencing-locationmanagementcondition-get.md
Title: "Get locationManagementCondition" description: "Read properties and relationships of the locationManagementCondition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [locationManagementCondition](../resources/intune-fencing-locationmanagementcondition.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: 476
} } ```---
v1.0 Intune Fencing Locationmanagementcondition List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-fencing-locationmanagementcondition-list.md
Title: "List locationManagementConditions" description: "List properties and relationships of the locationManagementCondition objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [locationManagementCondition](../resources/intune-fencing-locationmanagementcondition.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 Fencing Managementcondition Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-fencing-managementcondition-get.md
Title: "Get managementCondition" description: "Read properties and relationships of the managementCondition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [managementCondition](../resources/intune-fencing-managementcondition.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: 468
} } ```---
v1.0 Intune Fencing Managementcondition Getmanagementconditionsforplatform https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-fencing-managementcondition-getmanagementconditionsforplatform.md
Title: "getManagementConditionsForPlatform 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: 504
] } ```---
v1.0 Intune Fencing Managementcondition List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-fencing-managementcondition-list.md
Title: "List managementConditions" description: "List properties and relationships of the managementCondition objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [managementCondition](../resources/intune-fencing-managementcondition.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: 504
] } ```---
v1.0 Intune Fencing Managementconditionstatement Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-fencing-managementconditionstatement-create.md
Title: "Create managementConditionStatement" description: "Create a new managementConditionStatement object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [managementConditionStatement](../resources/intune-fencing-managementconditionstatement.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: 526
] } ```---
v1.0 Intune Fencing Managementconditionstatement Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-fencing-managementconditionstatement-delete.md
Title: "Delete managementConditionStatement" description: "Deletes a managementConditionStatement."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [managementConditionStatement](../resources/intune-fencing-managementconditionstatement.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 Fencing Managementconditionstatement Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-fencing-managementconditionstatement-get.md
Title: "Get managementConditionStatement" description: "Read properties and relationships of the managementConditionStatement object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [managementConditionStatement](../resources/intune-fencing-managementconditionstatement.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: 573
} } ```---
v1.0 Intune Fencing Managementconditionstatement Getmanagementconditionstatementexpressionstring https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-fencing-managementconditionstatement-getmanagementconditionstatementexpressionstring.md
Title: "getManagementConditionStatementExpressionString 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: 126
} } ```---
v1.0 Intune Fencing Managementconditionstatement Getmanagementconditionstatementsforplatform https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-fencing-managementconditionstatement-getmanagementconditionstatementsforplatform.md
Title: "getManagementConditionStatementsForPlatform 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: 615
] } ```---
v1.0 Intune Fencing Managementconditionstatement List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-fencing-managementconditionstatement-list.md
Title: "List managementConditionStatements" description: "List properties and relationships of the managementConditionStatement objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [managementConditionStatement](../resources/intune-fencing-managementconditionstatement.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: 615
] } ```---
v1.0 Intune Fencing Managementconditionstatement Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-fencing-managementconditionstatement-update.md
Title: "Update managementConditionStatement" description: "Update the properties of a managementConditionStatement object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [managementConditionStatement](../resources/intune-fencing-managementconditionstatement.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: 526
] } ```---
v1.0 Intune Fencing Networkipv4configurationmanagementcondition Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-fencing-networkipv4configurationmanagementcondition-create.md
Title: "Create networkIPv4ConfigurationManagementCondition" description: "Create a new networkIPv4ConfigurationManagementCondition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [networkIPv4ConfigurationManagementCondition](../resources/intune-fencing-networkipv4configurationmanagementcondition.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: 697
] } ```---
v1.0 Intune Fencing Networkipv4configurationmanagementcondition Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-fencing-networkipv4configurationmanagementcondition-delete.md
Title: "Delete networkIPv4ConfigurationManagementCondition" description: "Deletes a networkIPv4ConfigurationManagementCondition."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [networkIPv4ConfigurationManagementCondition](../resources/intune-fencing-networkipv4configurationmanagementcondition.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 Fencing Networkipv4configurationmanagementcondition Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-fencing-networkipv4configurationmanagementcondition-get.md
Title: "Get networkIPv4ConfigurationManagementCondition" description: "Read properties and relationships of the networkIPv4ConfigurationManagementCondition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [networkIPv4ConfigurationManagementCondition](../resources/intune-fencing-networkipv4configurationmanagementcondition.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: 756
} } ```---
v1.0 Intune Fencing Networkipv4configurationmanagementcondition List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-fencing-networkipv4configurationmanagementcondition-list.md
Title: "List networkIPv4ConfigurationManagementConditions" description: "List properties and relationships of the networkIPv4ConfigurationManagementCondition objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [networkIPv4ConfigurationManagementCondition](../resources/intune-fencing-networkipv4configurationmanagementcondition.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: 810
] } ```---
v1.0 Intune Fencing Networkipv4configurationmanagementcondition Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-fencing-networkipv4configurationmanagementcondition-update.md
Title: "Update networkIPv4ConfigurationManagementCondition" description: "Update the properties of a networkIPv4ConfigurationManagementCondition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [networkIPv4ConfigurationManagementCondition](../resources/intune-fencing-networkipv4configurationmanagementcondition.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: 697
] } ```---
v1.0 Intune Fencing Networkipv6configurationmanagementcondition Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-fencing-networkipv6configurationmanagementcondition-create.md
Title: "Create networkIPv6ConfigurationManagementCondition" description: "Create a new networkIPv6ConfigurationManagementCondition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [networkIPv6ConfigurationManagementCondition](../resources/intune-fencing-networkipv6configurationmanagementcondition.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 Fencing Networkipv6configurationmanagementcondition Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-fencing-networkipv6configurationmanagementcondition-delete.md
Title: "Delete networkIPv6ConfigurationManagementCondition" description: "Deletes a networkIPv6ConfigurationManagementCondition."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [networkIPv6ConfigurationManagementCondition](../resources/intune-fencing-networkipv6configurationmanagementcondition.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 Fencing Networkipv6configurationmanagementcondition Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-fencing-networkipv6configurationmanagementcondition-get.md
Title: "Get networkIPv6ConfigurationManagementCondition" description: "Read properties and relationships of the networkIPv6ConfigurationManagementCondition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [networkIPv6ConfigurationManagementCondition](../resources/intune-fencing-networkipv6configurationmanagementcondition.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: 708
} } ```---
v1.0 Intune Fencing Networkipv6configurationmanagementcondition List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-fencing-networkipv6configurationmanagementcondition-list.md
Title: "List networkIPv6ConfigurationManagementConditions" description: "List properties and relationships of the networkIPv6ConfigurationManagementCondition objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [networkIPv6ConfigurationManagementCondition](../resources/intune-fencing-networkipv6configurationmanagementcondition.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: 760
] } ```---
v1.0 Intune Fencing Networkipv6configurationmanagementcondition Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-fencing-networkipv6configurationmanagementcondition-update.md
Title: "Update networkIPv6ConfigurationManagementCondition" description: "Update the properties of a networkIPv6ConfigurationManagementCondition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [networkIPv6ConfigurationManagementCondition](../resources/intune-fencing-networkipv6configurationmanagementcondition.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 Fencing Networkmanagementcondition Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-fencing-networkmanagementcondition-get.md
Title: "Get networkManagementCondition" description: "Read properties and relationships of the networkManagementCondition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [networkManagementCondition](../resources/intune-fencing-networkmanagementcondition.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: 475
} } ```---
v1.0 Intune Fencing Networkmanagementcondition List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-fencing-networkmanagementcondition-list.md
Title: "List networkManagementConditions" description: "List properties and relationships of the networkManagementCondition objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [networkManagementCondition](../resources/intune-fencing-networkmanagementcondition.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: 511
] } ```---
v1.0 Intune Gpanalyticsservice Grouppolicymigrationreport Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-gpanalyticsservice-grouppolicymigrationreport-create.md
Title: "Create groupPolicyMigrationReport" description: "Create a new groupPolicyMigrationReport object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [groupPolicyMigrationReport](../resources/intune-gpanalyticsservice-grouppolicymigrationreport.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: 778
] } ```-----
v1.0 Intune Gpanalyticsservice Grouppolicymigrationreport Createmigrationreport https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-gpanalyticsservice-grouppolicymigrationreport-createmigrationreport.md
Title: "createMigrationReport 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: 48
"value": "Create Migration Report value" } ```-----
v1.0 Intune Gpanalyticsservice Grouppolicymigrationreport Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-gpanalyticsservice-grouppolicymigrationreport-delete.md
Title: "Delete groupPolicyMigrationReport" description: "Deletes a groupPolicyMigrationReport."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [groupPolicyMigrationReport](../resources/intune-gpanalyticsservice-grouppolicymigrationreport.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 Gpanalyticsservice Grouppolicymigrationreport Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-gpanalyticsservice-grouppolicymigrationreport-get.md
Title: "Get groupPolicyMigrationReport" description: "Read properties and relationships of the groupPolicyMigrationReport object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [groupPolicyMigrationReport](../resources/intune-gpanalyticsservice-grouppolicymigrationreport.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 Gpanalyticsservice Grouppolicymigrationreport List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-gpanalyticsservice-grouppolicymigrationreport-list.md
Title: "List groupPolicyMigrationReports" description: "List properties and relationships of the groupPolicyMigrationReport objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [groupPolicyMigrationReport](../resources/intune-gpanalyticsservice-grouppolicymigrationreport.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: 879
] } ```-----
v1.0 Intune Gpanalyticsservice Grouppolicymigrationreport Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-gpanalyticsservice-grouppolicymigrationreport-update.md
Title: "Update groupPolicyMigrationReport" description: "Update the properties of a groupPolicyMigrationReport object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [groupPolicyMigrationReport](../resources/intune-gpanalyticsservice-grouppolicymigrationreport.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: 778
] } ```-----
v1.0 Intune Gpanalyticsservice Grouppolicymigrationreport Updatescopetags https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-gpanalyticsservice-grouppolicymigrationreport-updatescopetags.md
+
+ Title: "updateScopeTags action"
+description: "Not yet documented"
+
+localization_priority: Normal
++
+# updateScopeTags action
+
+Namespace: microsoft.graph
+
+> **Important:** Microsoft Graph APIs under the /beta version are subject to change; production use is not supported.
+
+> **Note:** The Microsoft Graph API for Intune requires an [active Intune license](https://go.microsoft.com/fwlink/?linkid=839381) for the tenant.
+
+Not yet documented
+
+## Permissions
+One of the following permissions is required to 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)|DeviceManagementConfiguration.Read.All|
+|Delegated (personal Microsoft account)|Not supported.|
+|Application|DeviceManagementConfiguration.Read.All|
+
+## HTTP Request
+<!-- {
+ "blockType": "ignored"
+}
+-->
+``` http
+POST /deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReportId}/updateScopeTags
+```
+
+## Request headers
+|Header|Value|
+|:|:|
+|Authorization|Bearer &lt;token&gt; Required.|
+|Accept|application/json|
+
+## Request body
+In the request body, supply JSON representation of the parameters.
+
+The following table shows the parameters that can be used with this action.
+
+|Property|Type|Description|
+|:|:|:|
+|roleScopeTagIds|String collection|Not yet documented|
+++
+## Response
+If successful, this action returns a `200 OK` response code and a String in the response body.
+
+## Example
+
+### Request
+Here is an example of the request.
+``` http
+POST https://graph.microsoft.com/beta/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReportId}/updateScopeTags
+
+Content-type: application/json
+Content-length: 65
+
+{
+ "roleScopeTagIds": [
+ "Role Scope Tag Ids value"
+ ]
+}
+```
+
+### Response
+Here is an example of the response. Note: The response object shown here may be truncated for brevity. All of the properties will be returned from an actual call.
+``` http
+HTTP/1.1 200 OK
+Content-Type: application/json
+Content-Length: 42
+
+{
+ "value": "Update Scope Tags value"
+}
+```
v1.0 Intune Gpanalyticsservice Grouppolicyobjectfile Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-gpanalyticsservice-grouppolicyobjectfile-create.md
Title: "Create groupPolicyObjectFile" description: "Create a new groupPolicyObjectFile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [groupPolicyObjectFile](../resources/intune-gpanalyticsservice-grouppolicyobjectfile.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: 451
] } ```-----
v1.0 Intune Gpanalyticsservice Grouppolicyobjectfile Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-gpanalyticsservice-grouppolicyobjectfile-delete.md
Title: "Delete groupPolicyObjectFile" description: "Deletes a groupPolicyObjectFile."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [groupPolicyObjectFile](../resources/intune-gpanalyticsservice-grouppolicyobjectfile.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 Gpanalyticsservice Grouppolicyobjectfile Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-gpanalyticsservice-grouppolicyobjectfile-get.md
Title: "Get groupPolicyObjectFile" description: "Read properties and relationships of the groupPolicyObjectFile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [groupPolicyObjectFile](../resources/intune-gpanalyticsservice-grouppolicyobjectfile.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: 490
} } ```-----
v1.0 Intune Gpanalyticsservice Grouppolicyobjectfile List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-gpanalyticsservice-grouppolicyobjectfile-list.md
Title: "List groupPolicyObjectFiles" description: "List properties and relationships of the groupPolicyObjectFile objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [groupPolicyObjectFile](../resources/intune-gpanalyticsservice-grouppolicyobjectfile.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: 524
] } ```-----
v1.0 Intune Gpanalyticsservice Grouppolicyobjectfile Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-gpanalyticsservice-grouppolicyobjectfile-update.md
Title: "Update groupPolicyObjectFile" description: "Update the properties of a groupPolicyObjectFile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [groupPolicyObjectFile](../resources/intune-gpanalyticsservice-grouppolicyobjectfile.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: 451
] } ```-----
v1.0 Intune Gpanalyticsservice Grouppolicysettingmapping Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-gpanalyticsservice-grouppolicysettingmapping-create.md
Title: "Create groupPolicySettingMapping" description: "Create a new groupPolicySettingMapping object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [groupPolicySettingMapping](../resources/intune-gpanalyticsservice-grouppolicysettingmapping.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
"admxSettingDefinitionId": "Admx Setting Definition Id value" } ```-----
v1.0 Intune Gpanalyticsservice Grouppolicysettingmapping Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-gpanalyticsservice-grouppolicysettingmapping-delete.md
Title: "Delete groupPolicySettingMapping" description: "Deletes a groupPolicySettingMapping."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [groupPolicySettingMapping](../resources/intune-gpanalyticsservice-grouppolicysettingmapping.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 Gpanalyticsservice Grouppolicysettingmapping Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-gpanalyticsservice-grouppolicysettingmapping-get.md
Title: "Get groupPolicySettingMapping" description: "Read properties and relationships of the groupPolicySettingMapping object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [groupPolicySettingMapping](../resources/intune-gpanalyticsservice-grouppolicysettingmapping.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: 1143
} } ```-----
v1.0 Intune Gpanalyticsservice Grouppolicysettingmapping List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-gpanalyticsservice-grouppolicysettingmapping-list.md
Title: "List groupPolicySettingMappings" description: "List properties and relationships of the groupPolicySettingMapping objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [groupPolicySettingMapping](../resources/intune-gpanalyticsservice-grouppolicysettingmapping.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: 1209
] } ```-----
v1.0 Intune Gpanalyticsservice Grouppolicysettingmapping Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-gpanalyticsservice-grouppolicysettingmapping-update.md
Title: "Update groupPolicySettingMapping" description: "Update the properties of a groupPolicySettingMapping object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [groupPolicySettingMapping](../resources/intune-gpanalyticsservice-grouppolicysettingmapping.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
"admxSettingDefinitionId": "Admx Setting Definition Id value" } ```-----
v1.0 Intune Gpanalyticsservice Unsupportedgrouppolicyextension Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-gpanalyticsservice-unsupportedgrouppolicyextension-create.md
Title: "Create unsupportedGroupPolicyExtension" description: "Create a new unsupportedGroupPolicyExtension object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [unsupportedGroupPolicyExtension](../resources/intune-gpanalyticsservice-unsupportedgrouppolicyextension.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
"nodeName": "Node Name value" } ```-----
v1.0 Intune Gpanalyticsservice Unsupportedgrouppolicyextension Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-gpanalyticsservice-unsupportedgrouppolicyextension-delete.md
Title: "Delete unsupportedGroupPolicyExtension" description: "Deletes a unsupportedGroupPolicyExtension."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [unsupportedGroupPolicyExtension](../resources/intune-gpanalyticsservice-unsupportedgrouppolicyextension.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 Gpanalyticsservice Unsupportedgrouppolicyextension Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-gpanalyticsservice-unsupportedgrouppolicyextension-get.md
Title: "Get unsupportedGroupPolicyExtension" description: "Read properties and relationships of the unsupportedGroupPolicyExtension object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [unsupportedGroupPolicyExtension](../resources/intune-gpanalyticsservice-unsupportedgrouppolicyextension.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 Gpanalyticsservice Unsupportedgrouppolicyextension List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-gpanalyticsservice-unsupportedgrouppolicyextension-list.md
Title: "List unsupportedGroupPolicyExtensions" description: "List properties and relationships of the unsupportedGroupPolicyExtension objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [unsupportedGroupPolicyExtension](../resources/intune-gpanalyticsservice-unsupportedgrouppolicyextension.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 Gpanalyticsservice Unsupportedgrouppolicyextension Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-gpanalyticsservice-unsupportedgrouppolicyextension-update.md
Title: "Update unsupportedGroupPolicyExtension" description: "Update the properties of a unsupportedGroupPolicyExtension object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [unsupportedGroupPolicyExtension](../resources/intune-gpanalyticsservice-unsupportedgrouppolicyextension.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
"nodeName": "Node Name value" } ```-----
v1.0 Intune Grouppolicy Devicemanagementreports Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-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-grouppolicy-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: 137
} } ```-----
v1.0 Intune Grouppolicy Devicemanagementreports Getgrouppolicysettingsdevicesettingsreport https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-devicemanagementreports-getgrouppolicysettingsdevicesettingsreport.md
Title: "getGroupPolicySettingsDeviceSettingsReport 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: 115
"value": "Z2V0R3JvdXBQb2xpY3lTZXR0aW5nc0RldmljZVNldHRpbmdzUmVwb3J0IEludHVuZSBEb2MgU2FtcGxlIDYzMDIzNDI3MQ==" } ```-----
v1.0 Intune Grouppolicy Devicemanagementreports Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-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-grouppolicy-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: 114
"id": "d6a697d3-97d3-d6a6-d397-a6d6d397a6d6" } ```-----
v1.0 Intune Grouppolicy Grouppolicycategory Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicycategory-get.md
Title: "Get groupPolicyCategory" description: "Read properties and relationships of the groupPolicyCategory object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [groupPolicyCategory](../resources/intune-grouppolicy-grouppolicycategory.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: 296
} } ```-----
v1.0 Intune Grouppolicy Grouppolicycategory Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicycategory-update.md
Title: "Update groupPolicyCategory" description: "Update the properties of a groupPolicyCategory object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [groupPolicyCategory](../resources/intune-grouppolicy-grouppolicycategory.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: 265
"lastModifiedDateTime": "2017-01-01T00:00:35.1329464-08:00" } ```-----
v1.0 Intune Grouppolicy Grouppolicyconfiguration Assign https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicyconfiguration-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)|
Content-Length: 575
] } ```-----
v1.0 Intune Grouppolicy Grouppolicyconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicyconfiguration-create.md
Title: "Create groupPolicyConfiguration" description: "Create a new groupPolicyConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [groupPolicyConfiguration](../resources/intune-grouppolicy-grouppolicyconfiguration.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
"lastModifiedDateTime": "2017-01-01T00:00:35.1329464-08:00" } ```-----
v1.0 Intune Grouppolicy Grouppolicyconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicyconfiguration-delete.md
Title: "Delete groupPolicyConfiguration" description: "Deletes a groupPolicyConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [groupPolicyConfiguration](../resources/intune-grouppolicy-grouppolicyconfiguration.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 Grouppolicy Grouppolicyconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicyconfiguration-get.md
Title: "Get groupPolicyConfiguration" description: "Read properties and relationships of the groupPolicyConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [groupPolicyConfiguration](../resources/intune-grouppolicy-grouppolicyconfiguration.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: 467
} } ```-----
v1.0 Intune Grouppolicy Grouppolicyconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicyconfiguration-list.md
Title: "List groupPolicyConfigurations" description: "List properties and relationships of the groupPolicyConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [groupPolicyConfiguration](../resources/intune-grouppolicy-grouppolicyconfiguration.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 Grouppolicy Grouppolicyconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicyconfiguration-update.md
Title: "Update groupPolicyConfiguration" description: "Update the properties of a groupPolicyConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [groupPolicyConfiguration](../resources/intune-grouppolicy-grouppolicyconfiguration.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
"lastModifiedDateTime": "2017-01-01T00:00:35.1329464-08:00" } ```-----
v1.0 Intune Grouppolicy Grouppolicyconfiguration Updatedefinitionvalues https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicyconfiguration-updatedefinitionvalues.md
Title: "updateDefinitionValues 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 Grouppolicy Grouppolicyconfigurationassignment Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicyconfigurationassignment-create.md
Title: "Create groupPolicyConfigurationAssignment" description: "Create a new groupPolicyConfigurationAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [groupPolicyConfigurationAssignment](../resources/intune-grouppolicy-grouppolicyconfigurationassignment.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: 506
} } ```-----
v1.0 Intune Grouppolicy Grouppolicyconfigurationassignment Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicyconfigurationassignment-delete.md
Title: "Delete groupPolicyConfigurationAssignment" description: "Deletes a groupPolicyConfigurationAssignment."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [groupPolicyConfigurationAssignment](../resources/intune-grouppolicy-grouppolicyconfigurationassignment.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 Grouppolicy Grouppolicyconfigurationassignment Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicyconfigurationassignment-get.md
Title: "Get groupPolicyConfigurationAssignment" description: "Read properties and relationships of the groupPolicyConfigurationAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [groupPolicyConfigurationAssignment](../resources/intune-grouppolicy-grouppolicyconfigurationassignment.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: 543
} } ```-----
v1.0 Intune Grouppolicy Grouppolicyconfigurationassignment List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicyconfigurationassignment-list.md
Title: "List groupPolicyConfigurationAssignments" description: "List properties and relationships of the groupPolicyConfigurationAssignment objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [groupPolicyConfigurationAssignment](../resources/intune-grouppolicy-grouppolicyconfigurationassignment.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: 575
] } ```-----
v1.0 Intune Grouppolicy Grouppolicyconfigurationassignment Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicyconfigurationassignment-update.md
Title: "Update groupPolicyConfigurationAssignment" description: "Update the properties of a groupPolicyConfigurationAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [groupPolicyConfigurationAssignment](../resources/intune-grouppolicy-grouppolicyconfigurationassignment.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: 506
} } ```-----
v1.0 Intune Grouppolicy Grouppolicydefinition Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicydefinition-get.md
Title: "Get groupPolicyDefinition" description: "Read properties and relationships of the groupPolicyDefinition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [groupPolicyDefinition](../resources/intune-grouppolicy-grouppolicydefinition.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: 690
} } ```-----
v1.0 Intune Grouppolicy Grouppolicydefinition Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicydefinition-update.md
Title: "Update groupPolicyDefinition" description: "Update the properties of a groupPolicyDefinition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [groupPolicyDefinition](../resources/intune-grouppolicy-grouppolicydefinition.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: 643
"lastModifiedDateTime": "2017-01-01T00:00:35.1329464-08:00" } ```-----
v1.0 Intune Grouppolicy Grouppolicydefinitionfile Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicydefinitionfile-get.md
Title: "Get groupPolicyDefinitionFile" description: "Read properties and relationships of the groupPolicyDefinitionFile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [groupPolicyDefinitionFile](../resources/intune-grouppolicy-grouppolicydefinitionfile.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: 550
} } ```-----
v1.0 Intune Grouppolicy Grouppolicydefinitionfile Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicydefinitionfile-update.md
Title: "Update groupPolicyDefinitionFile" description: "Update the properties of a groupPolicyDefinitionFile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [groupPolicyDefinitionFile](../resources/intune-grouppolicy-grouppolicydefinitionfile.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: 505
"lastModifiedDateTime": "2017-01-01T00:00:35.1329464-08:00" } ```-----
v1.0 Intune Grouppolicy Grouppolicydefinitionvalue Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicydefinitionvalue-create.md
Title: "Create groupPolicyDefinitionValue" description: "Create a new groupPolicyDefinitionValue object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [groupPolicyDefinitionValue](../resources/intune-grouppolicy-grouppolicydefinitionvalue.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: 298
"lastModifiedDateTime": "2017-01-01T00:00:35.1329464-08:00" } ```-----
v1.0 Intune Grouppolicy Grouppolicydefinitionvalue Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicydefinitionvalue-delete.md
Title: "Delete groupPolicyDefinitionValue" description: "Deletes a groupPolicyDefinitionValue."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [groupPolicyDefinitionValue](../resources/intune-grouppolicy-grouppolicydefinitionvalue.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 Grouppolicy Grouppolicydefinitionvalue Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicydefinitionvalue-get.md
Title: "Get groupPolicyDefinitionValue" description: "Read properties and relationships of the groupPolicyDefinitionValue object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [groupPolicyDefinitionValue](../resources/intune-grouppolicy-grouppolicydefinitionvalue.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: 329
} } ```-----
v1.0 Intune Grouppolicy Grouppolicydefinitionvalue List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicydefinitionvalue-list.md
Title: "List groupPolicyDefinitionValues" description: "List properties and relationships of the groupPolicyDefinitionValue objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [groupPolicyDefinitionValue](../resources/intune-grouppolicy-grouppolicydefinitionvalue.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: 355
] } ```-----
v1.0 Intune Grouppolicy Grouppolicydefinitionvalue Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicydefinitionvalue-update.md
Title: "Update groupPolicyDefinitionValue" description: "Update the properties of a groupPolicyDefinitionValue object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [groupPolicyDefinitionValue](../resources/intune-grouppolicy-grouppolicydefinitionvalue.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: 298
"lastModifiedDateTime": "2017-01-01T00:00:35.1329464-08:00" } ```-----
v1.0 Intune Grouppolicy Grouppolicyoperation Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicyoperation-create.md
Title: "Create groupPolicyOperation" description: "Create a new groupPolicyOperation object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [groupPolicyOperation](../resources/intune-grouppolicy-grouppolicyoperation.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
"lastModifiedDateTime": "2017-01-01T00:00:35.1329464-08:00" } ```-----
v1.0 Intune Grouppolicy Grouppolicyoperation Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicyoperation-delete.md
Title: "Delete groupPolicyOperation" description: "Deletes a groupPolicyOperation."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [groupPolicyOperation](../resources/intune-grouppolicy-grouppolicyoperation.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 Grouppolicy Grouppolicyoperation Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicyoperation-get.md
Title: "Get groupPolicyOperation" description: "Read properties and relationships of the groupPolicyOperation object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [groupPolicyOperation](../resources/intune-grouppolicy-grouppolicyoperation.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 Grouppolicy Grouppolicyoperation List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicyoperation-list.md
Title: "List groupPolicyOperations" description: "List properties and relationships of the groupPolicyOperation objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [groupPolicyOperation](../resources/intune-grouppolicy-grouppolicyoperation.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 Grouppolicy Grouppolicyoperation Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicyoperation-update.md
Title: "Update groupPolicyOperation" description: "Update the properties of a groupPolicyOperation object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [groupPolicyOperation](../resources/intune-grouppolicy-grouppolicyoperation.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
"lastModifiedDateTime": "2017-01-01T00:00:35.1329464-08:00" } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentation Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentation-get.md
Title: "Get groupPolicyPresentation" description: "Read properties and relationships of the groupPolicyPresentation object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [groupPolicyPresentation](../resources/intune-grouppolicy-grouppolicypresentation.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: 232
} } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentation Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentation-update.md
Title: "Update groupPolicyPresentation" description: "Update the properties of a groupPolicyPresentation object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [groupPolicyPresentation](../resources/intune-grouppolicy-grouppolicypresentation.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: 205
"lastModifiedDateTime": "2017-01-01T00:00:35.1329464-08:00" } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationcheckbox Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationcheckbox-create.md
Title: "Create groupPolicyPresentationCheckBox" description: "Create a new groupPolicyPresentationCheckBox object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [groupPolicyPresentationCheckBox](../resources/intune-grouppolicy-grouppolicypresentationcheckbox.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: 240
"defaultChecked": true } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationcheckbox Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationcheckbox-delete.md
Title: "Delete groupPolicyPresentationCheckBox" description: "Deletes a groupPolicyPresentationCheckBox."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [groupPolicyPresentationCheckBox](../resources/intune-grouppolicy-grouppolicypresentationcheckbox.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 Grouppolicy Grouppolicypresentationcheckbox Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationcheckbox-get.md
Title: "Get groupPolicyPresentationCheckBox" description: "Read properties and relationships of the groupPolicyPresentationCheckBox object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [groupPolicyPresentationCheckBox](../resources/intune-grouppolicy-grouppolicypresentationcheckbox.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 Grouppolicy Grouppolicypresentationcheckbox List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationcheckbox-list.md
Title: "List groupPolicyPresentationCheckBoxes" description: "List properties and relationships of the groupPolicyPresentationCheckBox objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [groupPolicyPresentationCheckBox](../resources/intune-grouppolicy-grouppolicypresentationcheckbox.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: 293
] } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationcheckbox Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationcheckbox-update.md
Title: "Update groupPolicyPresentationCheckBox" description: "Update the properties of a groupPolicyPresentationCheckBox object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [groupPolicyPresentationCheckBox](../resources/intune-grouppolicy-grouppolicypresentationcheckbox.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: 240
"defaultChecked": true } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationcombobox Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationcombobox-create.md
Title: "Create groupPolicyPresentationComboBox" description: "Create a new groupPolicyPresentationComboBox object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [groupPolicyPresentationComboBox](../resources/intune-grouppolicy-grouppolicypresentationcombobox.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: 346
"maxLength": 9 } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationcombobox Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationcombobox-delete.md
Title: "Delete groupPolicyPresentationComboBox" description: "Deletes a groupPolicyPresentationComboBox."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [groupPolicyPresentationComboBox](../resources/intune-grouppolicy-grouppolicypresentationcombobox.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 Grouppolicy Grouppolicypresentationcombobox Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationcombobox-get.md
Title: "Get groupPolicyPresentationComboBox" description: "Read properties and relationships of the groupPolicyPresentationComboBox object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [groupPolicyPresentationComboBox](../resources/intune-grouppolicy-grouppolicypresentationcombobox.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: 385
} } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationcombobox List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationcombobox-list.md
Title: "List groupPolicyPresentationComboBoxes" description: "List properties and relationships of the groupPolicyPresentationComboBox objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [groupPolicyPresentationComboBox](../resources/intune-grouppolicy-grouppolicypresentationcombobox.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: 419
] } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationcombobox Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationcombobox-update.md
Title: "Update groupPolicyPresentationComboBox" description: "Update the properties of a groupPolicyPresentationComboBox object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [groupPolicyPresentationComboBox](../resources/intune-grouppolicy-grouppolicypresentationcombobox.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: 346
"maxLength": 9 } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationdecimaltextbox Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationdecimaltextbox-create.md
Title: "Create groupPolicyPresentationDecimalTextBox" description: "Create a new groupPolicyPresentationDecimalTextBox object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [groupPolicyPresentationDecimalTextBox](../resources/intune-grouppolicy-grouppolicypresentationdecimaltextbox.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: 334
"maxValue": 8 } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationdecimaltextbox Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationdecimaltextbox-delete.md
Title: "Delete groupPolicyPresentationDecimalTextBox" description: "Deletes a groupPolicyPresentationDecimalTextBox."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [groupPolicyPresentationDecimalTextBox](../resources/intune-grouppolicy-grouppolicypresentationdecimaltextbox.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 Grouppolicy Grouppolicypresentationdecimaltextbox Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationdecimaltextbox-get.md
Title: "Get groupPolicyPresentationDecimalTextBox" description: "Read properties and relationships of the groupPolicyPresentationDecimalTextBox object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [groupPolicyPresentationDecimalTextBox](../resources/intune-grouppolicy-grouppolicypresentationdecimaltextbox.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: 373
} } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationdecimaltextbox List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationdecimaltextbox-list.md
Title: "List groupPolicyPresentationDecimalTextBoxes" description: "List properties and relationships of the groupPolicyPresentationDecimalTextBox objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [groupPolicyPresentationDecimalTextBox](../resources/intune-grouppolicy-grouppolicypresentationdecimaltextbox.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: 407
] } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationdecimaltextbox Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationdecimaltextbox-update.md
Title: "Update groupPolicyPresentationDecimalTextBox" description: "Update the properties of a groupPolicyPresentationDecimalTextBox object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [groupPolicyPresentationDecimalTextBox](../resources/intune-grouppolicy-grouppolicypresentationdecimaltextbox.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: 334
"maxValue": 8 } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationdropdownlist Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationdropdownlist-create.md
Title: "Create groupPolicyPresentationDropdownList" description: "Create a new groupPolicyPresentationDropdownList object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [groupPolicyPresentationDropdownList](../resources/intune-grouppolicy-grouppolicypresentationdropdownlist.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: 602
"required": true } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationdropdownlist Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationdropdownlist-delete.md
Title: "Delete groupPolicyPresentationDropdownList" description: "Deletes a groupPolicyPresentationDropdownList."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [groupPolicyPresentationDropdownList](../resources/intune-grouppolicy-grouppolicypresentationdropdownlist.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 Grouppolicy Grouppolicypresentationdropdownlist Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationdropdownlist-get.md
Title: "Get groupPolicyPresentationDropdownList" description: "Read properties and relationships of the groupPolicyPresentationDropdownList object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [groupPolicyPresentationDropdownList](../resources/intune-grouppolicy-grouppolicypresentationdropdownlist.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: 655
} } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationdropdownlist List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationdropdownlist-list.md
Title: "List groupPolicyPresentationDropdownLists" description: "List properties and relationships of the groupPolicyPresentationDropdownList objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [groupPolicyPresentationDropdownList](../resources/intune-grouppolicy-grouppolicypresentationdropdownlist.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: 703
] } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationdropdownlist Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationdropdownlist-update.md
Title: "Update groupPolicyPresentationDropdownList" description: "Update the properties of a groupPolicyPresentationDropdownList object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [groupPolicyPresentationDropdownList](../resources/intune-grouppolicy-grouppolicypresentationdropdownlist.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: 602
"required": true } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationlistbox Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationlistbox-create.md
Title: "Create groupPolicyPresentationListBox" description: "Create a new groupPolicyPresentationListBox object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [groupPolicyPresentationListBox](../resources/intune-grouppolicy-grouppolicypresentationlistbox.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: 278
"valuePrefix": "Value Prefix value" } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationlistbox Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationlistbox-delete.md
Title: "Delete groupPolicyPresentationListBox" description: "Deletes a groupPolicyPresentationListBox."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [groupPolicyPresentationListBox](../resources/intune-grouppolicy-grouppolicypresentationlistbox.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 Grouppolicy Grouppolicypresentationlistbox Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationlistbox-get.md
Title: "Get groupPolicyPresentationListBox" description: "Read properties and relationships of the groupPolicyPresentationListBox object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [groupPolicyPresentationListBox](../resources/intune-grouppolicy-grouppolicypresentationlistbox.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: 309
} } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationlistbox List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationlistbox-list.md
Title: "List groupPolicyPresentationListBoxes" description: "List properties and relationships of the groupPolicyPresentationListBox objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [groupPolicyPresentationListBox](../resources/intune-grouppolicy-grouppolicypresentationlistbox.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: 335
] } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationlistbox Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationlistbox-update.md
Title: "Update groupPolicyPresentationListBox" description: "Update the properties of a groupPolicyPresentationListBox object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [groupPolicyPresentationListBox](../resources/intune-grouppolicy-grouppolicypresentationlistbox.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: 278
"valuePrefix": "Value Prefix value" } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationlongdecimaltextbox Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationlongdecimaltextbox-create.md
Title: "Create groupPolicyPresentationLongDecimalTextBox" description: "Create a new groupPolicyPresentationLongDecimalTextBox object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [groupPolicyPresentationLongDecimalTextBox](../resources/intune-grouppolicy-grouppolicypresentationlongdecimaltextbox.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: 338
"maxValue": 8 } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationlongdecimaltextbox Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationlongdecimaltextbox-delete.md
Title: "Delete groupPolicyPresentationLongDecimalTextBox" description: "Deletes a groupPolicyPresentationLongDecimalTextBox."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [groupPolicyPresentationLongDecimalTextBox](../resources/intune-grouppolicy-grouppolicypresentationlongdecimaltextbox.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 Grouppolicy Grouppolicypresentationlongdecimaltextbox Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationlongdecimaltextbox-get.md
Title: "Get groupPolicyPresentationLongDecimalTextBox" description: "Read properties and relationships of the groupPolicyPresentationLongDecimalTextBox object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [groupPolicyPresentationLongDecimalTextBox](../resources/intune-grouppolicy-grouppolicypresentationlongdecimaltextbox.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: 377
} } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationlongdecimaltextbox List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationlongdecimaltextbox-list.md
Title: "List groupPolicyPresentationLongDecimalTextBoxes" description: "List properties and relationships of the groupPolicyPresentationLongDecimalTextBox objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [groupPolicyPresentationLongDecimalTextBox](../resources/intune-grouppolicy-grouppolicypresentationlongdecimaltextbox.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: 411
] } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationlongdecimaltextbox Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationlongdecimaltextbox-update.md
Title: "Update groupPolicyPresentationLongDecimalTextBox" description: "Update the properties of a groupPolicyPresentationLongDecimalTextBox object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [groupPolicyPresentationLongDecimalTextBox](../resources/intune-grouppolicy-grouppolicypresentationlongdecimaltextbox.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: 338
"maxValue": 8 } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationmultitextbox Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationmultitextbox-create.md
Title: "Create groupPolicyPresentationMultiTextBox" description: "Create a new groupPolicyPresentationMultiTextBox object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [groupPolicyPresentationMultiTextBox](../resources/intune-grouppolicy-grouppolicypresentationmultitextbox.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: 278
"maxStrings": 10 } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationmultitextbox Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationmultitextbox-delete.md
Title: "Delete groupPolicyPresentationMultiTextBox" description: "Deletes a groupPolicyPresentationMultiTextBox."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [groupPolicyPresentationMultiTextBox](../resources/intune-grouppolicy-grouppolicypresentationmultitextbox.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 Grouppolicy Grouppolicypresentationmultitextbox Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationmultitextbox-get.md
Title: "Get groupPolicyPresentationMultiTextBox" description: "Read properties and relationships of the groupPolicyPresentationMultiTextBox object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [groupPolicyPresentationMultiTextBox](../resources/intune-grouppolicy-grouppolicypresentationmultitextbox.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: 311
} } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationmultitextbox List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationmultitextbox-list.md
Title: "List groupPolicyPresentationMultiTextBoxes" description: "List properties and relationships of the groupPolicyPresentationMultiTextBox objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [groupPolicyPresentationMultiTextBox](../resources/intune-grouppolicy-grouppolicypresentationmultitextbox.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: 339
] } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationmultitextbox Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationmultitextbox-update.md
Title: "Update groupPolicyPresentationMultiTextBox" description: "Update the properties of a groupPolicyPresentationMultiTextBox object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [groupPolicyPresentationMultiTextBox](../resources/intune-grouppolicy-grouppolicypresentationmultitextbox.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: 278
"maxStrings": 10 } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationtext Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationtext-create.md
Title: "Create groupPolicyPresentationText" description: "Create a new groupPolicyPresentationText object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [groupPolicyPresentationText](../resources/intune-grouppolicy-grouppolicypresentationtext.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: 209
"lastModifiedDateTime": "2017-01-01T00:00:35.1329464-08:00" } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationtext Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationtext-delete.md
Title: "Delete groupPolicyPresentationText" description: "Deletes a groupPolicyPresentationText."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [groupPolicyPresentationText](../resources/intune-grouppolicy-grouppolicypresentationtext.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 Grouppolicy Grouppolicypresentationtext Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationtext-get.md
Title: "Get groupPolicyPresentationText" description: "Read properties and relationships of the groupPolicyPresentationText object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [groupPolicyPresentationText](../resources/intune-grouppolicy-grouppolicypresentationtext.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: 236
} } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationtext List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationtext-list.md
Title: "List groupPolicyPresentationTexts" description: "List properties and relationships of the groupPolicyPresentationText objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [groupPolicyPresentationText](../resources/intune-grouppolicy-grouppolicypresentationtext.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: 258
] } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationtext Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationtext-update.md
Title: "Update groupPolicyPresentationText" description: "Update the properties of a groupPolicyPresentationText object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [groupPolicyPresentationText](../resources/intune-grouppolicy-grouppolicypresentationtext.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: 209
"lastModifiedDateTime": "2017-01-01T00:00:35.1329464-08:00" } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationtextbox Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationtextbox-create.md
Title: "Create groupPolicyPresentationTextBox" description: "Create a new groupPolicyPresentationTextBox object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [groupPolicyPresentationTextBox](../resources/intune-grouppolicy-grouppolicypresentationtextbox.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: 294
"maxLength": 9 } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationtextbox Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationtextbox-delete.md
Title: "Delete groupPolicyPresentationTextBox" description: "Deletes a groupPolicyPresentationTextBox."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [groupPolicyPresentationTextBox](../resources/intune-grouppolicy-grouppolicypresentationtextbox.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 Grouppolicy Grouppolicypresentationtextbox Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationtextbox-get.md
Title: "Get groupPolicyPresentationTextBox" description: "Read properties and relationships of the groupPolicyPresentationTextBox object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [groupPolicyPresentationTextBox](../resources/intune-grouppolicy-grouppolicypresentationtextbox.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: 327
} } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationtextbox List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationtextbox-list.md
Title: "List groupPolicyPresentationTextBoxes" description: "List properties and relationships of the groupPolicyPresentationTextBox objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [groupPolicyPresentationTextBox](../resources/intune-grouppolicy-grouppolicypresentationtextbox.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: 355
] } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationtextbox Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationtextbox-update.md
Title: "Update groupPolicyPresentationTextBox" description: "Update the properties of a groupPolicyPresentationTextBox object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [groupPolicyPresentationTextBox](../resources/intune-grouppolicy-grouppolicypresentationtextbox.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: 294
"maxLength": 9 } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationvalue Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationvalue-create.md
Title: "Create groupPolicyPresentationValue" description: "Create a new groupPolicyPresentationValue object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [groupPolicyPresentationValue](../resources/intune-grouppolicy-grouppolicypresentationvalue.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
"id": "8132eaab-eaab-8132-abea-3281abea3281" } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationvalue Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationvalue-delete.md
Title: "Delete groupPolicyPresentationValue" description: "Deletes a groupPolicyPresentationValue."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [groupPolicyPresentationValue](../resources/intune-grouppolicy-grouppolicypresentationvalue.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 Grouppolicy Grouppolicypresentationvalue Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationvalue-get.md
Title: "Get groupPolicyPresentationValue" description: "Read properties and relationships of the groupPolicyPresentationValue object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [groupPolicyPresentationValue](../resources/intune-grouppolicy-grouppolicypresentationvalue.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 Grouppolicy Grouppolicypresentationvalue List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationvalue-list.md
Title: "List groupPolicyPresentationValues" description: "List properties and relationships of the groupPolicyPresentationValue objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [groupPolicyPresentationValue](../resources/intune-grouppolicy-grouppolicypresentationvalue.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: 291
] } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationvalue Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationvalue-update.md
Title: "Update groupPolicyPresentationValue" description: "Update the properties of a groupPolicyPresentationValue object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [groupPolicyPresentationValue](../resources/intune-grouppolicy-grouppolicypresentationvalue.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
"id": "8132eaab-eaab-8132-abea-3281abea3281" } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationvalueboolean Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationvalueboolean-create.md
Title: "Create groupPolicyPresentationValueBoolean" description: "Create a new groupPolicyPresentationValueBoolean object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [groupPolicyPresentationValueBoolean](../resources/intune-grouppolicy-grouppolicypresentationvalueboolean.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: 267
"value": true } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationvalueboolean Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationvalueboolean-delete.md
Title: "Delete groupPolicyPresentationValueBoolean" description: "Deletes a groupPolicyPresentationValueBoolean."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [groupPolicyPresentationValueBoolean](../resources/intune-grouppolicy-grouppolicypresentationvalueboolean.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 Grouppolicy Grouppolicypresentationvalueboolean Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationvalueboolean-get.md
Title: "Get groupPolicyPresentationValueBoolean" description: "Read properties and relationships of the groupPolicyPresentationValueBoolean object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [groupPolicyPresentationValueBoolean](../resources/intune-grouppolicy-grouppolicypresentationvalueboolean.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: 296
} } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationvalueboolean List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationvalueboolean-list.md
Title: "List groupPolicyPresentationValueBooleans" description: "List properties and relationships of the groupPolicyPresentationValueBoolean objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [groupPolicyPresentationValueBoolean](../resources/intune-grouppolicy-grouppolicypresentationvalueboolean.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: 320
] } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationvalueboolean Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationvalueboolean-update.md
Title: "Update groupPolicyPresentationValueBoolean" description: "Update the properties of a groupPolicyPresentationValueBoolean object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [groupPolicyPresentationValueBoolean](../resources/intune-grouppolicy-grouppolicypresentationvalueboolean.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: 267
"value": true } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationvaluedecimal Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationvaluedecimal-create.md
Title: "Create groupPolicyPresentationValueDecimal" description: "Create a new groupPolicyPresentationValueDecimal object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [groupPolicyPresentationValueDecimal](../resources/intune-grouppolicy-grouppolicypresentationvaluedecimal.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: 264
"value": 5 } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationvaluedecimal Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationvaluedecimal-delete.md
Title: "Delete groupPolicyPresentationValueDecimal" description: "Deletes a groupPolicyPresentationValueDecimal."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [groupPolicyPresentationValueDecimal](../resources/intune-grouppolicy-grouppolicypresentationvaluedecimal.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 Grouppolicy Grouppolicypresentationvaluedecimal Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationvaluedecimal-get.md
Title: "Get groupPolicyPresentationValueDecimal" description: "Read properties and relationships of the groupPolicyPresentationValueDecimal object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [groupPolicyPresentationValueDecimal](../resources/intune-grouppolicy-grouppolicypresentationvaluedecimal.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: 293
} } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationvaluedecimal List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationvaluedecimal-list.md
Title: "List groupPolicyPresentationValueDecimals" description: "List properties and relationships of the groupPolicyPresentationValueDecimal objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [groupPolicyPresentationValueDecimal](../resources/intune-grouppolicy-grouppolicypresentationvaluedecimal.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: 317
] } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationvaluedecimal Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationvaluedecimal-update.md
Title: "Update groupPolicyPresentationValueDecimal" description: "Update the properties of a groupPolicyPresentationValueDecimal object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [groupPolicyPresentationValueDecimal](../resources/intune-grouppolicy-grouppolicypresentationvaluedecimal.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: 264
"value": 5 } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationvaluelist Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationvaluelist-create.md
Title: "Create groupPolicyPresentationValueList" description: "Create a new groupPolicyPresentationValueList object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [groupPolicyPresentationValueList](../resources/intune-grouppolicy-grouppolicypresentationvaluelist.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 g
|lastModifiedDateTime|DateTimeOffset|The date and time the object was last modified. Inherited from [groupPolicyPresentationValue](../resources/intune-grouppolicy-grouppolicypresentationvalue.md)| |createdDateTime|DateTimeOffset|The date and time the object was created. Inherited from [groupPolicyPresentationValue](../resources/intune-grouppolicy-grouppolicypresentationvalue.md)| |id|String|Key of the entity. Inherited from [groupPolicyPresentationValue](../resources/intune-grouppolicy-grouppolicypresentationvalue.md)|
-|values|[keyValuePair](../resources/intune-shared-keyvaluepair.md) collection|A list of pairs for the associated presentation.|
+|values|[keyValuePair](../resources/intune-grouppolicy-keyvaluepair.md) collection|A list of pairs for the associated presentation.|
Content-Length: 394
] } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationvaluelist Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationvaluelist-delete.md
Title: "Delete groupPolicyPresentationValueList" description: "Deletes a groupPolicyPresentationValueList."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [groupPolicyPresentationValueList](../resources/intune-grouppolicy-grouppolicypresentationvaluelist.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 Grouppolicy Grouppolicypresentationvaluelist Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationvaluelist-get.md
Title: "Get groupPolicyPresentationValueList" description: "Read properties and relationships of the groupPolicyPresentationValueList object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [groupPolicyPresentationValueList](../resources/intune-grouppolicy-grouppolicypresentationvaluelist.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: 435
} } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationvaluelist List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationvaluelist-list.md
Title: "List groupPolicyPresentationValueLists" description: "List properties and relationships of the groupPolicyPresentationValueList objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [groupPolicyPresentationValueList](../resources/intune-grouppolicy-grouppolicypresentationvaluelist.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: 471
] } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationvaluelist Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationvaluelist-update.md
Title: "Update groupPolicyPresentationValueList" description: "Update the properties of a groupPolicyPresentationValueList object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [groupPolicyPresentationValueList](../resources/intune-grouppolicy-grouppolicypresentationvaluelist.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 [
|lastModifiedDateTime|DateTimeOffset|The date and time the object was last modified. Inherited from [groupPolicyPresentationValue](../resources/intune-grouppolicy-grouppolicypresentationvalue.md)| |createdDateTime|DateTimeOffset|The date and time the object was created. Inherited from [groupPolicyPresentationValue](../resources/intune-grouppolicy-grouppolicypresentationvalue.md)| |id|String|Key of the entity. Inherited from [groupPolicyPresentationValue](../resources/intune-grouppolicy-grouppolicypresentationvalue.md)|
-|values|[keyValuePair](../resources/intune-shared-keyvaluepair.md) collection|A list of pairs for the associated presentation.|
+|values|[keyValuePair](../resources/intune-grouppolicy-keyvaluepair.md) collection|A list of pairs for the associated presentation.|
Content-Length: 394
] } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationvaluelongdecimal Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationvaluelongdecimal-create.md
Title: "Create groupPolicyPresentationValueLongDecimal" description: "Create a new groupPolicyPresentationValueLongDecimal object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [groupPolicyPresentationValueLongDecimal](../resources/intune-grouppolicy-grouppolicypresentationvaluelongdecimal.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: 268
"value": 5 } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationvaluelongdecimal Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationvaluelongdecimal-delete.md
Title: "Delete groupPolicyPresentationValueLongDecimal" description: "Deletes a groupPolicyPresentationValueLongDecimal."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [groupPolicyPresentationValueLongDecimal](../resources/intune-grouppolicy-grouppolicypresentationvaluelongdecimal.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 Grouppolicy Grouppolicypresentationvaluelongdecimal Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationvaluelongdecimal-get.md
Title: "Get groupPolicyPresentationValueLongDecimal" description: "Read properties and relationships of the groupPolicyPresentationValueLongDecimal object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [groupPolicyPresentationValueLongDecimal](../resources/intune-grouppolicy-grouppolicypresentationvaluelongdecimal.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: 297
} } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationvaluelongdecimal List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationvaluelongdecimal-list.md
Title: "List groupPolicyPresentationValueLongDecimals" description: "List properties and relationships of the groupPolicyPresentationValueLongDecimal objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [groupPolicyPresentationValueLongDecimal](../resources/intune-grouppolicy-grouppolicypresentationvaluelongdecimal.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: 321
] } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationvaluelongdecimal Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationvaluelongdecimal-update.md
Title: "Update groupPolicyPresentationValueLongDecimal" description: "Update the properties of a groupPolicyPresentationValueLongDecimal object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [groupPolicyPresentationValueLongDecimal](../resources/intune-grouppolicy-grouppolicypresentationvaluelongdecimal.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: 268
"value": 5 } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationvaluemultitext Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationvaluemultitext-create.md
Title: "Create groupPolicyPresentationValueMultiText" description: "Create a new groupPolicyPresentationValueMultiText object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [groupPolicyPresentationValueMultiText](../resources/intune-grouppolicy-grouppolicypresentationvaluemultitext.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: 292
] } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationvaluemultitext Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationvaluemultitext-delete.md
Title: "Delete groupPolicyPresentationValueMultiText" description: "Deletes a groupPolicyPresentationValueMultiText."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [groupPolicyPresentationValueMultiText](../resources/intune-grouppolicy-grouppolicypresentationvaluemultitext.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 Grouppolicy Grouppolicypresentationvaluemultitext Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationvaluemultitext-get.md
Title: "Get groupPolicyPresentationValueMultiText" description: "Read properties and relationships of the groupPolicyPresentationValueMultiText object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [groupPolicyPresentationValueMultiText](../resources/intune-grouppolicy-grouppolicypresentationvaluemultitext.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: 325
} } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationvaluemultitext List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationvaluemultitext-list.md
Title: "List groupPolicyPresentationValueMultiTexts" description: "List properties and relationships of the groupPolicyPresentationValueMultiText objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [groupPolicyPresentationValueMultiText](../resources/intune-grouppolicy-grouppolicypresentationvaluemultitext.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: 353
] } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationvaluemultitext Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationvaluemultitext-update.md
Title: "Update groupPolicyPresentationValueMultiText" description: "Update the properties of a groupPolicyPresentationValueMultiText object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [groupPolicyPresentationValueMultiText](../resources/intune-grouppolicy-grouppolicypresentationvaluemultitext.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: 292
] } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationvaluetext Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationvaluetext-create.md
Title: "Create groupPolicyPresentationValueText" description: "Create a new groupPolicyPresentationValueText object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [groupPolicyPresentationValueText](../resources/intune-grouppolicy-grouppolicypresentationvaluetext.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: 273
"value": "Value value" } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationvaluetext Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationvaluetext-delete.md
Title: "Delete groupPolicyPresentationValueText" description: "Deletes a groupPolicyPresentationValueText."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [groupPolicyPresentationValueText](../resources/intune-grouppolicy-grouppolicypresentationvaluetext.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 Grouppolicy Grouppolicypresentationvaluetext Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationvaluetext-get.md
Title: "Get groupPolicyPresentationValueText" description: "Read properties and relationships of the groupPolicyPresentationValueText object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [groupPolicyPresentationValueText](../resources/intune-grouppolicy-grouppolicypresentationvaluetext.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: 302
} } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationvaluetext List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationvaluetext-list.md
Title: "List groupPolicyPresentationValueTexts" description: "List properties and relationships of the groupPolicyPresentationValueText objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [groupPolicyPresentationValueText](../resources/intune-grouppolicy-grouppolicypresentationvaluetext.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: 326
] } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationvaluetext Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicypresentationvaluetext-update.md
Title: "Update groupPolicyPresentationValueText" description: "Update the properties of a groupPolicyPresentationValueText object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [groupPolicyPresentationValueText](../resources/intune-grouppolicy-grouppolicypresentationvaluetext.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: 273
"value": "Value value" } ```-----
v1.0 Intune Grouppolicy Grouppolicyuploadedcategory Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicyuploadedcategory-create.md
Title: "Create groupPolicyUploadedCategory" description: "Create a new groupPolicyUploadedCategory object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [groupPolicyUploadedCategory](../resources/intune-grouppolicy-grouppolicyuploadedcategory.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: 273
"lastModifiedDateTime": "2017-01-01T00:00:35.1329464-08:00" } ```-----
v1.0 Intune Grouppolicy Grouppolicyuploadedcategory Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicyuploadedcategory-delete.md
Title: "Delete groupPolicyUploadedCategory" description: "Deletes a groupPolicyUploadedCategory."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [groupPolicyUploadedCategory](../resources/intune-grouppolicy-grouppolicyuploadedcategory.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 Grouppolicy Grouppolicyuploadedcategory Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicyuploadedcategory-get.md
Title: "Get groupPolicyUploadedCategory" description: "Read properties and relationships of the groupPolicyUploadedCategory object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [groupPolicyUploadedCategory](../resources/intune-grouppolicy-grouppolicyuploadedcategory.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: 304
} } ```-----
v1.0 Intune Grouppolicy Grouppolicyuploadedcategory List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicyuploadedcategory-list.md
Title: "List groupPolicyUploadedCategories" description: "List properties and relationships of the groupPolicyUploadedCategory objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [groupPolicyUploadedCategory](../resources/intune-grouppolicy-grouppolicyuploadedcategory.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: 330
] } ```-----
v1.0 Intune Grouppolicy Grouppolicyuploadedcategory Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicyuploadedcategory-update.md
Title: "Update groupPolicyUploadedCategory" description: "Update the properties of a groupPolicyUploadedCategory object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [groupPolicyUploadedCategory](../resources/intune-grouppolicy-grouppolicyuploadedcategory.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: 273
"lastModifiedDateTime": "2017-01-01T00:00:35.1329464-08:00" } ```-----
v1.0 Intune Grouppolicy Grouppolicyuploadeddefinition Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicyuploadeddefinition-create.md
Title: "Create groupPolicyUploadedDefinition" description: "Create a new groupPolicyUploadedDefinition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [groupPolicyUploadedDefinition](../resources/intune-grouppolicy-grouppolicyuploadeddefinition.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
"lastModifiedDateTime": "2017-01-01T00:00:35.1329464-08:00" } ```-----
v1.0 Intune Grouppolicy Grouppolicyuploadeddefinition Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicyuploadeddefinition-delete.md
Title: "Delete groupPolicyUploadedDefinition" description: "Deletes a groupPolicyUploadedDefinition."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [groupPolicyUploadedDefinition](../resources/intune-grouppolicy-grouppolicyuploadeddefinition.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 Grouppolicy Grouppolicyuploadeddefinition Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicyuploadeddefinition-get.md
Title: "Get groupPolicyUploadedDefinition" description: "Read properties and relationships of the groupPolicyUploadedDefinition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [groupPolicyUploadedDefinition](../resources/intune-grouppolicy-grouppolicyuploadeddefinition.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: 698
} } ```-----
v1.0 Intune Grouppolicy Grouppolicyuploadeddefinition List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicyuploadeddefinition-list.md
Title: "List groupPolicyUploadedDefinitions" description: "List properties and relationships of the groupPolicyUploadedDefinition objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [groupPolicyUploadedDefinition](../resources/intune-grouppolicy-grouppolicyuploadeddefinition.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: 740
] } ```-----
v1.0 Intune Grouppolicy Grouppolicyuploadeddefinition Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicyuploadeddefinition-update.md
Title: "Update groupPolicyUploadedDefinition" description: "Update the properties of a groupPolicyUploadedDefinition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [groupPolicyUploadedDefinition](../resources/intune-grouppolicy-grouppolicyuploadeddefinition.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
"lastModifiedDateTime": "2017-01-01T00:00:35.1329464-08:00" } ```-----
v1.0 Intune Grouppolicy Grouppolicyuploadeddefinitionfile Addlanguagefiles https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicyuploadeddefinitionfile-addlanguagefiles.md
Title: "addLanguageFiles 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 Grouppolicy Grouppolicyuploadeddefinitionfile Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicyuploadeddefinitionfile-create.md
Title: "Create groupPolicyUploadedDefinitionFile" description: "Create a new groupPolicyUploadedDefinitionFile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [groupPolicyUploadedDefinitionFile](../resources/intune-grouppolicy-grouppolicyuploadeddefinitionfile.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: 1035
] } ```-----
v1.0 Intune Grouppolicy Grouppolicyuploadeddefinitionfile Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicyuploadeddefinitionfile-delete.md
Title: "Delete groupPolicyUploadedDefinitionFile" description: "Deletes a groupPolicyUploadedDefinitionFile."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [groupPolicyUploadedDefinitionFile](../resources/intune-grouppolicy-grouppolicyuploadeddefinitionfile.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 Grouppolicy Grouppolicyuploadeddefinitionfile Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicyuploadeddefinitionfile-get.md
Title: "Get groupPolicyUploadedDefinitionFile" description: "Read properties and relationships of the groupPolicyUploadedDefinitionFile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [groupPolicyUploadedDefinitionFile](../resources/intune-grouppolicy-grouppolicyuploadeddefinitionfile.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: 1108
} } ```-----
v1.0 Intune Grouppolicy Grouppolicyuploadeddefinitionfile List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicyuploadeddefinitionfile-list.md
Title: "List groupPolicyUploadedDefinitionFiles" description: "List properties and relationships of the groupPolicyUploadedDefinitionFile objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [groupPolicyUploadedDefinitionFile](../resources/intune-grouppolicy-grouppolicyuploadeddefinitionfile.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: 1176
] } ```-----
v1.0 Intune Grouppolicy Grouppolicyuploadeddefinitionfile Remove https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicyuploadeddefinitionfile-remove.md
Title: "remove 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 Grouppolicy Grouppolicyuploadeddefinitionfile Removelanguagefiles https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicyuploadeddefinitionfile-removelanguagefiles.md
Title: "removeLanguageFiles 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 Grouppolicy Grouppolicyuploadeddefinitionfile Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicyuploadeddefinitionfile-update.md
Title: "Update groupPolicyUploadedDefinitionFile" description: "Update the properties of a groupPolicyUploadedDefinitionFile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [groupPolicyUploadedDefinitionFile](../resources/intune-grouppolicy-grouppolicyuploadeddefinitionfile.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: 1035
] } ```-----
v1.0 Intune Grouppolicy Grouppolicyuploadeddefinitionfile Updatelanguagefiles https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicyuploadeddefinitionfile-updatelanguagefiles.md
Title: "updateLanguageFiles 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 Grouppolicy Grouppolicyuploadeddefinitionfile Uploadnewversion https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicyuploadeddefinitionfile-uploadnewversion.md
Title: "uploadNewVersion 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 Grouppolicy Grouppolicyuploadedpresentation Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicyuploadedpresentation-create.md
Title: "Create groupPolicyUploadedPresentation" description: "Create a new groupPolicyUploadedPresentation object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [groupPolicyUploadedPresentation](../resources/intune-grouppolicy-grouppolicyuploadedpresentation.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: 213
"lastModifiedDateTime": "2017-01-01T00:00:35.1329464-08:00" } ```-----
v1.0 Intune Grouppolicy Grouppolicyuploadedpresentation Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicyuploadedpresentation-delete.md
Title: "Delete groupPolicyUploadedPresentation" description: "Deletes a groupPolicyUploadedPresentation."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [groupPolicyUploadedPresentation](../resources/intune-grouppolicy-grouppolicyuploadedpresentation.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 Grouppolicy Grouppolicyuploadedpresentation Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicyuploadedpresentation-get.md
Title: "Get groupPolicyUploadedPresentation" description: "Read properties and relationships of the groupPolicyUploadedPresentation object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [groupPolicyUploadedPresentation](../resources/intune-grouppolicy-grouppolicyuploadedpresentation.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: 240
} } ```-----
v1.0 Intune Grouppolicy Grouppolicyuploadedpresentation List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicyuploadedpresentation-list.md
Title: "List groupPolicyUploadedPresentations" description: "List properties and relationships of the groupPolicyUploadedPresentation objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [groupPolicyUploadedPresentation](../resources/intune-grouppolicy-grouppolicyuploadedpresentation.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: 262
] } ```-----
v1.0 Intune Grouppolicy Grouppolicyuploadedpresentation Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-grouppolicy-grouppolicyuploadedpresentation-update.md
Title: "Update groupPolicyUploadedPresentation" description: "Update the properties of a groupPolicyUploadedPresentation object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [groupPolicyUploadedPresentation](../resources/intune-grouppolicy-grouppolicyuploadedpresentation.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: 213
"lastModifiedDateTime": "2017-01-01T00:00:35.1329464-08:00" } ```-----
v1.0 Intune Mam Androidmanagedappregistration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-androidmanagedappregistration-create.md
Title: "Create androidManagedAppRegistration" description: "Create a new androidManagedAppRegistration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [androidManagedAppRegistration](../resources/intune-mam-androidmanagedappregistration.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: 987
"patchVersion": "Patch Version value" } ```-----
v1.0 Intune Mam Androidmanagedappregistration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-androidmanagedappregistration-get.md
Title: "Get androidManagedAppRegistration" description: "Read properties and relationships of the androidManagedAppRegistration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidManagedAppRegistration](../resources/intune-mam-androidmanagedappregistration.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: 1054
} } ```-----
v1.0 Intune Mam Androidmanagedappregistration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-androidmanagedappregistration-list.md
Title: "List androidManagedAppRegistrations" description: "List properties and relationships of the androidManagedAppRegistration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidManagedAppRegistration](../resources/intune-mam-androidmanagedappregistration.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 Mam Defaultmanagedappprotection Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-defaultmanagedappprotection-create.md
Title: "Create defaultManagedAppProtection" description: "Create a new defaultManagedAppProtection object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [defaultManagedAppProtection](../resources/intune-mam-defaultmanagedappprotection.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 d
|encryptAppData|Boolean|Indicates whether managed-app data should be encrypted. (Android only)| |disableAppEncryptionIfDeviceEncryptionIsEnabled|Boolean|When this setting is enabled, app level encryption is disabled if device level encryption is enabled. (Android only)| |minimumRequiredSdkVersion|String|Versions less than the specified version will block the managed app from accessing company data. (iOS Only)|
-|customSettings|[keyValuePair](../resources/intune-shared-keyvaluepair.md) collection|A set of string key and string value pairs to be sent to the affected users, unalterned by this service|
+|customSettings|[keyValuePair](../resources/intune-mam-keyvaluepair.md) collection|A set of string key and string value pairs to be sent to the affected users, unalterned by this service|
|deployedAppCount|Int32|Count of apps to which the current policy is deployed.| |minimumRequiredPatchVersion|String|Define the oldest required Android security patch level a user can have to gain secure access to the app. (Android only)| |minimumWarningPatchVersion|String|Define the oldest recommended Android security patch level a user can have for secure access to the app. (Android only)|
-|exemptedAppProtocols|[keyValuePair](../resources/intune-shared-keyvaluepair.md) collection|iOS Apps in this list will be exempt from the policy and will be able to receive data from managed apps. (iOS Only)|
-|exemptedAppPackages|[keyValuePair](../resources/intune-shared-keyvaluepair.md) collection|Android App packages in this list will be exempt from the policy and will be able to receive data from managed apps. (Android only)|
+|exemptedAppProtocols|[keyValuePair](../resources/intune-mam-keyvaluepair.md) collection|iOS Apps in this list will be exempt from the policy and will be able to receive data from managed apps. (iOS Only)|
+|exemptedAppPackages|[keyValuePair](../resources/intune-mam-keyvaluepair.md) collection|Android App packages in this list will be exempt from the policy and will be able to receive data from managed apps. (Android only)|
|faceIdBlocked|Boolean|Indicates whether use of the FaceID is allowed in place of a pin if PinRequired is set to True. (iOS Only)| |minimumWipeSdkVersion|String|Versions less than the specified version will block the managed app from accessing company data.| |minimumWipePatchVersion|String|Android security patch level less than or equal to the specified value will wipe the managed app and the associated company data. (Android only)|
Content-Length: 6030
"minimumWarningSdkVersion": "Minimum Warning Sdk Version value" } ```-----
v1.0 Intune Mam Defaultmanagedappprotection Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-defaultmanagedappprotection-delete.md
Title: "Delete defaultManagedAppProtection" description: "Deletes a defaultManagedAppProtection."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [defaultManagedAppProtection](../resources/intune-mam-defaultmanagedappprotection.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 Mam Defaultmanagedappprotection Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-defaultmanagedappprotection-get.md
Title: "Get defaultManagedAppProtection" description: "Read properties and relationships of the defaultManagedAppProtection object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [defaultManagedAppProtection](../resources/intune-mam-defaultmanagedappprotection.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: 6313
} } ```-----
v1.0 Intune Mam Defaultmanagedappprotection List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-defaultmanagedappprotection-list.md
Title: "List defaultManagedAppProtections" description: "List properties and relationships of the defaultManagedAppProtection objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [defaultManagedAppProtection](../resources/intune-mam-defaultmanagedappprotection.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: 6591
] } ```-----
v1.0 Intune Mam Defaultmanagedappprotection Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-defaultmanagedappprotection-update.md
Title: "Update defaultManagedAppProtection" description: "Update the properties of a defaultManagedAppProtection object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [defaultManagedAppProtection](../resources/intune-mam-defaultmanagedappprotection.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 [
|encryptAppData|Boolean|Indicates whether managed-app data should be encrypted. (Android only)| |disableAppEncryptionIfDeviceEncryptionIsEnabled|Boolean|When this setting is enabled, app level encryption is disabled if device level encryption is enabled. (Android only)| |minimumRequiredSdkVersion|String|Versions less than the specified version will block the managed app from accessing company data. (iOS Only)|
-|customSettings|[keyValuePair](../resources/intune-shared-keyvaluepair.md) collection|A set of string key and string value pairs to be sent to the affected users, unalterned by this service|
+|customSettings|[keyValuePair](../resources/intune-mam-keyvaluepair.md) collection|A set of string key and string value pairs to be sent to the affected users, unalterned by this service|
|deployedAppCount|Int32|Count of apps to which the current policy is deployed.| |minimumRequiredPatchVersion|String|Define the oldest required Android security patch level a user can have to gain secure access to the app. (Android only)| |minimumWarningPatchVersion|String|Define the oldest recommended Android security patch level a user can have for secure access to the app. (Android only)|
-|exemptedAppProtocols|[keyValuePair](../resources/intune-shared-keyvaluepair.md) collection|iOS Apps in this list will be exempt from the policy and will be able to receive data from managed apps. (iOS Only)|
-|exemptedAppPackages|[keyValuePair](../resources/intune-shared-keyvaluepair.md) collection|Android App packages in this list will be exempt from the policy and will be able to receive data from managed apps. (Android only)|
+|exemptedAppProtocols|[keyValuePair](../resources/intune-mam-keyvaluepair.md) collection|iOS Apps in this list will be exempt from the policy and will be able to receive data from managed apps. (iOS Only)|
+|exemptedAppPackages|[keyValuePair](../resources/intune-mam-keyvaluepair.md) collection|Android App packages in this list will be exempt from the policy and will be able to receive data from managed apps. (Android only)|
|faceIdBlocked|Boolean|Indicates whether use of the FaceID is allowed in place of a pin if PinRequired is set to True. (iOS Only)| |minimumWipeSdkVersion|String|Versions less than the specified version will block the managed app from accessing company data.| |minimumWipePatchVersion|String|Android security patch level less than or equal to the specified value will wipe the managed app and the associated company data. (Android only)|
Content-Length: 6030
"minimumWarningSdkVersion": "Minimum Warning Sdk Version value" } ```-----
v1.0 Intune Mam Devicemanagementreports Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-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-mam-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: 137
} } ```-----
v1.0 Intune Mam Devicemanagementreports Getmobileapplicationmanagementappconfigurationreport https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-devicemanagementreports-getmobileapplicationmanagementappconfigurationreport.md
Title: "getMobileApplicationManagementAppConfigurationReport 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: 127
"value": "Z2V0TW9iaWxlQXBwbGljYXRpb25NYW5hZ2VtZW50QXBwQ29uZmlndXJhdGlvblJlcG9ydCBJbnR1bmUgRG9jIFNhbXBsZSA1NTA5OTkwMDg=" } ```-----
v1.0 Intune Mam Devicemanagementreports Getmobileapplicationmanagementappregistrationsummaryreport https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-devicemanagementreports-getmobileapplicationmanagementappregistrationsummaryreport.md
Title: "getMobileApplicationManagementAppRegistrationSummaryReport 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: 135
"value": "Z2V0TW9iaWxlQXBwbGljYXRpb25NYW5hZ2VtZW50QXBwUmVnaXN0cmF0aW9uU3VtbWFyeVJlcG9ydCBJbnR1bmUgRG9jIFNhbXBsZSAxMTM5NTMwMzc3" } ```-----
v1.0 Intune Mam Devicemanagementreports Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-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-mam-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: 114
"id": "d6a697d3-97d3-d6a6-d397-a6d6d397a6d6" } ```-----
v1.0 Intune Mam Iosmanagedappregistration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-iosmanagedappregistration-get.md
Title: "Get iosManagedAppRegistration" description: "Read properties and relationships of the iosManagedAppRegistration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [iosManagedAppRegistration](../resources/intune-mam-iosmanagedappregistration.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: 1000
} } ```-----
v1.0 Intune Mam Iosmanagedappregistration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-iosmanagedappregistration-list.md
Title: "List iosManagedAppRegistrations" description: "List properties and relationships of the iosManagedAppRegistration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [iosManagedAppRegistration](../resources/intune-mam-iosmanagedappregistration.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: 1060
] } ```-----
v1.0 Intune Mam Managedappconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-managedappconfiguration-get.md
Title: "Get managedAppConfiguration" description: "Read properties and relationships of the managedAppConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [managedAppConfiguration](../resources/intune-mam-managedappconfiguration.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: 618
} } ```-----
v1.0 Intune Mam Managedappconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-managedappconfiguration-list.md
Title: "List managedAppConfigurations" description: "List properties and relationships of the managedAppConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [managedAppConfiguration](../resources/intune-mam-managedappconfiguration.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: 666
] } ```-----
v1.0 Intune Mam Managedappoperation Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-managedappoperation-create.md
Title: "Create managedAppOperation" description: "Create a new managedAppOperation object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [managedAppOperation](../resources/intune-mam-managedappoperation.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: 272
"version": "Version value" } ```-----
v1.0 Intune Mam Managedappoperation Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-managedappoperation-delete.md
Title: "Delete managedAppOperation" description: "Deletes a managedAppOperation."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [managedAppOperation](../resources/intune-mam-managedappoperation.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 Mam Managedappoperation Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-managedappoperation-get.md
Title: "Get managedAppOperation" description: "Read properties and relationships of the managedAppOperation object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [managedAppOperation](../resources/intune-mam-managedappoperation.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: 303
} } ```-----
v1.0 Intune Mam Managedappoperation List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-managedappoperation-list.md
Title: "List managedAppOperations" description: "List properties and relationships of the managedAppOperation objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [managedAppOperation](../resources/intune-mam-managedappoperation.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: 329
] } ```-----
v1.0 Intune Mam Managedappoperation Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-managedappoperation-update.md
Title: "Update managedAppOperation" description: "Update the properties of a managedAppOperation object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [managedAppOperation](../resources/intune-mam-managedappoperation.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: 272
"version": "Version value" } ```-----
v1.0 Intune Mam Managedapppolicy Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-managedapppolicy-get.md
Title: "Get managedAppPolicy" description: "Read properties and relationships of the managedAppPolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [managedAppPolicy](../resources/intune-mam-managedapppolicy.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: 441
} } ```-----
v1.0 Intune Mam Managedapppolicy List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-managedapppolicy-list.md
Title: "List managedAppPolicies" description: "List properties and relationships of the managedAppPolicy objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [managedAppPolicy](../resources/intune-mam-managedapppolicy.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: 475
] } ```-----
v1.0 Intune Mam Managedapppolicy Targetapps https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-managedapppolicy-targetapps.md
Title: "targetApps 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 Mam Managedapppolicydeploymentsummary Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-managedapppolicydeploymentsummary-get.md
Title: "Get managedAppPolicyDeploymentSummary" description: "Read properties and relationships of the managedAppPolicyDeploymentSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [managedAppPolicyDeploymentSummary](../resources/intune-mam-managedapppolicydeploymentsummary.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: 689
} } ```-----
v1.0 Intune Mam Managedapppolicydeploymentsummary Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-managedapppolicydeploymentsummary-update.md
Title: "Update managedAppPolicyDeploymentSummary" description: "Update the properties of a managedAppPolicyDeploymentSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [managedAppPolicyDeploymentSummary](../resources/intune-mam-managedapppolicydeploymentsummary.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: 638
"version": "Version value" } ```-----
v1.0 Intune Mam Managedappprotection Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-managedappprotection-get.md
Title: "Get managedAppProtection" description: "Read properties and relationships of the managedAppProtection object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [managedAppProtection](../resources/intune-mam-managedappprotection.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: 2857
} } ```-----
v1.0 Intune Mam Managedappprotection List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-managedappprotection-list.md
Title: "List managedAppProtections" description: "List properties and relationships of the managedAppProtection objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [managedAppProtection](../resources/intune-mam-managedappprotection.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: 2991
] } ```-----
v1.0 Intune Mam Managedappprotection Targetapps https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-managedappprotection-targetapps.md
Title: "targetApps 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 Mam Managedappregistration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-managedappregistration-get.md
Title: "Get managedAppRegistration" description: "Read properties and relationships of the managedAppRegistration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [managedAppRegistration](../resources/intune-mam-managedappregistration.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
} } ```-----
v1.0 Intune Mam Managedappregistration Getuseridswithflaggedappregistration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-managedappregistration-getuseridswithflaggedappregistration.md
Title: "getUserIdsWithFlaggedAppRegistration 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: 79
] } ```-----
v1.0 Intune Mam Managedappregistration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-managedappregistration-list.md
Title: "List managedAppRegistrations" description: "List properties and relationships of the managedAppRegistration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [managedAppRegistration](../resources/intune-mam-managedappregistration.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: 1064
] } ```-----
v1.0 Intune Mam Managedappstatus Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-managedappstatus-get.md
Title: "Get managedAppStatus" description: "Read properties and relationships of the managedAppStatus object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [managedAppStatus](../resources/intune-mam-managedappstatus.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: 205
} } ```-----
v1.0 Intune Mam Managedappstatus List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-managedappstatus-list.md
Title: "List managedAppStatuses" description: "List properties and relationships of the managedAppStatus objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [managedAppStatus](../resources/intune-mam-managedappstatus.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: 227
] } ```-----
v1.0 Intune Mam Managedappstatusraw Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-managedappstatusraw-get.md
Title: "Get managedAppStatusRaw" description: "Read properties and relationships of the managedAppStatusRaw object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [managedAppStatusRaw](../resources/intune-mam-managedappstatusraw.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: 279
} } ```-----
v1.0 Intune Mam Managedappstatusraw List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-managedappstatusraw-list.md
Title: "List managedAppStatusRaws" description: "List properties and relationships of the managedAppStatusRaw objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [managedAppStatusRaw](../resources/intune-mam-managedappstatusraw.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: 307
] } ```-----
v1.0 Intune Mam Managedmobileapp Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-managedmobileapp-create.md
Title: "Create managedMobileApp" description: "Create a new managedMobileApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [managedMobileApp](../resources/intune-mam-managedmobileapp.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: 276
"version": "Version value" } ```-----
v1.0 Intune Mam Managedmobileapp Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-managedmobileapp-delete.md
Title: "Delete managedMobileApp" description: "Deletes a managedMobileApp."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [managedMobileApp](../resources/intune-mam-managedmobileapp.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 Mam Managedmobileapp Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-managedmobileapp-get.md
Title: "Get managedMobileApp" description: "Read properties and relationships of the managedMobileApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [managedMobileApp](../resources/intune-mam-managedmobileapp.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: 309
} } ```-----
v1.0 Intune Mam Managedmobileapp List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-managedmobileapp-list.md
Title: "List managedMobileApps" description: "List properties and relationships of the managedMobileApp objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [managedMobileApp](../resources/intune-mam-managedmobileapp.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: 337
] } ```-----
v1.0 Intune Mam Managedmobileapp Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-managedmobileapp-update.md
Title: "Update managedMobileApp" description: "Update the properties of a managedMobileApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [managedMobileApp](../resources/intune-mam-managedmobileapp.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: 276
"version": "Version value" } ```-----
v1.0 Intune Mam Targetedmanagedapppolicyassignment Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-targetedmanagedapppolicyassignment-delete.md
Title: "Delete targetedManagedAppPolicyAssignment" description: "Deletes a targetedManagedAppPolicyAssignment."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [targetedManagedAppPolicyAssignment](../resources/intune-mam-targetedmanagedapppolicyassignment.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 Mam Targetedmanagedapppolicyassignment Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-targetedmanagedapppolicyassignment-get.md
Title: "Get targetedManagedAppPolicyAssignment" description: "Read properties and relationships of the targetedManagedAppPolicyAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [targetedManagedAppPolicyAssignment](../resources/intune-mam-targetedmanagedapppolicyassignment.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: 542
} } ```-----
v1.0 Intune Mam Targetedmanagedapppolicyassignment List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-targetedmanagedapppolicyassignment-list.md
Title: "List targetedManagedAppPolicyAssignments" description: "List properties and relationships of the targetedManagedAppPolicyAssignment objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [targetedManagedAppPolicyAssignment](../resources/intune-mam-targetedmanagedapppolicyassignment.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: 576
] } ```-----
v1.0 Intune Mam Targetedmanagedapppolicyassignment Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-targetedmanagedapppolicyassignment-update.md
Title: "Update targetedManagedAppPolicyAssignment" description: "Update the properties of a targetedManagedAppPolicyAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [targetedManagedAppPolicyAssignment](../resources/intune-mam-targetedmanagedapppolicyassignment.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
"sourceId": "Source Id value" } ```-----
v1.0 Intune Mam Targetedmanagedappprotection Assign https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-targetedmanagedappprotection-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 Mam Targetedmanagedappprotection Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-targetedmanagedappprotection-get.md
Title: "Get targetedManagedAppProtection" description: "Read properties and relationships of the targetedManagedAppProtection object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [targetedManagedAppProtection](../resources/intune-mam-targetedmanagedappprotection.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: 2984
} } ```-----
v1.0 Intune Mam Targetedmanagedappprotection List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-targetedmanagedappprotection-list.md
Title: "List targetedManagedAppProtections" description: "List properties and relationships of the targetedManagedAppProtection objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [targetedManagedAppProtection](../resources/intune-mam-targetedmanagedappprotection.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: 3124
] } ```-----
v1.0 Intune Mam Targetedmanagedappprotection Targetapps https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-targetedmanagedappprotection-targetapps.md
Title: "targetApps 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 Mam User Getmanagedappblockedusers https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-user-getmanagedappblockedusers.md
Title: "getManagedAppBlockedUsers 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: 66
] } ```-----
v1.0 Intune Mam User Ismanagedappuserblocked https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-user-ismanagedappuserblocked.md
Title: "isManagedAppUserBlocked function" description: "Gets the blocked state of a managed app user."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Gets the blocked state of a managed app user.
-## Prerequisites
+## Permissions
One of the following permissions is required to call this 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 Mam User Unblockmanagedapps https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-user-unblockmanagedapps.md
Title: "unblockManagedApps action" description: "Unblocks the managed app user from app check-in."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Unblocks the managed app user from app check-in.
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Mam User Wipeandblockmanagedapps https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-user-wipeandblockmanagedapps.md
Title: "wipeAndBlockManagedApps action" description: "Blocks the managed app user from app check-in."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Blocks the managed app user from app check-in.
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Mam User Wipemanagedappregistrationsbyazureaddeviceid https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-user-wipemanagedappregistrationsbyazureaddeviceid.md
Title: "wipeManagedAppRegistrationsByAzureAdDeviceId action" description: "Issues a wipe operation on an app registration with specified aad device Id."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Issues a wipe operation on an app registration with specified aad device Id.
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Mam Windowsinformationprotection Assign https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-windowsinformationprotection-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 Mam Windowsinformationprotection Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-windowsinformationprotection-get.md
Title: "Get windowsInformationProtection" description: "Read properties and relationships of the windowsInformationProtection object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsInformationProtection](../resources/intune-mam-windowsinformationprotection.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: 4299
} } ```-----
v1.0 Intune Mam Windowsinformationprotection List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-windowsinformationprotection-list.md
Title: "List windowsInformationProtections" description: "List properties and relationships of the windowsInformationProtection objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsInformationProtection](../resources/intune-mam-windowsinformationprotection.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: 4565
] } ```-----
v1.0 Intune Mam Windowsinformationprotectionapplockerfile Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-windowsinformationprotectionapplockerfile-create.md
Title: "Create windowsInformationProtectionAppLockerFile" description: "Create a new windowsInformationProtectionAppLockerFile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windowsInformationProtectionAppLockerFile](../resources/intune-mam-windowsinformationprotectionapplockerfile.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: 260
"version": "Version value" } ```-----
v1.0 Intune Mam Windowsinformationprotectionapplockerfile Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-windowsinformationprotectionapplockerfile-delete.md
Title: "Delete windowsInformationProtectionAppLockerFile" description: "Deletes a windowsInformationProtectionAppLockerFile."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windowsInformationProtectionAppLockerFile](../resources/intune-mam-windowsinformationprotectionapplockerfile.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 Mam Windowsinformationprotectionapplockerfile Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-windowsinformationprotectionapplockerfile-get.md
Title: "Get windowsInformationProtectionAppLockerFile" description: "Read properties and relationships of the windowsInformationProtectionAppLockerFile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsInformationProtectionAppLockerFile](../resources/intune-mam-windowsinformationprotectionapplockerfile.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: 291
} } ```-----
v1.0 Intune Mam Windowsinformationprotectionapplockerfile List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-windowsinformationprotectionapplockerfile-list.md
Title: "List windowsInformationProtectionAppLockerFiles" description: "List properties and relationships of the windowsInformationProtectionAppLockerFile objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsInformationProtectionAppLockerFile](../resources/intune-mam-windowsinformationprotectionapplockerfile.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: 317
] } ```-----
v1.0 Intune Mam Windowsinformationprotectionapplockerfile Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-windowsinformationprotectionapplockerfile-update.md
Title: "Update windowsInformationProtectionAppLockerFile" description: "Update the properties of a windowsInformationProtectionAppLockerFile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windowsInformationProtectionAppLockerFile](../resources/intune-mam-windowsinformationprotectionapplockerfile.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: 260
"version": "Version value" } ```-----
v1.0 Intune Mam Windowsinformationprotectiondeviceregistration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-windowsinformationprotectiondeviceregistration-create.md
Title: "Create windowsInformationProtectionDeviceRegistration" description: "Create a new windowsInformationProtectionDeviceRegistration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windowsInformationProtectionDeviceRegistration](../resources/intune-mam-windowsinformationprotectiondeviceregistration.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: 415
"lastCheckInDateTime": "2016-12-31T23:59:56.413532-08:00" } ```-----
v1.0 Intune Mam Windowsinformationprotectiondeviceregistration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-windowsinformationprotectiondeviceregistration-delete.md
Title: "Delete windowsInformationProtectionDeviceRegistration" description: "Deletes a windowsInformationProtectionDeviceRegistration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windowsInformationProtectionDeviceRegistration](../resources/intune-mam-windowsinformationprotectiondeviceregistration.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 Mam Windowsinformationprotectiondeviceregistration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-windowsinformationprotectiondeviceregistration-get.md
Title: "Get windowsInformationProtectionDeviceRegistration" description: "Read properties and relationships of the windowsInformationProtectionDeviceRegistration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsInformationProtectionDeviceRegistration](../resources/intune-mam-windowsinformationprotectiondeviceregistration.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 Mam Windowsinformationprotectiondeviceregistration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-windowsinformationprotectiondeviceregistration-list.md
Title: "List windowsInformationProtectionDeviceRegistrations" description: "List properties and relationships of the windowsInformationProtectionDeviceRegistration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsInformationProtectionDeviceRegistration](../resources/intune-mam-windowsinformationprotectiondeviceregistration.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: 480
] } ```-----
v1.0 Intune Mam Windowsinformationprotectiondeviceregistration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-windowsinformationprotectiondeviceregistration-update.md
Title: "Update windowsInformationProtectionDeviceRegistration" description: "Update the properties of a windowsInformationProtectionDeviceRegistration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windowsInformationProtectionDeviceRegistration](../resources/intune-mam-windowsinformationprotectiondeviceregistration.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: 415
"lastCheckInDateTime": "2016-12-31T23:59:56.413532-08:00" } ```-----
v1.0 Intune Mam Windowsinformationprotectiondeviceregistration Wipe https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-windowsinformationprotectiondeviceregistration-wipe.md
Title: "wipe 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 Mam Windowsinformationprotectionpolicy Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-windowsinformationprotectionpolicy-create.md
Title: "Create windowsInformationProtectionPolicy" description: "Create a new windowsInformationProtectionPolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windowsInformationProtectionPolicy](../resources/intune-mam-windowsinformationprotectionpolicy.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: 4537
"daysWithoutContactBeforeUnenroll": 0 } ```-----
v1.0 Intune Mam Windowsinformationprotectionpolicy Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-windowsinformationprotectionpolicy-delete.md
Title: "Delete windowsInformationProtectionPolicy" description: "Deletes a windowsInformationProtectionPolicy."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windowsInformationProtectionPolicy](../resources/intune-mam-windowsinformationprotectionpolicy.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 Mam Windowsinformationprotectionpolicy Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-windowsinformationprotectionpolicy-get.md
Title: "Get windowsInformationProtectionPolicy" description: "Read properties and relationships of the windowsInformationProtectionPolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsInformationProtectionPolicy](../resources/intune-mam-windowsinformationprotectionpolicy.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: 4832
} } ```-----
v1.0 Intune Mam Windowsinformationprotectionpolicy List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-windowsinformationprotectionpolicy-list.md
Title: "List windowsInformationProtectionPolicies" description: "List properties and relationships of the windowsInformationProtectionPolicy objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsInformationProtectionPolicy](../resources/intune-mam-windowsinformationprotectionpolicy.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: 5122
] } ```-----
v1.0 Intune Mam Windowsinformationprotectionpolicy Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-windowsinformationprotectionpolicy-update.md
Title: "Update windowsInformationProtectionPolicy" description: "Update the properties of a windowsInformationProtectionPolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windowsInformationProtectionPolicy](../resources/intune-mam-windowsinformationprotectionpolicy.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: 4537
"daysWithoutContactBeforeUnenroll": 0 } ```-----
v1.0 Intune Mam Windowsinformationprotectionwipeaction Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-windowsinformationprotectionwipeaction-create.md
Title: "Create windowsInformationProtectionWipeAction" description: "Create a new windowsInformationProtectionWipeAction object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windowsInformationProtectionWipeAction](../resources/intune-mam-windowsinformationprotectionwipeaction.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: 461
"lastCheckInDateTime": "2016-12-31T23:59:56.413532-08:00" } ```-----
v1.0 Intune Mam Windowsinformationprotectionwipeaction Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-windowsinformationprotectionwipeaction-delete.md
Title: "Delete windowsInformationProtectionWipeAction" description: "Deletes a windowsInformationProtectionWipeAction."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windowsInformationProtectionWipeAction](../resources/intune-mam-windowsinformationprotectionwipeaction.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 Mam Windowsinformationprotectionwipeaction Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-windowsinformationprotectionwipeaction-get.md
Title: "Get windowsInformationProtectionWipeAction" description: "Read properties and relationships of the windowsInformationProtectionWipeAction object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsInformationProtectionWipeAction](../resources/intune-mam-windowsinformationprotectionwipeaction.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: 496
} } ```-----
v1.0 Intune Mam Windowsinformationprotectionwipeaction List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-windowsinformationprotectionwipeaction-list.md
Title: "List windowsInformationProtectionWipeActions" description: "List properties and relationships of the windowsInformationProtectionWipeAction objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsInformationProtectionWipeAction](../resources/intune-mam-windowsinformationprotectionwipeaction.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: 526
] } ```-----
v1.0 Intune Mam Windowsinformationprotectionwipeaction Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-windowsinformationprotectionwipeaction-update.md
Title: "Update windowsInformationProtectionWipeAction" description: "Update the properties of a windowsInformationProtectionWipeAction object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windowsInformationProtectionWipeAction](../resources/intune-mam-windowsinformationprotectionwipeaction.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: 461
"lastCheckInDateTime": "2016-12-31T23:59:56.413532-08:00" } ```-----
v1.0 Intune Mam Windowsmanagedappprotection Assign https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-windowsmanagedappprotection-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 Mam Windowsmanagedappprotection Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-windowsmanagedappprotection-create.md
Title: "Create windowsManagedAppProtection" description: "Create a new windowsManagedAppProtection object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windowsManagedAppProtection](../resources/intune-mam-windowsmanagedappprotection.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: 1625
"periodOfflineBeforeAccessCheck": "-PT17.1357909S" } ```-----
v1.0 Intune Mam Windowsmanagedappprotection Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-windowsmanagedappprotection-delete.md
Title: "Delete windowsManagedAppProtection" description: "Deletes a windowsManagedAppProtection."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windowsManagedAppProtection](../resources/intune-mam-windowsmanagedappprotection.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 Mam Windowsmanagedappprotection Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-windowsmanagedappprotection-get.md
Title: "Get windowsManagedAppProtection" description: "Read properties and relationships of the windowsManagedAppProtection object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsManagedAppProtection](../resources/intune-mam-windowsmanagedappprotection.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: 1708
} } ```-----
v1.0 Intune Mam Windowsmanagedappprotection List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-windowsmanagedappprotection-list.md
Title: "List windowsManagedAppProtections" description: "List properties and relationships of the windowsManagedAppProtection objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsManagedAppProtection](../resources/intune-mam-windowsmanagedappprotection.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: 1786
] } ```-----
v1.0 Intune Mam Windowsmanagedappprotection Targetapps https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-windowsmanagedappprotection-targetapps.md
Title: "targetApps 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 Mam Windowsmanagedappprotection Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mam-windowsmanagedappprotection-update.md
Title: "Update windowsManagedAppProtection" description: "Update the properties of a windowsManagedAppProtection object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windowsManagedAppProtection](../resources/intune-mam-windowsmanagedappprotection.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: 1625
"periodOfflineBeforeAccessCheck": "-PT17.1357909S" } ```-----
v1.0 Intune Mstunnel Microsofttunnelconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mstunnel-microsofttunnelconfiguration-create.md
Title: "Create microsoftTunnelConfiguration" description: "Create a new microsoftTunnelConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [microsoftTunnelConfiguration](../resources/intune-mstunnel-microsofttunnelconfiguration.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 m
|routeExcludes|String collection|Subsets of the routes that will not be routed by the server| |splitDNS|String collection|The domains that will be resolved using the provided dns servers| |listenPort|Int32|The port that both TCP and UPD will listen over on the server|
-|advancedSettings|[keyValuePair](../resources/intune-shared-keyvaluepair.md) collection|Additional settings that may be applied to the server|
+|advancedSettings|[keyValuePair](../resources/intune-mstunnel-keyvaluepair.md) collection|Additional settings that may be applied to the server|
|lastUpdateDateTime|DateTimeOffset|When the configuration was last updated| |roleScopeTagIds|String collection|List of Scope Tags for this Entity instance| |disableUdpConnections|Boolean|When DisableUdpConnections is set, the clients and VPN server will not use DTLS connections to transfer data.|
Content-Length: 943
"disableUdpConnections": true } ```-----
v1.0 Intune Mstunnel Microsofttunnelconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mstunnel-microsofttunnelconfiguration-delete.md
Title: "Delete microsoftTunnelConfiguration" description: "Deletes a microsoftTunnelConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [microsoftTunnelConfiguration](../resources/intune-mstunnel-microsofttunnelconfiguration.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 Mstunnel Microsofttunnelconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mstunnel-microsofttunnelconfiguration-get.md
Title: "Get microsoftTunnelConfiguration" description: "Read properties and relationships of the microsoftTunnelConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [microsoftTunnelConfiguration](../resources/intune-mstunnel-microsofttunnelconfiguration.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: 1036
} } ```-----
v1.0 Intune Mstunnel Microsofttunnelconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mstunnel-microsofttunnelconfiguration-list.md
Title: "List microsoftTunnelConfigurations" description: "List properties and relationships of the microsoftTunnelConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [microsoftTunnelConfiguration](../resources/intune-mstunnel-microsofttunnelconfiguration.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: 1124
] } ```-----
v1.0 Intune Mstunnel Microsofttunnelconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mstunnel-microsofttunnelconfiguration-update.md
Title: "Update microsoftTunnelConfiguration" description: "Update the properties of a microsoftTunnelConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [microsoftTunnelConfiguration](../resources/intune-mstunnel-microsofttunnelconfiguration.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 [
|routeExcludes|String collection|Subsets of the routes that will not be routed by the server| |splitDNS|String collection|The domains that will be resolved using the provided dns servers| |listenPort|Int32|The port that both TCP and UPD will listen over on the server|
-|advancedSettings|[keyValuePair](../resources/intune-shared-keyvaluepair.md) collection|Additional settings that may be applied to the server|
+|advancedSettings|[keyValuePair](../resources/intune-mstunnel-keyvaluepair.md) collection|Additional settings that may be applied to the server|
|lastUpdateDateTime|DateTimeOffset|When the configuration was last updated| |roleScopeTagIds|String collection|List of Scope Tags for this Entity instance| |disableUdpConnections|Boolean|When DisableUdpConnections is set, the clients and VPN server will not use DTLS connections to transfer data.|
Content-Length: 943
"disableUdpConnections": true } ```-----
v1.0 Intune Mstunnel Microsofttunnelhealththreshold Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mstunnel-microsofttunnelhealththreshold-create.md
Title: "Create microsoftTunnelHealthThreshold" description: "Create a new microsoftTunnelHealthThreshold object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [microsoftTunnelHealthThreshold](../resources/intune-mstunnel-microsofttunnelhealththreshold.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: 243
"defaultUnhealthyThreshold": 9 } ```-----
v1.0 Intune Mstunnel Microsofttunnelhealththreshold Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mstunnel-microsofttunnelhealththreshold-delete.md
Title: "Delete microsoftTunnelHealthThreshold" description: "Deletes a microsoftTunnelHealthThreshold."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [microsoftTunnelHealthThreshold](../resources/intune-mstunnel-microsofttunnelhealththreshold.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 Mstunnel Microsofttunnelhealththreshold Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mstunnel-microsofttunnelhealththreshold-get.md
Title: "Get microsoftTunnelHealthThreshold" description: "Read properties and relationships of the microsoftTunnelHealthThreshold object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [microsoftTunnelHealthThreshold](../resources/intune-mstunnel-microsofttunnelhealththreshold.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: 274
} } ```-----
v1.0 Intune Mstunnel Microsofttunnelhealththreshold List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mstunnel-microsofttunnelhealththreshold-list.md
Title: "List microsoftTunnelHealthThresholds" description: "List properties and relationships of the microsoftTunnelHealthThreshold objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [microsoftTunnelHealthThreshold](../resources/intune-mstunnel-microsofttunnelhealththreshold.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: 300
] } ```-----
v1.0 Intune Mstunnel Microsofttunnelhealththreshold Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mstunnel-microsofttunnelhealththreshold-update.md
Title: "Update microsoftTunnelHealthThreshold" description: "Update the properties of a microsoftTunnelHealthThreshold object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [microsoftTunnelHealthThreshold](../resources/intune-mstunnel-microsofttunnelhealththreshold.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: 243
"defaultUnhealthyThreshold": 9 } ```-----
v1.0 Intune Mstunnel Microsofttunnelserver Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mstunnel-microsofttunnelserver-create.md
Title: "Create microsoftTunnelServer" description: "Create a new microsoftTunnelServer object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [microsoftTunnelServer](../resources/intune-mstunnel-microsofttunnelserver.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: 361
"serverImageDigest": "Server Image Digest value" } ```-----
v1.0 Intune Mstunnel Microsofttunnelserver Createserverlogcollectionrequest https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mstunnel-microsofttunnelserver-createserverlogcollectionrequest.md
Title: "createServerLogCollectionRequest 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: 481
} } ```-----
v1.0 Intune Mstunnel Microsofttunnelserver Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mstunnel-microsofttunnelserver-delete.md
Title: "Delete microsoftTunnelServer" description: "Deletes a microsoftTunnelServer."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [microsoftTunnelServer](../resources/intune-mstunnel-microsofttunnelserver.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 Mstunnel Microsofttunnelserver Generateserverlogcollectionrequest https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mstunnel-microsofttunnelserver-generateserverlogcollectionrequest.md
Title: "generateServerLogCollectionRequest 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: 481
} } ```-----
v1.0 Intune Mstunnel Microsofttunnelserver Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mstunnel-microsofttunnelserver-get.md
Title: "Get microsoftTunnelServer" description: "Read properties and relationships of the microsoftTunnelServer object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [microsoftTunnelServer](../resources/intune-mstunnel-microsofttunnelserver.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: 394
} } ```-----
v1.0 Intune Mstunnel Microsofttunnelserver Gethealthmetrics https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mstunnel-microsofttunnelserver-gethealthmetrics.md
Title: "getHealthMetrics 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: 142
] } ```-----
v1.0 Intune Mstunnel Microsofttunnelserver Gethealthmetrictimeseries https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mstunnel-microsofttunnelserver-gethealthmetrictimeseries.md
Title: "getHealthMetricTimeSeries 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: 178
] } ```-----
v1.0 Intune Mstunnel Microsofttunnelserver List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mstunnel-microsofttunnelserver-list.md
Title: "List microsoftTunnelServers" description: "List properties and relationships of the microsoftTunnelServer objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [microsoftTunnelServer](../resources/intune-mstunnel-microsofttunnelserver.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: 422
] } ```-----
v1.0 Intune Mstunnel Microsofttunnelserver Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mstunnel-microsofttunnelserver-update.md
Title: "Update microsoftTunnelServer" description: "Update the properties of a microsoftTunnelServer object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [microsoftTunnelServer](../resources/intune-mstunnel-microsofttunnelserver.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: 361
"serverImageDigest": "Server Image Digest value" } ```-----
v1.0 Intune Mstunnel Microsofttunnelserverlogcollectionresponse Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mstunnel-microsofttunnelserverlogcollectionresponse-create.md
Title: "Create microsoftTunnelServerLogCollectionResponse" description: "Create a new microsoftTunnelServerLogCollectionResponse object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [microsoftTunnelServerLogCollectionResponse](../resources/intune-mstunnel-microsofttunnelserverlogcollectionresponse.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
"expiryDateTime": "2017-01-01T00:03:32.5199332-08:00" } ```-----
v1.0 Intune Mstunnel Microsofttunnelserverlogcollectionresponse Createdownloadurl https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mstunnel-microsofttunnelserverlogcollectionresponse-createdownloadurl.md
Title: "createDownloadUrl 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: 57
"value": "https://example.com/createDownloadUrl/" } ```-----
v1.0 Intune Mstunnel Microsofttunnelserverlogcollectionresponse Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mstunnel-microsofttunnelserverlogcollectionresponse-delete.md
Title: "Delete microsoftTunnelServerLogCollectionResponse" description: "Deletes a microsoftTunnelServerLogCollectionResponse."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [microsoftTunnelServerLogCollectionResponse](../resources/intune-mstunnel-microsofttunnelserverlogcollectionresponse.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 Mstunnel Microsofttunnelserverlogcollectionresponse Generatedownloadurl https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mstunnel-microsofttunnelserverlogcollectionresponse-generatedownloadurl.md
Title: "generateDownloadUrl 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: 59
"value": "https://example.com/generateDownloadUrl/" } ```-----
v1.0 Intune Mstunnel Microsofttunnelserverlogcollectionresponse Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mstunnel-microsofttunnelserverlogcollectionresponse-get.md
Title: "Get microsoftTunnelServerLogCollectionResponse" description: "Read properties and relationships of the microsoftTunnelServerLogCollectionResponse object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [microsoftTunnelServerLogCollectionResponse](../resources/intune-mstunnel-microsofttunnelserverlogcollectionresponse.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: 481
} } ```-----
v1.0 Intune Mstunnel Microsofttunnelserverlogcollectionresponse List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mstunnel-microsofttunnelserverlogcollectionresponse-list.md
Title: "List microsoftTunnelServerLogCollectionResponses" description: "List properties and relationships of the microsoftTunnelServerLogCollectionResponse objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [microsoftTunnelServerLogCollectionResponse](../resources/intune-mstunnel-microsofttunnelserverlogcollectionresponse.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: 513
] } ```-----
v1.0 Intune Mstunnel Microsofttunnelserverlogcollectionresponse Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mstunnel-microsofttunnelserverlogcollectionresponse-update.md
Title: "Update microsoftTunnelServerLogCollectionResponse" description: "Update the properties of a microsoftTunnelServerLogCollectionResponse object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [microsoftTunnelServerLogCollectionResponse](../resources/intune-mstunnel-microsofttunnelserverlogcollectionresponse.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
"expiryDateTime": "2017-01-01T00:03:32.5199332-08:00" } ```-----
v1.0 Intune Mstunnel Microsofttunnelsite Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mstunnel-microsofttunnelsite-create.md
Title: "Create microsoftTunnelSite" description: "Create a new microsoftTunnelSite object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [microsoftTunnelSite](../resources/intune-mstunnel-microsofttunnelsite.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 m
|upgradeAutomatically|Boolean|The site's automatic upgrade setting. True for automatic upgrades, false for manual control| |upgradeAvailable|Boolean|The site provides the state of when an upgrade is available| |internalNetworkProbeUrl|String|The site's Internal Network Access Probe URL|
-|enableCertificatePinning|Boolean|When set to true, certificate pinning will be enforced on connections between the Microsoft Tunnel server and Microsoft Tunnel clients. When set to false, certificate pinning will be disabled.|
|roleScopeTagIds|String collection|List of Scope Tags for this Entity instance|
Here is an example of the request.
``` http POST https://graph.microsoft.com/beta/deviceManagement/microsoftTunnelSites Content-type: application/json
-Content-length: 561
+Content-length: 524
{ "@odata.type": "#microsoft.graph.microsoftTunnelSite",
Content-length: 561
"upgradeAutomatically": true, "upgradeAvailable": true, "internalNetworkProbeUrl": "https://example.com/internalNetworkProbeUrl/",
- "enableCertificatePinning": true,
"roleScopeTagIds": [ "Role Scope Tag Ids 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: 610
+Content-Length: 573
{ "@odata.type": "#microsoft.graph.microsoftTunnelSite",
Content-Length: 610
"upgradeAutomatically": true, "upgradeAvailable": true, "internalNetworkProbeUrl": "https://example.com/internalNetworkProbeUrl/",
- "enableCertificatePinning": true,
"roleScopeTagIds": [ "Role Scope Tag Ids value" ] } ```-----
v1.0 Intune Mstunnel Microsofttunnelsite Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mstunnel-microsofttunnelsite-delete.md
Title: "Delete microsoftTunnelSite" description: "Deletes a microsoftTunnelSite."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [microsoftTunnelSite](../resources/intune-mstunnel-microsofttunnelsite.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 Mstunnel Microsofttunnelsite Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mstunnel-microsofttunnelsite-get.md
Title: "Get microsoftTunnelSite" description: "Read properties and relationships of the microsoftTunnelSite object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [microsoftTunnelSite](../resources/intune-mstunnel-microsofttunnelsite.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: 659
+Content-Length: 620
{ "value": {
Content-Length: 659
"upgradeAutomatically": true, "upgradeAvailable": true, "internalNetworkProbeUrl": "https://example.com/internalNetworkProbeUrl/",
- "enableCertificatePinning": true,
"roleScopeTagIds": [ "Role Scope Tag Ids value" ] } } ```-----
v1.0 Intune Mstunnel Microsofttunnelsite List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mstunnel-microsofttunnelsite-list.md
Title: "List microsoftTunnelSites" description: "List properties and relationships of the microsoftTunnelSite objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [microsoftTunnelSite](../resources/intune-mstunnel-microsofttunnelsite.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: 703
+Content-Length: 662
{ "value": [
Content-Length: 703
"upgradeAutomatically": true, "upgradeAvailable": true, "internalNetworkProbeUrl": "https://example.com/internalNetworkProbeUrl/",
- "enableCertificatePinning": true,
"roleScopeTagIds": [ "Role Scope Tag Ids value" ]
Content-Length: 703
] } ```-----
v1.0 Intune Mstunnel Microsofttunnelsite Requestupgrade https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mstunnel-microsofttunnelsite-requestupgrade.md
Title: "requestUpgrade 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 Mstunnel Microsofttunnelsite Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-mstunnel-microsofttunnelsite-update.md
Title: "Update microsoftTunnelSite" description: "Update the properties of a microsoftTunnelSite object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [microsoftTunnelSite](../resources/intune-mstunnel-microsofttunnelsite.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 [
|upgradeAutomatically|Boolean|The site's automatic upgrade setting. True for automatic upgrades, false for manual control| |upgradeAvailable|Boolean|The site provides the state of when an upgrade is available| |internalNetworkProbeUrl|String|The site's Internal Network Access Probe URL|
-|enableCertificatePinning|Boolean|When set to true, certificate pinning will be enforced on connections between the Microsoft Tunnel server and Microsoft Tunnel clients. When set to false, certificate pinning will be disabled.|
|roleScopeTagIds|String collection|List of Scope Tags for this Entity instance|
Here is an example of the request.
``` http PATCH https://graph.microsoft.com/beta/deviceManagement/microsoftTunnelSites/{microsoftTunnelSiteId} Content-type: application/json
-Content-length: 561
+Content-length: 524
{ "@odata.type": "#microsoft.graph.microsoftTunnelSite",
Content-length: 561
"upgradeAutomatically": true, "upgradeAvailable": true, "internalNetworkProbeUrl": "https://example.com/internalNetworkProbeUrl/",
- "enableCertificatePinning": true,
"roleScopeTagIds": [ "Role Scope Tag Ids 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: 610
+Content-Length: 573
{ "@odata.type": "#microsoft.graph.microsoftTunnelSite",
Content-Length: 610
"upgradeAutomatically": true, "upgradeAvailable": true, "internalNetworkProbeUrl": "https://example.com/internalNetworkProbeUrl/",
- "enableCertificatePinning": true,
"roleScopeTagIds": [ "Role Scope Tag Ids value" ] } ```-----
v1.0 Intune Notification Localizednotificationmessage Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-notification-localizednotificationmessage-create.md
Title: "Create localizedNotificationMessage" description: "Create a new localizedNotificationMessage object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [localizedNotificationMessage](../resources/intune-notification-localizednotificationmessage.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
"isDefault": true } ```-----
v1.0 Intune Notification Localizednotificationmessage Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-notification-localizednotificationmessage-delete.md
Title: "Delete localizedNotificationMessage" description: "Deletes a localizedNotificationMessage."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [localizedNotificationMessage](../resources/intune-notification-localizednotificationmessage.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 Notification Localizednotificationmessage Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-notification-localizednotificationmessage-get.md
Title: "Get localizedNotificationMessage" description: "Read properties and relationships of the localizedNotificationMessage object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [localizedNotificationMessage](../resources/intune-notification-localizednotificationmessage.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: 346
} } ```-----
v1.0 Intune Notification Localizednotificationmessage List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-notification-localizednotificationmessage-list.md
Title: "List localizedNotificationMessages" description: "List properties and relationships of the localizedNotificationMessage objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [localizedNotificationMessage](../resources/intune-notification-localizednotificationmessage.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: 374
] } ```-----
v1.0 Intune Notification Localizednotificationmessage Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-notification-localizednotificationmessage-update.md
Title: "Update localizedNotificationMessage" description: "Update the properties of a localizedNotificationMessage object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [localizedNotificationMessage](../resources/intune-notification-localizednotificationmessage.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
"isDefault": true } ```-----
v1.0 Intune Notification Notificationmessagetemplate Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-notification-notificationmessagetemplate-create.md
Title: "Create notificationMessageTemplate" description: "Create a new notificationMessageTemplate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [notificationMessageTemplate](../resources/intune-notification-notificationmessagetemplate.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: 372
] } ```-----
v1.0 Intune Notification Notificationmessagetemplate Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-notification-notificationmessagetemplate-delete.md
Title: "Delete notificationMessageTemplate" description: "Deletes a notificationMessageTemplate."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [notificationMessageTemplate](../resources/intune-notification-notificationmessagetemplate.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 Notification Notificationmessagetemplate Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-notification-notificationmessagetemplate-get.md
Title: "Get notificationMessageTemplate" description: "Read properties and relationships of the notificationMessageTemplate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [notificationMessageTemplate](../resources/intune-notification-notificationmessagetemplate.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 Notification Notificationmessagetemplate List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-notification-notificationmessagetemplate-list.md
Title: "List notificationMessageTemplates" description: "List properties and relationships of the notificationMessageTemplate objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [notificationMessageTemplate](../resources/intune-notification-notificationmessagetemplate.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 Notification Notificationmessagetemplate Sendtestmessage https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-notification-notificationmessagetemplate-sendtestmessage.md
Title: "sendTestMessage action" description: "Sends test message using the specified notificationMessageTemplate in the default locale"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Sends test message using the specified notificationMessageTemplate in the default locale
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Notification Notificationmessagetemplate Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-notification-notificationmessagetemplate-update.md
Title: "Update notificationMessageTemplate" description: "Update the properties of a notificationMessageTemplate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [notificationMessageTemplate](../resources/intune-notification-notificationmessagetemplate.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: 372
] } ```-----
v1.0 Intune Odj Devicemanagementdomainjoinconnector Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-odj-devicemanagementdomainjoinconnector-create.md
Title: "Create deviceManagementDomainJoinConnector" description: "Create a new deviceManagementDomainJoinConnector object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceManagementDomainJoinConnector](../resources/intune-odj-devicemanagementdomainjoinconnector.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: 284
"version": "Version value" } ```-----
v1.0 Intune Odj Devicemanagementdomainjoinconnector Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-odj-devicemanagementdomainjoinconnector-delete.md
Title: "Delete deviceManagementDomainJoinConnector" description: "Deletes a deviceManagementDomainJoinConnector."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceManagementDomainJoinConnector](../resources/intune-odj-devicemanagementdomainjoinconnector.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 Odj Devicemanagementdomainjoinconnector Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-odj-devicemanagementdomainjoinconnector-get.md
Title: "Get deviceManagementDomainJoinConnector" description: "Read properties and relationships of the deviceManagementDomainJoinConnector object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementDomainJoinConnector](../resources/intune-odj-devicemanagementdomainjoinconnector.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: 315
} } ```-----
v1.0 Intune Odj Devicemanagementdomainjoinconnector List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-odj-devicemanagementdomainjoinconnector-list.md
Title: "List deviceManagementDomainJoinConnectors" description: "List properties and relationships of the deviceManagementDomainJoinConnector objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceManagementDomainJoinConnector](../resources/intune-odj-devicemanagementdomainjoinconnector.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: 341
] } ```-----
v1.0 Intune Odj Devicemanagementdomainjoinconnector Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-odj-devicemanagementdomainjoinconnector-update.md
Title: "Update deviceManagementDomainJoinConnector" description: "Update the properties of a deviceManagementDomainJoinConnector object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementDomainJoinConnector](../resources/intune-odj-devicemanagementdomainjoinconnector.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: 284
"version": "Version value" } ```-----
v1.0 Intune Onboarding Compliancemanagementpartner Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-compliancemanagementpartner-create.md
Title: "Create complianceManagementPartner" description: "Create a new complianceManagementPartner object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [complianceManagementPartner](../resources/intune-onboarding-compliancemanagementpartner.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: 2265
] } ```-----
v1.0 Intune Onboarding Compliancemanagementpartner Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-compliancemanagementpartner-delete.md
Title: "Delete complianceManagementPartner" description: "Deletes a complianceManagementPartner."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [complianceManagementPartner](../resources/intune-onboarding-compliancemanagementpartner.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 Onboarding Compliancemanagementpartner Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-compliancemanagementpartner-get.md
Title: "Get complianceManagementPartner" description: "Read properties and relationships of the complianceManagementPartner object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [complianceManagementPartner](../resources/intune-onboarding-compliancemanagementpartner.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: 2390
} } ```-----
v1.0 Intune Onboarding Compliancemanagementpartner List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-compliancemanagementpartner-list.md
Title: "List complianceManagementPartners" description: "List properties and relationships of the complianceManagementPartner objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [complianceManagementPartner](../resources/intune-onboarding-compliancemanagementpartner.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: 2510
] } ```-----
v1.0 Intune Onboarding Compliancemanagementpartner Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-compliancemanagementpartner-update.md
Title: "Update complianceManagementPartner" description: "Update the properties of a complianceManagementPartner object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [complianceManagementPartner](../resources/intune-onboarding-compliancemanagementpartner.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: 2265
] } ```-----
v1.0 Intune Onboarding Devicecomanagementauthorityconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-devicecomanagementauthorityconfiguration-create.md
Title: "Create deviceComanagementAuthorityConfiguration" description: "Create a new deviceComanagementAuthorityConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceComanagementAuthorityConfiguration](../resources/intune-onboarding-devicecomanagementauthorityconfiguration.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: 666
"configurationManagerAgentCommandLineArgument": "Configuration Manager Agent Command Line Argument value" } ```-----
v1.0 Intune Onboarding Devicecomanagementauthorityconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-devicecomanagementauthorityconfiguration-delete.md
Title: "Delete deviceComanagementAuthorityConfiguration" description: "Deletes a deviceComanagementAuthorityConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceComanagementAuthorityConfiguration](../resources/intune-onboarding-devicecomanagementauthorityconfiguration.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 Onboarding Devicecomanagementauthorityconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-devicecomanagementauthorityconfiguration-get.md
Title: "Get deviceComanagementAuthorityConfiguration" description: "Read properties and relationships of the deviceComanagementAuthorityConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceComanagementAuthorityConfiguration](../resources/intune-onboarding-devicecomanagementauthorityconfiguration.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: 715
} } ```-----
v1.0 Intune Onboarding Devicecomanagementauthorityconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-devicecomanagementauthorityconfiguration-list.md
Title: "List deviceComanagementAuthorityConfigurations" description: "List properties and relationships of the deviceComanagementAuthorityConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceComanagementAuthorityConfiguration](../resources/intune-onboarding-devicecomanagementauthorityconfiguration.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: 759
] } ```-----
v1.0 Intune Onboarding Devicecomanagementauthorityconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-devicecomanagementauthorityconfiguration-update.md
Title: "Update deviceComanagementAuthorityConfiguration" description: "Update the properties of a deviceComanagementAuthorityConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceComanagementAuthorityConfiguration](../resources/intune-onboarding-devicecomanagementauthorityconfiguration.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: 666
"configurationManagerAgentCommandLineArgument": "Configuration Manager Agent Command Line Argument value" } ```-----
v1.0 Intune Onboarding Deviceenrollmentconfiguration Createenrollmentnotificationconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-deviceenrollmentconfiguration-createenrollmentnotificationconfiguration.md
Title: "createEnrollmentNotificationConfiguration 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 Onboarding Deviceenrollmentlimitconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-deviceenrollmentlimitconfiguration-create.md
Title: "Create deviceEnrollmentLimitConfiguration" description: "Create a new deviceEnrollmentLimitConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceEnrollmentLimitConfiguration](../resources/intune-onboarding-deviceenrollmentlimitconfiguration.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: 488
"limit": 5 } ```-----
v1.0 Intune Onboarding Deviceenrollmentlimitconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-deviceenrollmentlimitconfiguration-delete.md
Title: "Delete deviceEnrollmentLimitConfiguration" description: "Deletes a deviceEnrollmentLimitConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceEnrollmentLimitConfiguration](../resources/intune-onboarding-deviceenrollmentlimitconfiguration.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 Onboarding Deviceenrollmentlimitconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-deviceenrollmentlimitconfiguration-get.md
Title: "Get deviceEnrollmentLimitConfiguration" description: "Read properties and relationships of the deviceEnrollmentLimitConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceEnrollmentLimitConfiguration](../resources/intune-onboarding-deviceenrollmentlimitconfiguration.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: 533
} } ```-----
v1.0 Intune Onboarding Deviceenrollmentlimitconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-deviceenrollmentlimitconfiguration-list.md
Title: "List deviceEnrollmentLimitConfigurations" description: "List properties and relationships of the deviceEnrollmentLimitConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceEnrollmentLimitConfiguration](../resources/intune-onboarding-deviceenrollmentlimitconfiguration.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: 573
] } ```-----
v1.0 Intune Onboarding Deviceenrollmentlimitconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-deviceenrollmentlimitconfiguration-update.md
Title: "Update deviceEnrollmentLimitConfiguration" description: "Update the properties of a deviceEnrollmentLimitConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceEnrollmentLimitConfiguration](../resources/intune-onboarding-deviceenrollmentlimitconfiguration.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: 488
"limit": 5 } ```-----
v1.0 Intune Onboarding Deviceenrollmentnotificationconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-deviceenrollmentnotificationconfiguration-create.md
Title: "Create deviceEnrollmentNotificationConfiguration" description: "Create a new deviceEnrollmentNotificationConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceEnrollmentNotificationConfiguration](../resources/intune-onboarding-deviceenrollmentnotificationconfiguration.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 d
|version|Int32|The version of the device enrollment configuration Inherited from [deviceEnrollmentConfiguration](../resources/intune-shared-deviceenrollmentconfiguration.md)| |roleScopeTagIds|String collection|Optional role scope tags for the enrollment restrictions. Inherited from [deviceEnrollmentConfiguration](../resources/intune-shared-deviceenrollmentconfiguration.md)| |deviceEnrollmentConfigurationType|[deviceEnrollmentConfigurationType](../resources/intune-onboarding-deviceenrollmentconfigurationtype.md)|Support for Enrollment Configuration Type Inherited from [deviceEnrollmentConfiguration](../resources/intune-shared-deviceenrollmentconfiguration.md). Possible values are: `unknown`, `limit`, `platformRestrictions`, `windowsHelloForBusiness`, `defaultLimit`, `defaultPlatformRestrictions`, `defaultWindowsHelloForBusiness`, `defaultWindows10EnrollmentCompletionPageConfiguration`, `windows10EnrollmentCompletionPageConfiguration`, `deviceComanagementAuthorityConfiguration`, `singlePlatformRestriction`, `unknownFutureValue`, `enrollmentNotificationsConfiguration`.|
-|platformType|[enrollmentRestrictionPlatformType](../resources/intune-onboarding-enrollmentrestrictionplatformtype.md)|Platform type of the Enrollment Notification. Possible values are: `allPlatforms`, `ios`, `windows`, `windowsPhone`, `android`, `androidForWork`, `mac`.|
+|platformType|[enrollmentRestrictionPlatformType](../resources/intune-onboarding-enrollmentrestrictionplatformtype.md)|Platform type of the Enrollment Notification. Possible values are: `allPlatforms`, `ios`, `windows`, `windowsPhone`, `android`, `androidForWork`, `mac`, `linux`, `unknownFutureValue`.|
|templateType|[enrollmentNotificationTemplateType](../resources/intune-onboarding-enrollmentnotificationtemplatetype.md)|Template type of the Enrollment Notification. Possible values are: `email`, `push`, `unknownFutureValue`.| |notificationMessageTemplateId|Guid|Notification Message Template Id| |notificationTemplates|String collection|The list of notification data - <TemplateType>_<NotificationMessageTemplateId>|
Content-Length: 769
"defaultLocale": "Default Locale value" } ```-----
v1.0 Intune Onboarding Deviceenrollmentnotificationconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-deviceenrollmentnotificationconfiguration-delete.md
Title: "Delete deviceEnrollmentNotificationConfiguration" description: "Deletes a deviceEnrollmentNotificationConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceEnrollmentNotificationConfiguration](../resources/intune-onboarding-deviceenrollmentnotificationconfiguration.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 Onboarding Deviceenrollmentnotificationconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-deviceenrollmentnotificationconfiguration-get.md
Title: "Get deviceEnrollmentNotificationConfiguration" description: "Read properties and relationships of the deviceEnrollmentNotificationConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceEnrollmentNotificationConfiguration](../resources/intune-onboarding-deviceenrollmentnotificationconfiguration.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: 828
} } ```-----
v1.0 Intune Onboarding Deviceenrollmentnotificationconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-deviceenrollmentnotificationconfiguration-list.md
Title: "List deviceEnrollmentNotificationConfigurations" description: "List properties and relationships of the deviceEnrollmentNotificationConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceEnrollmentNotificationConfiguration](../resources/intune-onboarding-deviceenrollmentnotificationconfiguration.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: 882
] } ```-----
v1.0 Intune Onboarding Deviceenrollmentnotificationconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-deviceenrollmentnotificationconfiguration-update.md
Title: "Update deviceEnrollmentNotificationConfiguration" description: "Update the properties of a deviceEnrollmentNotificationConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceEnrollmentNotificationConfiguration](../resources/intune-onboarding-deviceenrollmentnotificationconfiguration.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 [
|version|Int32|The version of the device enrollment configuration Inherited from [deviceEnrollmentConfiguration](../resources/intune-shared-deviceenrollmentconfiguration.md)| |roleScopeTagIds|String collection|Optional role scope tags for the enrollment restrictions. Inherited from [deviceEnrollmentConfiguration](../resources/intune-shared-deviceenrollmentconfiguration.md)| |deviceEnrollmentConfigurationType|[deviceEnrollmentConfigurationType](../resources/intune-onboarding-deviceenrollmentconfigurationtype.md)|Support for Enrollment Configuration Type Inherited from [deviceEnrollmentConfiguration](../resources/intune-shared-deviceenrollmentconfiguration.md). Possible values are: `unknown`, `limit`, `platformRestrictions`, `windowsHelloForBusiness`, `defaultLimit`, `defaultPlatformRestrictions`, `defaultWindowsHelloForBusiness`, `defaultWindows10EnrollmentCompletionPageConfiguration`, `windows10EnrollmentCompletionPageConfiguration`, `deviceComanagementAuthorityConfiguration`, `singlePlatformRestriction`, `unknownFutureValue`, `enrollmentNotificationsConfiguration`.|
-|platformType|[enrollmentRestrictionPlatformType](../resources/intune-onboarding-enrollmentrestrictionplatformtype.md)|Platform type of the Enrollment Notification. Possible values are: `allPlatforms`, `ios`, `windows`, `windowsPhone`, `android`, `androidForWork`, `mac`.|
+|platformType|[enrollmentRestrictionPlatformType](../resources/intune-onboarding-enrollmentrestrictionplatformtype.md)|Platform type of the Enrollment Notification. Possible values are: `allPlatforms`, `ios`, `windows`, `windowsPhone`, `android`, `androidForWork`, `mac`, `linux`, `unknownFutureValue`.|
|templateType|[enrollmentNotificationTemplateType](../resources/intune-onboarding-enrollmentnotificationtemplatetype.md)|Template type of the Enrollment Notification. Possible values are: `email`, `push`, `unknownFutureValue`.| |notificationMessageTemplateId|Guid|Notification Message Template Id| |notificationTemplates|String collection|The list of notification data - <TemplateType>_<NotificationMessageTemplateId>|
Content-Length: 769
"defaultLocale": "Default Locale value" } ```-----
v1.0 Intune Onboarding Deviceenrollmentplatformrestrictionconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-deviceenrollmentplatformrestrictionconfiguration-create.md
Title: "Create deviceEnrollmentPlatformRestrictionConfiguration" description: "Create a new deviceEnrollmentPlatformRestrictionConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceEnrollmentPlatformRestrictionConfiguration](../resources/intune-onboarding-deviceenrollmentplatformrestrictionconfiguration.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 d
|roleScopeTagIds|String collection|Optional role scope tags for the enrollment restrictions. Inherited from [deviceEnrollmentConfiguration](../resources/intune-shared-deviceenrollmentconfiguration.md)| |deviceEnrollmentConfigurationType|[deviceEnrollmentConfigurationType](../resources/intune-onboarding-deviceenrollmentconfigurationtype.md)|Support for Enrollment Configuration Type Inherited from [deviceEnrollmentConfiguration](../resources/intune-shared-deviceenrollmentconfiguration.md). Possible values are: `unknown`, `limit`, `platformRestrictions`, `windowsHelloForBusiness`, `defaultLimit`, `defaultPlatformRestrictions`, `defaultWindowsHelloForBusiness`, `defaultWindows10EnrollmentCompletionPageConfiguration`, `windows10EnrollmentCompletionPageConfiguration`, `deviceComanagementAuthorityConfiguration`, `singlePlatformRestriction`, `unknownFutureValue`, `enrollmentNotificationsConfiguration`.| |platformRestriction|[deviceEnrollmentPlatformRestriction](../resources/intune-onboarding-deviceenrollmentplatformrestriction.md)|Restrictions based on platform, platform operating system version, and device ownership|
-|platformType|[enrollmentRestrictionPlatformType](../resources/intune-onboarding-enrollmentrestrictionplatformtype.md)|Type of platform for which this restriction applies. Possible values are: `allPlatforms`, `ios`, `windows`, `windowsPhone`, `android`, `androidForWork`, `mac`.|
+|platformType|[enrollmentRestrictionPlatformType](../resources/intune-onboarding-enrollmentrestrictionplatformtype.md)|Type of platform for which this restriction applies. Possible values are: `allPlatforms`, `ios`, `windows`, `windowsPhone`, `android`, `androidForWork`, `mac`, `linux`, `unknownFutureValue`.|
Content-Length: 937
"platformType": "ios" } ```-----
v1.0 Intune Onboarding Deviceenrollmentplatformrestrictionconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-deviceenrollmentplatformrestrictionconfiguration-delete.md
Title: "Delete deviceEnrollmentPlatformRestrictionConfiguration" description: "Deletes a deviceEnrollmentPlatformRestrictionConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceEnrollmentPlatformRestrictionConfiguration](../resources/intune-onboarding-deviceenrollmentplatformrestrictionconfiguration.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 Onboarding Deviceenrollmentplatformrestrictionconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-deviceenrollmentplatformrestrictionconfiguration-get.md
Title: "Get deviceEnrollmentPlatformRestrictionConfiguration" description: "Read properties and relationships of the deviceEnrollmentPlatformRestrictionConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceEnrollmentPlatformRestrictionConfiguration](../resources/intune-onboarding-deviceenrollmentplatformrestrictionconfiguration.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
} } ```-----
v1.0 Intune Onboarding Deviceenrollmentplatformrestrictionconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-deviceenrollmentplatformrestrictionconfiguration-list.md
Title: "List deviceEnrollmentPlatformRestrictionConfigurations" description: "List properties and relationships of the deviceEnrollmentPlatformRestrictionConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceEnrollmentPlatformRestrictionConfiguration](../resources/intune-onboarding-deviceenrollmentplatformrestrictionconfiguration.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: 1074
] } ```-----
v1.0 Intune Onboarding Deviceenrollmentplatformrestrictionconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-deviceenrollmentplatformrestrictionconfiguration-update.md
Title: "Update deviceEnrollmentPlatformRestrictionConfiguration" description: "Update the properties of a deviceEnrollmentPlatformRestrictionConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceEnrollmentPlatformRestrictionConfiguration](../resources/intune-onboarding-deviceenrollmentplatformrestrictionconfiguration.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 [
|roleScopeTagIds|String collection|Optional role scope tags for the enrollment restrictions. Inherited from [deviceEnrollmentConfiguration](../resources/intune-shared-deviceenrollmentconfiguration.md)| |deviceEnrollmentConfigurationType|[deviceEnrollmentConfigurationType](../resources/intune-onboarding-deviceenrollmentconfigurationtype.md)|Support for Enrollment Configuration Type Inherited from [deviceEnrollmentConfiguration](../resources/intune-shared-deviceenrollmentconfiguration.md). Possible values are: `unknown`, `limit`, `platformRestrictions`, `windowsHelloForBusiness`, `defaultLimit`, `defaultPlatformRestrictions`, `defaultWindowsHelloForBusiness`, `defaultWindows10EnrollmentCompletionPageConfiguration`, `windows10EnrollmentCompletionPageConfiguration`, `deviceComanagementAuthorityConfiguration`, `singlePlatformRestriction`, `unknownFutureValue`, `enrollmentNotificationsConfiguration`.| |platformRestriction|[deviceEnrollmentPlatformRestriction](../resources/intune-onboarding-deviceenrollmentplatformrestriction.md)|Restrictions based on platform, platform operating system version, and device ownership|
-|platformType|[enrollmentRestrictionPlatformType](../resources/intune-onboarding-enrollmentrestrictionplatformtype.md)|Type of platform for which this restriction applies. Possible values are: `allPlatforms`, `ios`, `windows`, `windowsPhone`, `android`, `androidForWork`, `mac`.|
+|platformType|[enrollmentRestrictionPlatformType](../resources/intune-onboarding-enrollmentrestrictionplatformtype.md)|Type of platform for which this restriction applies. Possible values are: `allPlatforms`, `ios`, `windows`, `windowsPhone`, `android`, `androidForWork`, `mac`, `linux`, `unknownFutureValue`.|
Content-Length: 937
"platformType": "ios" } ```-----
v1.0 Intune Onboarding Deviceenrollmentplatformrestrictionsconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-deviceenrollmentplatformrestrictionsconfiguration-create.md
Title: "Create deviceEnrollmentPlatformRestrictionsConfiguration" description: "Create a new deviceEnrollmentPlatformRestrictionsConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceEnrollmentPlatformRestrictionsConfiguration](../resources/intune-onboarding-deviceenrollmentplatformrestrictionsconfiguration.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: 3882
} } ```-----
v1.0 Intune Onboarding Deviceenrollmentplatformrestrictionsconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-deviceenrollmentplatformrestrictionsconfiguration-delete.md
Title: "Delete deviceEnrollmentPlatformRestrictionsConfiguration" description: "Deletes a deviceEnrollmentPlatformRestrictionsConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceEnrollmentPlatformRestrictionsConfiguration](../resources/intune-onboarding-deviceenrollmentplatformrestrictionsconfiguration.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 Onboarding Deviceenrollmentplatformrestrictionsconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-deviceenrollmentplatformrestrictionsconfiguration-get.md
Title: "Get deviceEnrollmentPlatformRestrictionsConfiguration" description: "Read properties and relationships of the deviceEnrollmentPlatformRestrictionsConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceEnrollmentPlatformRestrictionsConfiguration](../resources/intune-onboarding-deviceenrollmentplatformrestrictionsconfiguration.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: 4133
} } ```-----
v1.0 Intune Onboarding Deviceenrollmentplatformrestrictionsconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-deviceenrollmentplatformrestrictionsconfiguration-list.md
Title: "List deviceEnrollmentPlatformRestrictionsConfigurations" description: "List properties and relationships of the deviceEnrollmentPlatformRestrictionsConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceEnrollmentPlatformRestrictionsConfiguration](../resources/intune-onboarding-deviceenrollmentplatformrestrictionsconfiguration.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: 4379
] } ```-----
v1.0 Intune Onboarding Deviceenrollmentplatformrestrictionsconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-deviceenrollmentplatformrestrictionsconfiguration-update.md
Title: "Update deviceEnrollmentPlatformRestrictionsConfiguration" description: "Update the properties of a deviceEnrollmentPlatformRestrictionsConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceEnrollmentPlatformRestrictionsConfiguration](../resources/intune-onboarding-deviceenrollmentplatformrestrictionsconfiguration.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: 3882
} } ```-----
v1.0 Intune Onboarding Deviceenrollmentwindowshelloforbusinessconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-deviceenrollmentwindowshelloforbusinessconfiguration-create.md
Title: "Create deviceEnrollmentWindowsHelloForBusinessConfiguration" description: "Create a new deviceEnrollmentWindowsHelloForBusinessConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceEnrollmentWindowsHelloForBusinessConfiguration](../resources/intune-onboarding-deviceenrollmentwindowshelloforbusinessconfiguration.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: 950
"securityKeyForSignIn": "enabled" } ```-----
v1.0 Intune Onboarding Deviceenrollmentwindowshelloforbusinessconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-deviceenrollmentwindowshelloforbusinessconfiguration-delete.md
Title: "Delete deviceEnrollmentWindowsHelloForBusinessConfiguration" description: "Deletes a deviceEnrollmentWindowsHelloForBusinessConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceEnrollmentWindowsHelloForBusinessConfiguration](../resources/intune-onboarding-deviceenrollmentwindowshelloforbusinessconfiguration.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 Onboarding Deviceenrollmentwindowshelloforbusinessconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-deviceenrollmentwindowshelloforbusinessconfiguration-get.md
Title: "Get deviceEnrollmentWindowsHelloForBusinessConfiguration" description: "Read properties and relationships of the deviceEnrollmentWindowsHelloForBusinessConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceEnrollmentWindowsHelloForBusinessConfiguration](../resources/intune-onboarding-deviceenrollmentwindowshelloforbusinessconfiguration.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: 1019
} } ```-----
v1.0 Intune Onboarding Deviceenrollmentwindowshelloforbusinessconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-deviceenrollmentwindowshelloforbusinessconfiguration-list.md
Title: "List deviceEnrollmentWindowsHelloForBusinessConfigurations" description: "List properties and relationships of the deviceEnrollmentWindowsHelloForBusinessConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceEnrollmentWindowsHelloForBusinessConfiguration](../resources/intune-onboarding-deviceenrollmentwindowshelloforbusinessconfiguration.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: 1083
] } ```-----
v1.0 Intune Onboarding Deviceenrollmentwindowshelloforbusinessconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-deviceenrollmentwindowshelloforbusinessconfiguration-update.md
Title: "Update deviceEnrollmentWindowsHelloForBusinessConfiguration" description: "Update the properties of a deviceEnrollmentWindowsHelloForBusinessConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceEnrollmentWindowsHelloForBusinessConfiguration](../resources/intune-onboarding-deviceenrollmentwindowshelloforbusinessconfiguration.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: 950
"securityKeyForSignIn": "enabled" } ```-----
v1.0 Intune Onboarding Devicemanagementexchangeconnector Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-devicemanagementexchangeconnector-create.md
Title: "Create deviceManagementExchangeConnector" description: "Create a new deviceManagementExchangeConnector object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceManagementExchangeConnector](../resources/intune-onboarding-devicemanagementexchangeconnector.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: 539
"exchangeOrganization": "Exchange Organization value" } ```-----
v1.0 Intune Onboarding Devicemanagementexchangeconnector Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-devicemanagementexchangeconnector-delete.md
Title: "Delete deviceManagementExchangeConnector" description: "Deletes a deviceManagementExchangeConnector."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceManagementExchangeConnector](../resources/intune-onboarding-devicemanagementexchangeconnector.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 Onboarding Devicemanagementexchangeconnector Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-devicemanagementexchangeconnector-get.md
Title: "Get deviceManagementExchangeConnector" description: "Read properties and relationships of the deviceManagementExchangeConnector object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementExchangeConnector](../resources/intune-onboarding-devicemanagementexchangeconnector.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: 580
} } ```-----
v1.0 Intune Onboarding Devicemanagementexchangeconnector List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-devicemanagementexchangeconnector-list.md
Title: "List deviceManagementExchangeConnectors" description: "List properties and relationships of the deviceManagementExchangeConnector objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceManagementExchangeConnector](../resources/intune-onboarding-devicemanagementexchangeconnector.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: 616
] } ```-----
v1.0 Intune Onboarding Devicemanagementexchangeconnector Sync https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-devicemanagementexchangeconnector-sync.md
Title: "sync 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 Onboarding Devicemanagementexchangeconnector Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-devicemanagementexchangeconnector-update.md
Title: "Update deviceManagementExchangeConnector" description: "Update the properties of a deviceManagementExchangeConnector object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementExchangeConnector](../resources/intune-onboarding-devicemanagementexchangeconnector.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: 539
"exchangeOrganization": "Exchange Organization value" } ```-----
v1.0 Intune Onboarding Devicemanagementexchangeonpremisespolicy Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-devicemanagementexchangeonpremisespolicy-get.md
Title: "Get deviceManagementExchangeOnPremisesPolicy" description: "Read properties and relationships of the deviceManagementExchangeOnPremisesPolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementExchangeOnPremisesPolicy](../resources/intune-onboarding-devicemanagementexchangeonpremisespolicy.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: 777
} } ```-----
v1.0 Intune Onboarding Devicemanagementexchangeonpremisespolicy Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-devicemanagementexchangeonpremisespolicy-update.md
Title: "Update deviceManagementExchangeOnPremisesPolicy" description: "Update the properties of a deviceManagementExchangeOnPremisesPolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementExchangeOnPremisesPolicy](../resources/intune-onboarding-devicemanagementexchangeonpremisespolicy.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: 714
] } ```-----
v1.0 Intune Onboarding Devicemanagementpartner Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-devicemanagementpartner-create.md
Title: "Create deviceManagementPartner" description: "Create a new deviceManagementPartner object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceManagementPartner](../resources/intune-onboarding-devicemanagementpartner.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: 1189
] } ```-----
v1.0 Intune Onboarding Devicemanagementpartner Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-devicemanagementpartner-delete.md
Title: "Delete deviceManagementPartner" description: "Deletes a deviceManagementPartner."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceManagementPartner](../resources/intune-onboarding-devicemanagementpartner.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 Onboarding Devicemanagementpartner Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-devicemanagementpartner-get.md
Title: "Get deviceManagementPartner" description: "Read properties and relationships of the deviceManagementPartner object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementPartner](../resources/intune-onboarding-devicemanagementpartner.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: 1254
} } ```-----
v1.0 Intune Onboarding Devicemanagementpartner List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-devicemanagementpartner-list.md
Title: "List deviceManagementPartners" description: "List properties and relationships of the deviceManagementPartner objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceManagementPartner](../resources/intune-onboarding-devicemanagementpartner.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: 1314
] } ```-----
v1.0 Intune Onboarding Devicemanagementpartner Terminate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-devicemanagementpartner-terminate.md
Title: "terminate 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 Onboarding Devicemanagementpartner Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-devicemanagementpartner-update.md
Title: "Update deviceManagementPartner" description: "Update the properties of a deviceManagementPartner object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementPartner](../resources/intune-onboarding-devicemanagementpartner.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: 1189
] } ```-----
v1.0 Intune Onboarding Enrollmentconfigurationassignment Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-enrollmentconfigurationassignment-create.md
Title: "Create enrollmentConfigurationAssignment" description: "Create a new enrollmentConfigurationAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [enrollmentConfigurationAssignment](../resources/intune-onboarding-enrollmentconfigurationassignment.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: 502
"sourceId": "Source Id value" } ```-----
v1.0 Intune Onboarding Enrollmentconfigurationassignment Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-enrollmentconfigurationassignment-delete.md
Title: "Delete enrollmentConfigurationAssignment" description: "Deletes a enrollmentConfigurationAssignment."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [enrollmentConfigurationAssignment](../resources/intune-onboarding-enrollmentconfigurationassignment.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 Onboarding Enrollmentconfigurationassignment Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-enrollmentconfigurationassignment-get.md
Title: "Get enrollmentConfigurationAssignment" description: "Read properties and relationships of the enrollmentConfigurationAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [enrollmentConfigurationAssignment](../resources/intune-onboarding-enrollmentconfigurationassignment.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: 541
} } ```-----
v1.0 Intune Onboarding Enrollmentconfigurationassignment List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-enrollmentconfigurationassignment-list.md
Title: "List enrollmentConfigurationAssignments" description: "List properties and relationships of the enrollmentConfigurationAssignment objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [enrollmentConfigurationAssignment](../resources/intune-onboarding-enrollmentconfigurationassignment.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: 575
] } ```-----
v1.0 Intune Onboarding Enrollmentconfigurationassignment Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-enrollmentconfigurationassignment-update.md
Title: "Update enrollmentConfigurationAssignment" description: "Update the properties of a enrollmentConfigurationAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [enrollmentConfigurationAssignment](../resources/intune-onboarding-enrollmentconfigurationassignment.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: 502
"sourceId": "Source Id value" } ```-----
v1.0 Intune Onboarding Mobilethreatdefenseconnector Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-mobilethreatdefenseconnector-create.md
Title: "Create mobileThreatDefenseConnector" description: "Create a new mobileThreatDefenseConnector object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [mobileThreatDefenseConnector](../resources/intune-onboarding-mobilethreatdefenseconnector.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
"microsoftDefenderForEndpointAttachEnabled": true } ```-----
v1.0 Intune Onboarding Mobilethreatdefenseconnector Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-mobilethreatdefenseconnector-delete.md
Title: "Delete mobileThreatDefenseConnector" description: "Deletes a mobileThreatDefenseConnector."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [mobileThreatDefenseConnector](../resources/intune-onboarding-mobilethreatdefenseconnector.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 Onboarding Mobilethreatdefenseconnector Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-mobilethreatdefenseconnector-get.md
Title: "Get mobileThreatDefenseConnector" description: "Read properties and relationships of the mobileThreatDefenseConnector object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [mobileThreatDefenseConnector](../resources/intune-onboarding-mobilethreatdefenseconnector.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: 1006
} } ```-----
v1.0 Intune Onboarding Mobilethreatdefenseconnector List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-mobilethreatdefenseconnector-list.md
Title: "List mobileThreatDefenseConnectors" description: "List properties and relationships of the mobileThreatDefenseConnector objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [mobileThreatDefenseConnector](../resources/intune-onboarding-mobilethreatdefenseconnector.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: 1060
] } ```-----
v1.0 Intune Onboarding Mobilethreatdefenseconnector Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-mobilethreatdefenseconnector-update.md
Title: "Update mobileThreatDefenseConnector" description: "Update the properties of a mobileThreatDefenseConnector object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [mobileThreatDefenseConnector](../resources/intune-onboarding-mobilethreatdefenseconnector.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
"microsoftDefenderForEndpointAttachEnabled": true } ```-----
v1.0 Intune Onboarding Onpremisesconditionalaccesssettings Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-onpremisesconditionalaccesssettings-get.md
Title: "Get onPremisesConditionalAccessSettings" description: "Read properties and relationships of the onPremisesConditionalAccessSettings object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [onPremisesConditionalAccessSettings](../resources/intune-onboarding-onpremisesconditionalaccesssettings.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: 363
} } ```-----
v1.0 Intune Onboarding Onpremisesconditionalaccesssettings Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-onpremisesconditionalaccesssettings-update.md
Title: "Update onPremisesConditionalAccessSettings" description: "Update the properties of a onPremisesConditionalAccessSettings object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [onPremisesConditionalAccessSettings](../resources/intune-onboarding-onpremisesconditionalaccesssettings.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: 324
"overrideDefaultRule": true } ```-----
v1.0 Intune Onboarding Organization Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-organization-get.md
Title: "Get organization" description: "Read properties and relationships of the organization object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [organization](../resources/intune-onboarding-organization.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: 584
} } ```-----
v1.0 Intune Onboarding Organization List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-organization-list.md
Title: "List organizations" description: "List properties and relationships of the organization objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [organization](../resources/intune-onboarding-organization.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: 622
] } ```-----
v1.0 Intune Onboarding Organization Setmobiledevicemanagementauthority https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-organization-setmobiledevicemanagementauthority.md
Title: "setMobileDeviceManagementAuthority action" description: "Set mobile device management authority"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Set mobile device management authority
-## Prerequisites
+## Permissions
One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)|
Content-Length: 18
"value": 2 } ```-----
v1.0 Intune Onboarding Organization Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-organization-update.md
Title: "Update organization" description: "Update the properties of a organization object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [organization](../resources/intune-onboarding-organization.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: 541
} } ```-----
v1.0 Intune Onboarding Sideloadingkey Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-sideloadingkey-create.md
Title: "Create sideLoadingKey" description: "Create a new sideLoadingKey object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [sideLoadingKey](../resources/intune-onboarding-sideloadingkey.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: 295
"lastUpdatedDateTime": "Last Updated Date Time value" } ```-----
v1.0 Intune Onboarding Sideloadingkey Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-sideloadingkey-delete.md
Title: "Delete sideLoadingKey" description: "Deletes a sideLoadingKey."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [sideLoadingKey](../resources/intune-onboarding-sideloadingkey.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 Onboarding Sideloadingkey Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-sideloadingkey-get.md
Title: "Get sideLoadingKey" description: "Read properties and relationships of the sideLoadingKey object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [sideLoadingKey](../resources/intune-onboarding-sideloadingkey.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: 328
} } ```-----
v1.0 Intune Onboarding Sideloadingkey List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-sideloadingkey-list.md
Title: "List sideLoadingKeies" description: "List properties and relationships of the sideLoadingKey objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [sideLoadingKey](../resources/intune-onboarding-sideloadingkey.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: 356
] } ```-----
v1.0 Intune Onboarding Sideloadingkey Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-sideloadingkey-update.md
Title: "Update sideLoadingKey" description: "Update the properties of a sideLoadingKey object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [sideLoadingKey](../resources/intune-onboarding-sideloadingkey.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: 295
"lastUpdatedDateTime": "Last Updated Date Time value" } ```-----
v1.0 Intune Onboarding Vpptoken Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-vpptoken-create.md
Title: "Create vppToken" description: "Create a new vppToken object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [vppToken](../resources/intune-onboarding-vpptoken.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 Onboarding Vpptoken Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-vpptoken-delete.md
Title: "Delete vppToken" description: "Deletes a vppToken."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [vppToken](../resources/intune-onboarding-vpptoken.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 Onboarding Vpptoken Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-vpptoken-get.md
Title: "Get vppToken" description: "Read properties and relationships of the vppToken object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [vppToken](../resources/intune-onboarding-vpptoken.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 Onboarding Vpptoken Getlicensesforapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-vpptoken-getlicensesforapp.md
Title: "getLicensesForApp 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: 298
] } ```-----
v1.0 Intune Onboarding Vpptoken List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-vpptoken-list.md
Title: "List vppTokens" description: "List properties and relationships of the vppToken objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [vppToken](../resources/intune-onboarding-vpptoken.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: 1264
] } ```-----
v1.0 Intune Onboarding Vpptoken Revokelicenses https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-vpptoken-revokelicenses.md
Title: "revokeLicenses action" description: "Revoke licenses associated with a specific appleVolumePurchaseProgramToken"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Revoke licenses associated with a specific appleVolumePurchaseProgramToken
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Onboarding Vpptoken Synclicensecounts https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-vpptoken-synclicensecounts.md
Title: "syncLicenseCounts 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 Onboarding Vpptoken Synclicenses https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-vpptoken-synclicenses.md
Title: "syncLicenses action" description: "Syncs licenses associated with a specific appleVolumePurchaseProgramToken"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Syncs licenses associated with a specific appleVolumePurchaseProgramToken
-## Prerequisites
+## Permissions
One of the following permissions is required to call this 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 Onboarding Vpptoken Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-vpptoken-update.md
Title: "Update vppToken" description: "Update the properties of a vppToken object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [vppToken](../resources/intune-onboarding-vpptoken.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 Onboarding Windows10enrollmentcompletionpageconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-windows10enrollmentcompletionpageconfiguration-create.md
Title: "Create windows10EnrollmentCompletionPageConfiguration" description: "Create a new windows10EnrollmentCompletionPageConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windows10EnrollmentCompletionPageConfiguration](../resources/intune-onboarding-windows10enrollmentcompletionpageconfiguration.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: 1045
"disableUserStatusTrackingAfterFirstUser": true } ```-----
v1.0 Intune Onboarding Windows10enrollmentcompletionpageconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-windows10enrollmentcompletionpageconfiguration-delete.md
Title: "Delete windows10EnrollmentCompletionPageConfiguration" description: "Deletes a windows10EnrollmentCompletionPageConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windows10EnrollmentCompletionPageConfiguration](../resources/intune-onboarding-windows10enrollmentcompletionpageconfiguration.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 Onboarding Windows10enrollmentcompletionpageconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-windows10enrollmentcompletionpageconfiguration-get.md
Title: "Get windows10EnrollmentCompletionPageConfiguration" description: "Read properties and relationships of the windows10EnrollmentCompletionPageConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windows10EnrollmentCompletionPageConfiguration](../resources/intune-onboarding-windows10enrollmentcompletionpageconfiguration.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: 1116
} } ```-----
v1.0 Intune Onboarding Windows10enrollmentcompletionpageconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-windows10enrollmentcompletionpageconfiguration-list.md
Title: "List windows10EnrollmentCompletionPageConfigurations" description: "List properties and relationships of the windows10EnrollmentCompletionPageConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windows10EnrollmentCompletionPageConfiguration](../resources/intune-onboarding-windows10enrollmentcompletionpageconfiguration.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: 1182
] } ```-----
v1.0 Intune Onboarding Windows10enrollmentcompletionpageconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-onboarding-windows10enrollmentcompletionpageconfiguration-update.md
Title: "Update windows10EnrollmentCompletionPageConfiguration" description: "Update the properties of a windows10EnrollmentCompletionPageConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windows10EnrollmentCompletionPageConfiguration](../resources/intune-onboarding-windows10enrollmentcompletionpageconfiguration.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: 1045
"disableUserStatusTrackingAfterFirstUser": true } ```-----
v1.0 Intune Partnerintegration Appvulnerabilitymanageddevice Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-partnerintegration-appvulnerabilitymanageddevice-create.md
Title: "Create appVulnerabilityManagedDevice" description: "Create a new appVulnerabilityManagedDevice object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [appVulnerabilityManagedDevice](../resources/intune-partnerintegration-appvulnerabilitymanageddevice.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
"lastSyncDateTime": "2017-01-01T00:02:49.3205976-08:00" } ```-----
v1.0 Intune Partnerintegration Appvulnerabilitymanageddevice Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-partnerintegration-appvulnerabilitymanageddevice-delete.md
Title: "Delete appVulnerabilityManagedDevice" description: "Deletes a appVulnerabilityManagedDevice."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [appVulnerabilityManagedDevice](../resources/intune-partnerintegration-appvulnerabilitymanageddevice.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 Partnerintegration Appvulnerabilitymanageddevice Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-partnerintegration-appvulnerabilitymanageddevice-get.md
Title: "Get appVulnerabilityManagedDevice" description: "Read properties and relationships of the appVulnerabilityManagedDevice object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [appVulnerabilityManagedDevice](../resources/intune-partnerintegration-appvulnerabilitymanageddevice.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: 298
} } ```-----
v1.0 Intune Partnerintegration Appvulnerabilitymanageddevice List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-partnerintegration-appvulnerabilitymanageddevice-list.md
Title: "List appVulnerabilityManagedDevices" description: "List properties and relationships of the appVulnerabilityManagedDevice objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [appVulnerabilityManagedDevice](../resources/intune-partnerintegration-appvulnerabilitymanageddevice.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: 322
] } ```-----
v1.0 Intune Partnerintegration Appvulnerabilitymanageddevice Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-partnerintegration-appvulnerabilitymanageddevice-update.md
Title: "Update appVulnerabilityManagedDevice" description: "Update the properties of a appVulnerabilityManagedDevice object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [appVulnerabilityManagedDevice](../resources/intune-partnerintegration-appvulnerabilitymanageddevice.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
"lastSyncDateTime": "2017-01-01T00:02:49.3205976-08:00" } ```-----
v1.0 Intune Partnerintegration Appvulnerabilitymobileapp Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-partnerintegration-appvulnerabilitymobileapp-create.md
Title: "Create appVulnerabilityMobileApp" description: "Create a new appVulnerabilityMobileApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [appVulnerabilityMobileApp](../resources/intune-partnerintegration-appvulnerabilitymobileapp.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: 396
"version": "Version value" } ```-----
v1.0 Intune Partnerintegration Appvulnerabilitymobileapp Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-partnerintegration-appvulnerabilitymobileapp-delete.md
Title: "Delete appVulnerabilityMobileApp" description: "Deletes a appVulnerabilityMobileApp."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [appVulnerabilityMobileApp](../resources/intune-partnerintegration-appvulnerabilitymobileapp.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 Partnerintegration Appvulnerabilitymobileapp Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-partnerintegration-appvulnerabilitymobileapp-get.md
Title: "Get appVulnerabilityMobileApp" description: "Read properties and relationships of the appVulnerabilityMobileApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [appVulnerabilityMobileApp](../resources/intune-partnerintegration-appvulnerabilitymobileapp.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: 431
} } ```-----
v1.0 Intune Partnerintegration Appvulnerabilitymobileapp List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-partnerintegration-appvulnerabilitymobileapp-list.md
Title: "List appVulnerabilityMobileApps" description: "List properties and relationships of the appVulnerabilityMobileApp objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [appVulnerabilityMobileApp](../resources/intune-partnerintegration-appvulnerabilitymobileapp.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 Partnerintegration Appvulnerabilitymobileapp Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-partnerintegration-appvulnerabilitymobileapp-update.md
Title: "Update appVulnerabilityMobileApp" description: "Update the properties of a appVulnerabilityMobileApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [appVulnerabilityMobileApp](../resources/intune-partnerintegration-appvulnerabilitymobileapp.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: 396
"version": "Version value" } ```-----
v1.0 Intune Partnerintegration Appvulnerabilitytask Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-partnerintegration-appvulnerabilitytask-create.md
Title: "Create appVulnerabilityTask" description: "Create a new appVulnerabilityTask object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [appVulnerabilityTask](../resources/intune-partnerintegration-appvulnerabilitytask.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: 773
"remediation": "Remediation value" } ```-----
v1.0 Intune Partnerintegration Appvulnerabilitytask Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-partnerintegration-appvulnerabilitytask-delete.md
Title: "Delete appVulnerabilityTask" description: "Deletes a appVulnerabilityTask."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [appVulnerabilityTask](../resources/intune-partnerintegration-appvulnerabilitytask.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 Partnerintegration Appvulnerabilitytask Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-partnerintegration-appvulnerabilitytask-get.md
Title: "Get appVulnerabilityTask" description: "Read properties and relationships of the appVulnerabilityTask object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [appVulnerabilityTask](../resources/intune-partnerintegration-appvulnerabilitytask.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: 832
} } ```-----
v1.0 Intune Partnerintegration Appvulnerabilitytask List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-partnerintegration-appvulnerabilitytask-list.md
Title: "List appVulnerabilityTasks" description: "List properties and relationships of the appVulnerabilityTask objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [appVulnerabilityTask](../resources/intune-partnerintegration-appvulnerabilitytask.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: 886
] } ```-----
v1.0 Intune Partnerintegration Appvulnerabilitytask Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-partnerintegration-appvulnerabilitytask-update.md
Title: "Update appVulnerabilityTask" description: "Update the properties of a appVulnerabilityTask object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [appVulnerabilityTask](../resources/intune-partnerintegration-appvulnerabilitytask.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: 773
"remediation": "Remediation value" } ```-----
v1.0 Intune Partnerintegration Configmanagercollection Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-partnerintegration-configmanagercollection-create.md
Title: "Create configManagerCollection" description: "Create a new configManagerCollection object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [configManagerCollection](../resources/intune-partnerintegration-configmanagercollection.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: 435
"lastModifiedDateTime": "2017-01-01T00:00:35.1329464-08:00" } ```-----
v1.0 Intune Partnerintegration Configmanagercollection Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-partnerintegration-configmanagercollection-delete.md
Title: "Delete configManagerCollection" description: "Deletes a configManagerCollection."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [configManagerCollection](../resources/intune-partnerintegration-configmanagercollection.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 Partnerintegration Configmanagercollection Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-partnerintegration-configmanagercollection-get.md
Title: "Get configManagerCollection" description: "Read properties and relationships of the configManagerCollection object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [configManagerCollection](../resources/intune-partnerintegration-configmanagercollection.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
} } ```-----
v1.0 Intune Partnerintegration Configmanagercollection Getpolicysummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-partnerintegration-configmanagercollection-getpolicysummary.md
Title: "getPolicySummary 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: 276
} } ```-----
v1.0 Intune Partnerintegration Configmanagercollection List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-partnerintegration-configmanagercollection-list.md
Title: "List configManagerCollections" description: "List properties and relationships of the configManagerCollection objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [configManagerCollection](../resources/intune-partnerintegration-configmanagercollection.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: 500
] } ```-----
v1.0 Intune Partnerintegration Configmanagercollection Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-partnerintegration-configmanagercollection-update.md
Title: "Update configManagerCollection" description: "Update the properties of a configManagerCollection object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [configManagerCollection](../resources/intune-partnerintegration-configmanagercollection.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: 435
"lastModifiedDateTime": "2017-01-01T00:00:35.1329464-08:00" } ```-----
v1.0 Intune Partnerintegration Deviceappmanagementtask Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-partnerintegration-deviceappmanagementtask-create.md
Title: "Create deviceAppManagementTask" description: "Create a new deviceAppManagementTask object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceAppManagementTask](../resources/intune-partnerintegration-deviceappmanagementtask.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: 508
"status": "pending" } ```-----
v1.0 Intune Partnerintegration Deviceappmanagementtask Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-partnerintegration-deviceappmanagementtask-delete.md
Title: "Delete deviceAppManagementTask" description: "Deletes a deviceAppManagementTask."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceAppManagementTask](../resources/intune-partnerintegration-deviceappmanagementtask.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 Partnerintegration Deviceappmanagementtask Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-partnerintegration-deviceappmanagementtask-get.md
Title: "Get deviceAppManagementTask" description: "Read properties and relationships of the deviceAppManagementTask object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceAppManagementTask](../resources/intune-partnerintegration-deviceappmanagementtask.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 Partnerintegration Deviceappmanagementtask List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-partnerintegration-deviceappmanagementtask-list.md
Title: "List deviceAppManagementTasks" description: "List properties and relationships of the deviceAppManagementTask objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceAppManagementTask](../resources/intune-partnerintegration-deviceappmanagementtask.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: 589
] } ```-----
v1.0 Intune Partnerintegration Deviceappmanagementtask Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-partnerintegration-deviceappmanagementtask-update.md
Title: "Update deviceAppManagementTask" description: "Update the properties of a deviceAppManagementTask object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceAppManagementTask](../resources/intune-partnerintegration-deviceappmanagementtask.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: 508
"status": "pending" } ```-----
v1.0 Intune Partnerintegration Deviceappmanagementtask Updatestatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-partnerintegration-deviceappmanagementtask-updatestatus.md
Title: "updateStatus action" description: "Set the task's status and attach a note."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Set the task's status and attach a note.
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Partnerintegration Securityconfigurationtask Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-partnerintegration-securityconfigurationtask-create.md
Title: "Create securityConfigurationTask" description: "Create a new securityConfigurationTask object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [securityConfigurationTask](../resources/intune-partnerintegration-securityconfigurationtask.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 s
|applicablePlatform|[endpointSecurityConfigurationApplicablePlatform](../resources/intune-partnerintegration-endpointsecurityconfigurationapplicableplatform.md)|The applicable platform. Possible values are: `unknown`, `macOS`, `windows10AndLater`, `windows10AndWindowsServer`.| |endpointSecurityPolicyProfile|[endpointSecurityConfigurationProfileType](../resources/intune-partnerintegration-endpointsecurityconfigurationprofiletype.md)|The endpoint security policy profile. Possible values are: `unknown`, `antivirus`, `windowsSecurity`, `bitLocker`, `fileVault`, `firewall`, `firewallRules`, `endpointDetectionAndResponse`, `deviceControl`, `appAndBrowserIsolation`, `exploitProtection`, `webProtection`, `applicationControl`, `attackSurfaceReductionRules`, `accountProtection`.| |insights|String|Information about the mitigation.|
-|managedDeviceCount|Int32|The number of vulnerable devices.|
-|intendedSettings|[keyValuePair](../resources/intune-shared-keyvaluepair.md) collection|The intended settings and their values.|
+|managedDeviceCount|Int32|The number of vulnerable devices. Valid values 0 to 65536|
+|intendedSettings|[keyValuePair](../resources/intune-partnerintegration-keyvaluepair.md) collection|The intended settings and their values.|
Content-Length: 854
] } ```-----
v1.0 Intune Partnerintegration Securityconfigurationtask Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-partnerintegration-securityconfigurationtask-delete.md
Title: "Delete securityConfigurationTask" description: "Deletes a securityConfigurationTask."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [securityConfigurationTask](../resources/intune-partnerintegration-securityconfigurationtask.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 Partnerintegration Securityconfigurationtask Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-partnerintegration-securityconfigurationtask-get.md
Title: "Get securityConfigurationTask" description: "Read properties and relationships of the securityConfigurationTask object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [securityConfigurationTask](../resources/intune-partnerintegration-securityconfigurationtask.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: 921
} } ```-----
v1.0 Intune Partnerintegration Securityconfigurationtask List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-partnerintegration-securityconfigurationtask-list.md
Title: "List securityConfigurationTasks" description: "List properties and relationships of the securityConfigurationTask objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [securityConfigurationTask](../resources/intune-partnerintegration-securityconfigurationtask.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: 983
] } ```-----
v1.0 Intune Partnerintegration Securityconfigurationtask Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-partnerintegration-securityconfigurationtask-update.md
Title: "Update securityConfigurationTask" description: "Update the properties of a securityConfigurationTask object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [securityConfigurationTask](../resources/intune-partnerintegration-securityconfigurationtask.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 [
|applicablePlatform|[endpointSecurityConfigurationApplicablePlatform](../resources/intune-partnerintegration-endpointsecurityconfigurationapplicableplatform.md)|The applicable platform. Possible values are: `unknown`, `macOS`, `windows10AndLater`, `windows10AndWindowsServer`.| |endpointSecurityPolicyProfile|[endpointSecurityConfigurationProfileType](../resources/intune-partnerintegration-endpointsecurityconfigurationprofiletype.md)|The endpoint security policy profile. Possible values are: `unknown`, `antivirus`, `windowsSecurity`, `bitLocker`, `fileVault`, `firewall`, `firewallRules`, `endpointDetectionAndResponse`, `deviceControl`, `appAndBrowserIsolation`, `exploitProtection`, `webProtection`, `applicationControl`, `attackSurfaceReductionRules`, `accountProtection`.| |insights|String|Information about the mitigation.|
-|managedDeviceCount|Int32|The number of vulnerable devices.|
-|intendedSettings|[keyValuePair](../resources/intune-shared-keyvaluepair.md) collection|The intended settings and their values.|
+|managedDeviceCount|Int32|The number of vulnerable devices. Valid values 0 to 65536|
+|intendedSettings|[keyValuePair](../resources/intune-partnerintegration-keyvaluepair.md) collection|The intended settings and their values.|
Content-Length: 854
] } ```-----
v1.0 Intune Partnerintegration Unmanageddevicediscoverytask Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-partnerintegration-unmanageddevicediscoverytask-create.md
Title: "Create unmanagedDeviceDiscoveryTask" description: "Create a new unmanagedDeviceDiscoveryTask object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [unmanagedDeviceDiscoveryTask](../resources/intune-partnerintegration-unmanageddevicediscoverytask.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: 1069
] } ```-----
v1.0 Intune Partnerintegration Unmanageddevicediscoverytask Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-partnerintegration-unmanageddevicediscoverytask-delete.md
Title: "Delete unmanagedDeviceDiscoveryTask" description: "Deletes a unmanagedDeviceDiscoveryTask."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [unmanagedDeviceDiscoveryTask](../resources/intune-partnerintegration-unmanageddevicediscoverytask.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 Partnerintegration Unmanageddevicediscoverytask Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-partnerintegration-unmanageddevicediscoverytask-get.md
Title: "Get unmanagedDeviceDiscoveryTask" description: "Read properties and relationships of the unmanagedDeviceDiscoveryTask object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [unmanagedDeviceDiscoveryTask](../resources/intune-partnerintegration-unmanageddevicediscoverytask.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: 1144
} } ```-----
v1.0 Intune Partnerintegration Unmanageddevicediscoverytask List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-partnerintegration-unmanageddevicediscoverytask-list.md
Title: "List unmanagedDeviceDiscoveryTasks" description: "List properties and relationships of the unmanagedDeviceDiscoveryTask objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [unmanagedDeviceDiscoveryTask](../resources/intune-partnerintegration-unmanageddevicediscoverytask.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: 1214
] } ```-----
v1.0 Intune Partnerintegration Unmanageddevicediscoverytask Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-partnerintegration-unmanageddevicediscoverytask-update.md
Title: "Update unmanagedDeviceDiscoveryTask" description: "Update the properties of a unmanagedDeviceDiscoveryTask object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [unmanagedDeviceDiscoveryTask](../resources/intune-partnerintegration-unmanageddevicediscoverytask.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: 1069
] } ```-----
v1.0 Intune Partnerintegration Vulnerablemanageddevice Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-partnerintegration-vulnerablemanageddevice-create.md
Title: "Create vulnerableManagedDevice" description: "Create a new vulnerableManagedDevice object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [vulnerableManagedDevice](../resources/intune-partnerintegration-vulnerablemanageddevice.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: 263
"lastSyncDateTime": "2017-01-01T00:02:49.3205976-08:00" } ```-----
v1.0 Intune Partnerintegration Vulnerablemanageddevice Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-partnerintegration-vulnerablemanageddevice-delete.md
Title: "Delete vulnerableManagedDevice" description: "Deletes a vulnerableManagedDevice."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [vulnerableManagedDevice](../resources/intune-partnerintegration-vulnerablemanageddevice.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 Partnerintegration Vulnerablemanageddevice Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-partnerintegration-vulnerablemanageddevice-get.md
Title: "Get vulnerableManagedDevice" description: "Read properties and relationships of the vulnerableManagedDevice object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [vulnerableManagedDevice](../resources/intune-partnerintegration-vulnerablemanageddevice.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: 292
} } ```-----
v1.0 Intune Partnerintegration Vulnerablemanageddevice List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-partnerintegration-vulnerablemanageddevice-list.md
Title: "List vulnerableManagedDevices" description: "List properties and relationships of the vulnerableManagedDevice objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [vulnerableManagedDevice](../resources/intune-partnerintegration-vulnerablemanageddevice.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: 316
] } ```-----
v1.0 Intune Partnerintegration Vulnerablemanageddevice Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-partnerintegration-vulnerablemanageddevice-update.md
Title: "Update vulnerableManagedDevice" description: "Update the properties of a vulnerableManagedDevice object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [vulnerableManagedDevice](../resources/intune-partnerintegration-vulnerablemanageddevice.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: 263
"lastSyncDateTime": "2017-01-01T00:02:49.3205976-08:00" } ```-----
v1.0 Intune Policyset Deviceandappmanagementassignmentfilter Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-deviceandappmanagementassignmentfilter-create.md
Title: "Create deviceAndAppManagementAssignmentFilter" description: "Create a new deviceAndAppManagementAssignmentFilter object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceAndAppManagementAssignmentFilter](../resources/intune-policyset-deviceandappmanagementassignmentfilter.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: 715
] } ```-----
v1.0 Intune Policyset Deviceandappmanagementassignmentfilter Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-deviceandappmanagementassignmentfilter-delete.md
Title: "Delete deviceAndAppManagementAssignmentFilter" description: "Deletes a deviceAndAppManagementAssignmentFilter."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceAndAppManagementAssignmentFilter](../resources/intune-policyset-deviceandappmanagementassignmentfilter.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 Policyset Deviceandappmanagementassignmentfilter Enable https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-deviceandappmanagementassignmentfilter-enable.md
Title: "enable 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 Policyset Deviceandappmanagementassignmentfilter Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-deviceandappmanagementassignmentfilter-get.md
Title: "Get deviceAndAppManagementAssignmentFilter" description: "Read properties and relationships of the deviceAndAppManagementAssignmentFilter object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceAndAppManagementAssignmentFilter](../resources/intune-policyset-deviceandappmanagementassignmentfilter.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: 774
} } ```-----
v1.0 Intune Policyset Deviceandappmanagementassignmentfilter Getplatformsupportedproperties https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-deviceandappmanagementassignmentfilter-getplatformsupportedproperties.md
Title: "getPlatformSupportedProperties 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: 407
] } ```-----
v1.0 Intune Policyset Deviceandappmanagementassignmentfilter Getstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-deviceandappmanagementassignmentfilter-getstate.md
Title: "getState 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: 105
} } ```-----
v1.0 Intune Policyset Deviceandappmanagementassignmentfilter Getsupportedproperties https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-deviceandappmanagementassignmentfilter-getsupportedproperties.md
Title: "getSupportedProperties 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: 407
] } ```-----
v1.0 Intune Policyset Deviceandappmanagementassignmentfilter List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-deviceandappmanagementassignmentfilter-list.md
Title: "List deviceAndAppManagementAssignmentFilters" description: "List properties and relationships of the deviceAndAppManagementAssignmentFilter objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceAndAppManagementAssignmentFilter](../resources/intune-policyset-deviceandappmanagementassignmentfilter.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: 828
] } ```-----
v1.0 Intune Policyset Deviceandappmanagementassignmentfilter Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-deviceandappmanagementassignmentfilter-update.md
Title: "Update deviceAndAppManagementAssignmentFilter" description: "Update the properties of a deviceAndAppManagementAssignmentFilter object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceAndAppManagementAssignmentFilter](../resources/intune-policyset-deviceandappmanagementassignmentfilter.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: 715
] } ```-----
v1.0 Intune Policyset Deviceandappmanagementassignmentfilter Validatefilter https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-deviceandappmanagementassignmentfilter-validatefilter.md
Title: "validateFilter 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: 120
} } ```-----
v1.0 Intune Policyset Devicecompliancepolicypolicysetitem Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-devicecompliancepolicypolicysetitem-create.md
Title: "Create deviceCompliancePolicyPolicySetItem" description: "Create a new deviceCompliancePolicyPolicySetItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceCompliancePolicyPolicySetItem](../resources/intune-policyset-devicecompliancepolicypolicysetitem.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: 489
] } ```-----
v1.0 Intune Policyset Devicecompliancepolicypolicysetitem Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-devicecompliancepolicypolicysetitem-delete.md
Title: "Delete deviceCompliancePolicyPolicySetItem" description: "Deletes a deviceCompliancePolicyPolicySetItem."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceCompliancePolicyPolicySetItem](../resources/intune-policyset-devicecompliancepolicypolicysetitem.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 Policyset Devicecompliancepolicypolicysetitem Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-devicecompliancepolicypolicysetitem-get.md
Title: "Get deviceCompliancePolicyPolicySetItem" description: "Read properties and relationships of the deviceCompliancePolicyPolicySetItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceCompliancePolicyPolicySetItem](../resources/intune-policyset-devicecompliancepolicypolicysetitem.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: 532
} } ```-----
v1.0 Intune Policyset Devicecompliancepolicypolicysetitem List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-devicecompliancepolicypolicysetitem-list.md
Title: "List deviceCompliancePolicyPolicySetItems" description: "List properties and relationships of the deviceCompliancePolicyPolicySetItem objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceCompliancePolicyPolicySetItem](../resources/intune-policyset-devicecompliancepolicypolicysetitem.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: 570
] } ```-----
v1.0 Intune Policyset Devicecompliancepolicypolicysetitem Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-devicecompliancepolicypolicysetitem-update.md
Title: "Update deviceCompliancePolicyPolicySetItem" description: "Update the properties of a deviceCompliancePolicyPolicySetItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceCompliancePolicyPolicySetItem](../resources/intune-policyset-devicecompliancepolicypolicysetitem.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: 489
] } ```-----
v1.0 Intune Policyset Deviceconfigurationpolicysetitem Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-deviceconfigurationpolicysetitem-create.md
Title: "Create deviceConfigurationPolicySetItem" description: "Create a new deviceConfigurationPolicySetItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceConfigurationPolicySetItem](../resources/intune-policyset-deviceconfigurationpolicysetitem.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: 486
] } ```-----
v1.0 Intune Policyset Deviceconfigurationpolicysetitem Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-deviceconfigurationpolicysetitem-delete.md
Title: "Delete deviceConfigurationPolicySetItem" description: "Deletes a deviceConfigurationPolicySetItem."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceConfigurationPolicySetItem](../resources/intune-policyset-deviceconfigurationpolicysetitem.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 Policyset Deviceconfigurationpolicysetitem Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-deviceconfigurationpolicysetitem-get.md
Title: "Get deviceConfigurationPolicySetItem" description: "Read properties and relationships of the deviceConfigurationPolicySetItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceConfigurationPolicySetItem](../resources/intune-policyset-deviceconfigurationpolicysetitem.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: 529
} } ```-----
v1.0 Intune Policyset Deviceconfigurationpolicysetitem List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-deviceconfigurationpolicysetitem-list.md
Title: "List deviceConfigurationPolicySetItems" description: "List properties and relationships of the deviceConfigurationPolicySetItem objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceConfigurationPolicySetItem](../resources/intune-policyset-deviceconfigurationpolicysetitem.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: 567
] } ```-----
v1.0 Intune Policyset Deviceconfigurationpolicysetitem Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-deviceconfigurationpolicysetitem-update.md
Title: "Update deviceConfigurationPolicySetItem" description: "Update the properties of a deviceConfigurationPolicySetItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceConfigurationPolicySetItem](../resources/intune-policyset-deviceconfigurationpolicysetitem.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: 486
] } ```-----
v1.0 Intune Policyset Devicemanagement Evaluateassignmentfilter https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-devicemanagement-evaluateassignmentfilter.md
Title: "evaluateAssignmentFilter 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: 91
"value": "ZXZhbHVhdGVBc3NpZ25tZW50RmlsdGVyIEludHVuZSBEb2MgU2FtcGxlIC0yNTU4NTk4OTA=" } ```-----
v1.0 Intune Policyset Devicemanagement Getassignmentfiltersstatusdetails https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-devicemanagement-getassignmentfiltersstatusdetails.md
Title: "getAssignmentFiltersStatusDetails 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: 1216
} } ```-----
v1.0 Intune Policyset Devicemanagementconfigurationpolicypolicysetitem Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-devicemanagementconfigurationpolicypolicysetitem-create.md
Title: "Create deviceManagementConfigurationPolicyPolicySetItem" description: "Create a new deviceManagementConfigurationPolicyPolicySetItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceManagementConfigurationPolicyPolicySetItem](../resources/intune-policyset-devicemanagementconfigurationpolicypolicysetitem.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: 502
] } ```-----
v1.0 Intune Policyset Devicemanagementconfigurationpolicypolicysetitem Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-devicemanagementconfigurationpolicypolicysetitem-delete.md
Title: "Delete deviceManagementConfigurationPolicyPolicySetItem" description: "Deletes a deviceManagementConfigurationPolicyPolicySetItem."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceManagementConfigurationPolicyPolicySetItem](../resources/intune-policyset-devicemanagementconfigurationpolicypolicysetitem.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 Policyset Devicemanagementconfigurationpolicypolicysetitem Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-devicemanagementconfigurationpolicypolicysetitem-get.md
Title: "Get deviceManagementConfigurationPolicyPolicySetItem" description: "Read properties and relationships of the deviceManagementConfigurationPolicyPolicySetItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementConfigurationPolicyPolicySetItem](../resources/intune-policyset-devicemanagementconfigurationpolicypolicysetitem.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: 545
} } ```-----
v1.0 Intune Policyset Devicemanagementconfigurationpolicypolicysetitem List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-devicemanagementconfigurationpolicypolicysetitem-list.md
Title: "List deviceManagementConfigurationPolicyPolicySetItems" description: "List properties and relationships of the deviceManagementConfigurationPolicyPolicySetItem objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceManagementConfigurationPolicyPolicySetItem](../resources/intune-policyset-devicemanagementconfigurationpolicypolicysetitem.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: 583
] } ```-----
v1.0 Intune Policyset Devicemanagementconfigurationpolicypolicysetitem Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-devicemanagementconfigurationpolicypolicysetitem-update.md
Title: "Update deviceManagementConfigurationPolicyPolicySetItem" description: "Update the properties of a deviceManagementConfigurationPolicyPolicySetItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementConfigurationPolicyPolicySetItem](../resources/intune-policyset-devicemanagementconfigurationpolicypolicysetitem.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: 502
] } ```-----
v1.0 Intune Policyset Devicemanagementscriptpolicysetitem Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-devicemanagementscriptpolicysetitem-create.md
Title: "Create deviceManagementScriptPolicySetItem" description: "Create a new deviceManagementScriptPolicySetItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceManagementScriptPolicySetItem](../resources/intune-policyset-devicemanagementscriptpolicysetitem.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: 489
] } ```-----
v1.0 Intune Policyset Devicemanagementscriptpolicysetitem Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-devicemanagementscriptpolicysetitem-delete.md
Title: "Delete deviceManagementScriptPolicySetItem" description: "Deletes a deviceManagementScriptPolicySetItem."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceManagementScriptPolicySetItem](../resources/intune-policyset-devicemanagementscriptpolicysetitem.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 Policyset Devicemanagementscriptpolicysetitem Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-devicemanagementscriptpolicysetitem-get.md
Title: "Get deviceManagementScriptPolicySetItem" description: "Read properties and relationships of the deviceManagementScriptPolicySetItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementScriptPolicySetItem](../resources/intune-policyset-devicemanagementscriptpolicysetitem.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: 532
} } ```-----
v1.0 Intune Policyset Devicemanagementscriptpolicysetitem List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-devicemanagementscriptpolicysetitem-list.md
Title: "List deviceManagementScriptPolicySetItems" description: "List properties and relationships of the deviceManagementScriptPolicySetItem objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceManagementScriptPolicySetItem](../resources/intune-policyset-devicemanagementscriptpolicysetitem.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: 570
] } ```-----
v1.0 Intune Policyset Devicemanagementscriptpolicysetitem Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-devicemanagementscriptpolicysetitem-update.md
Title: "Update deviceManagementScriptPolicySetItem" description: "Update the properties of a deviceManagementScriptPolicySetItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementScriptPolicySetItem](../resources/intune-policyset-devicemanagementscriptpolicysetitem.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: 489
] } ```-----
v1.0 Intune Policyset Enrollmentrestrictionsconfigurationpolicysetitem Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-enrollmentrestrictionsconfigurationpolicysetitem-create.md
Title: "Create enrollmentRestrictionsConfigurationPolicySetItem" description: "Create a new enrollmentRestrictionsConfigurationPolicySetItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [enrollmentRestrictionsConfigurationPolicySetItem](../resources/intune-policyset-enrollmentrestrictionsconfigurationpolicysetitem.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: 535
"limit": 5 } ```-----
v1.0 Intune Policyset Enrollmentrestrictionsconfigurationpolicysetitem Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-enrollmentrestrictionsconfigurationpolicysetitem-delete.md
Title: "Delete enrollmentRestrictionsConfigurationPolicySetItem" description: "Deletes a enrollmentRestrictionsConfigurationPolicySetItem."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [enrollmentRestrictionsConfigurationPolicySetItem](../resources/intune-policyset-enrollmentrestrictionsconfigurationpolicysetitem.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 Policyset Enrollmentrestrictionsconfigurationpolicysetitem Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-enrollmentrestrictionsconfigurationpolicysetitem-get.md
Title: "Get enrollmentRestrictionsConfigurationPolicySetItem" description: "Read properties and relationships of the enrollmentRestrictionsConfigurationPolicySetItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [enrollmentRestrictionsConfigurationPolicySetItem](../resources/intune-policyset-enrollmentrestrictionsconfigurationpolicysetitem.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: 582
} } ```-----
v1.0 Intune Policyset Enrollmentrestrictionsconfigurationpolicysetitem List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-enrollmentrestrictionsconfigurationpolicysetitem-list.md
Title: "List enrollmentRestrictionsConfigurationPolicySetItems" description: "List properties and relationships of the enrollmentRestrictionsConfigurationPolicySetItem objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [enrollmentRestrictionsConfigurationPolicySetItem](../resources/intune-policyset-enrollmentrestrictionsconfigurationpolicysetitem.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: 624
] } ```-----
v1.0 Intune Policyset Enrollmentrestrictionsconfigurationpolicysetitem Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-enrollmentrestrictionsconfigurationpolicysetitem-update.md
Title: "Update enrollmentRestrictionsConfigurationPolicySetItem" description: "Update the properties of a enrollmentRestrictionsConfigurationPolicySetItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [enrollmentRestrictionsConfigurationPolicySetItem](../resources/intune-policyset-enrollmentrestrictionsconfigurationpolicysetitem.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: 535
"limit": 5 } ```-----
v1.0 Intune Policyset Ioslobappprovisioningconfigurationpolicysetitem Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-ioslobappprovisioningconfigurationpolicysetitem-create.md
Title: "Create iosLobAppProvisioningConfigurationPolicySetItem" description: "Create a new iosLobAppProvisioningConfigurationPolicySetItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [iosLobAppProvisioningConfigurationPolicySetItem](../resources/intune-policyset-ioslobappprovisioningconfigurationpolicysetitem.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: 501
] } ```-----
v1.0 Intune Policyset Ioslobappprovisioningconfigurationpolicysetitem Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-ioslobappprovisioningconfigurationpolicysetitem-delete.md
Title: "Delete iosLobAppProvisioningConfigurationPolicySetItem" description: "Deletes a iosLobAppProvisioningConfigurationPolicySetItem."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [iosLobAppProvisioningConfigurationPolicySetItem](../resources/intune-policyset-ioslobappprovisioningconfigurationpolicysetitem.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 Policyset Ioslobappprovisioningconfigurationpolicysetitem Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-ioslobappprovisioningconfigurationpolicysetitem-get.md
Title: "Get iosLobAppProvisioningConfigurationPolicySetItem" description: "Read properties and relationships of the iosLobAppProvisioningConfigurationPolicySetItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [iosLobAppProvisioningConfigurationPolicySetItem](../resources/intune-policyset-ioslobappprovisioningconfigurationpolicysetitem.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: 544
} } ```-----
v1.0 Intune Policyset Ioslobappprovisioningconfigurationpolicysetitem List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-ioslobappprovisioningconfigurationpolicysetitem-list.md
Title: "List iosLobAppProvisioningConfigurationPolicySetItems" description: "List properties and relationships of the iosLobAppProvisioningConfigurationPolicySetItem objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [iosLobAppProvisioningConfigurationPolicySetItem](../resources/intune-policyset-ioslobappprovisioningconfigurationpolicysetitem.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: 582
] } ```-----
v1.0 Intune Policyset Ioslobappprovisioningconfigurationpolicysetitem Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-ioslobappprovisioningconfigurationpolicysetitem-update.md
Title: "Update iosLobAppProvisioningConfigurationPolicySetItem" description: "Update the properties of a iosLobAppProvisioningConfigurationPolicySetItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [iosLobAppProvisioningConfigurationPolicySetItem](../resources/intune-policyset-ioslobappprovisioningconfigurationpolicysetitem.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: 501
] } ```-----
v1.0 Intune Policyset Managedappprotectionpolicysetitem Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-managedappprotectionpolicysetitem-create.md
Title: "Create managedAppProtectionPolicySetItem" description: "Create a new managedAppProtectionPolicySetItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [managedAppProtectionPolicySetItem](../resources/intune-policyset-managedappprotectionpolicysetitem.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: 561
"targetedAppManagementLevels": "Targeted App Management Levels value" } ```-----
v1.0 Intune Policyset Managedappprotectionpolicysetitem Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-managedappprotectionpolicysetitem-delete.md
Title: "Delete managedAppProtectionPolicySetItem" description: "Deletes a managedAppProtectionPolicySetItem."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [managedAppProtectionPolicySetItem](../resources/intune-policyset-managedappprotectionpolicysetitem.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 Policyset Managedappprotectionpolicysetitem Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-managedappprotectionpolicysetitem-get.md
Title: "Get managedAppProtectionPolicySetItem" description: "Read properties and relationships of the managedAppProtectionPolicySetItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [managedAppProtectionPolicySetItem](../resources/intune-policyset-managedappprotectionpolicysetitem.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: 606
} } ```-----
v1.0 Intune Policyset Managedappprotectionpolicysetitem List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-managedappprotectionpolicysetitem-list.md
Title: "List managedAppProtectionPolicySetItems" description: "List properties and relationships of the managedAppProtectionPolicySetItem objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [managedAppProtectionPolicySetItem](../resources/intune-policyset-managedappprotectionpolicysetitem.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: 646
] } ```-----
v1.0 Intune Policyset Managedappprotectionpolicysetitem Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-managedappprotectionpolicysetitem-update.md
Title: "Update managedAppProtectionPolicySetItem" description: "Update the properties of a managedAppProtectionPolicySetItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [managedAppProtectionPolicySetItem](../resources/intune-policyset-managedappprotectionpolicysetitem.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: 561
"targetedAppManagementLevels": "Targeted App Management Levels value" } ```-----
v1.0 Intune Policyset Manageddevicemobileappconfigurationpolicysetitem Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-manageddevicemobileappconfigurationpolicysetitem-create.md
Title: "Create managedDeviceMobileAppConfigurationPolicySetItem" description: "Create a new managedDeviceMobileAppConfigurationPolicySetItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [managedDeviceMobileAppConfigurationPolicySetItem](../resources/intune-policyset-manageddevicemobileappconfigurationpolicysetitem.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: 502
] } ```-----
v1.0 Intune Policyset Manageddevicemobileappconfigurationpolicysetitem Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-manageddevicemobileappconfigurationpolicysetitem-delete.md
Title: "Delete managedDeviceMobileAppConfigurationPolicySetItem" description: "Deletes a managedDeviceMobileAppConfigurationPolicySetItem."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [managedDeviceMobileAppConfigurationPolicySetItem](../resources/intune-policyset-manageddevicemobileappconfigurationpolicysetitem.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 Policyset Manageddevicemobileappconfigurationpolicysetitem Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-manageddevicemobileappconfigurationpolicysetitem-get.md
Title: "Get managedDeviceMobileAppConfigurationPolicySetItem" description: "Read properties and relationships of the managedDeviceMobileAppConfigurationPolicySetItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [managedDeviceMobileAppConfigurationPolicySetItem](../resources/intune-policyset-manageddevicemobileappconfigurationpolicysetitem.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: 545
} } ```-----
v1.0 Intune Policyset Manageddevicemobileappconfigurationpolicysetitem List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-manageddevicemobileappconfigurationpolicysetitem-list.md
Title: "List managedDeviceMobileAppConfigurationPolicySetItems" description: "List properties and relationships of the managedDeviceMobileAppConfigurationPolicySetItem objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [managedDeviceMobileAppConfigurationPolicySetItem](../resources/intune-policyset-manageddevicemobileappconfigurationpolicysetitem.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: 583
] } ```-----
v1.0 Intune Policyset Manageddevicemobileappconfigurationpolicysetitem Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-manageddevicemobileappconfigurationpolicysetitem-update.md
Title: "Update managedDeviceMobileAppConfigurationPolicySetItem" description: "Update the properties of a managedDeviceMobileAppConfigurationPolicySetItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [managedDeviceMobileAppConfigurationPolicySetItem](../resources/intune-policyset-manageddevicemobileappconfigurationpolicysetitem.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: 502
] } ```-----
v1.0 Intune Policyset Mdmwindowsinformationprotectionpolicypolicysetitem Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-mdmwindowsinformationprotectionpolicypolicysetitem-create.md
Title: "Create mdmWindowsInformationProtectionPolicyPolicySetItem" description: "Create a new mdmWindowsInformationProtectionPolicyPolicySetItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [mdmWindowsInformationProtectionPolicyPolicySetItem](../resources/intune-policyset-mdmwindowsinformationprotectionpolicypolicysetitem.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: 504
] } ```-----
v1.0 Intune Policyset Mdmwindowsinformationprotectionpolicypolicysetitem Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-mdmwindowsinformationprotectionpolicypolicysetitem-delete.md
Title: "Delete mdmWindowsInformationProtectionPolicyPolicySetItem" description: "Deletes a mdmWindowsInformationProtectionPolicyPolicySetItem."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [mdmWindowsInformationProtectionPolicyPolicySetItem](../resources/intune-policyset-mdmwindowsinformationprotectionpolicypolicysetitem.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 Policyset Mdmwindowsinformationprotectionpolicypolicysetitem Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-mdmwindowsinformationprotectionpolicypolicysetitem-get.md
Title: "Get mdmWindowsInformationProtectionPolicyPolicySetItem" description: "Read properties and relationships of the mdmWindowsInformationProtectionPolicyPolicySetItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [mdmWindowsInformationProtectionPolicyPolicySetItem](../resources/intune-policyset-mdmwindowsinformationprotectionpolicypolicysetitem.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: 547
} } ```-----
v1.0 Intune Policyset Mdmwindowsinformationprotectionpolicypolicysetitem List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-mdmwindowsinformationprotectionpolicypolicysetitem-list.md
Title: "List mdmWindowsInformationProtectionPolicyPolicySetItems" description: "List properties and relationships of the mdmWindowsInformationProtectionPolicyPolicySetItem objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [mdmWindowsInformationProtectionPolicyPolicySetItem](../resources/intune-policyset-mdmwindowsinformationprotectionpolicypolicysetitem.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 Policyset Mdmwindowsinformationprotectionpolicypolicysetitem Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-mdmwindowsinformationprotectionpolicypolicysetitem-update.md
Title: "Update mdmWindowsInformationProtectionPolicyPolicySetItem" description: "Update the properties of a mdmWindowsInformationProtectionPolicyPolicySetItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [mdmWindowsInformationProtectionPolicyPolicySetItem](../resources/intune-policyset-mdmwindowsinformationprotectionpolicypolicysetitem.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: 504
] } ```-----
v1.0 Intune Policyset Mobileapppolicysetitem Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-mobileapppolicysetitem-create.md
Title: "Create mobileAppPolicySetItem" description: "Create a new mobileAppPolicySetItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [mobileAppPolicySetItem](../resources/intune-policyset-mobileapppolicysetitem.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 request.
``` http POST https://graph.microsoft.com/beta/deviceAppManagement/policySets/{policySetId}/items Content-type: application/json
-Content-length: 540
+Content-length: 896
{ "@odata.type": "#microsoft.graph.mobileAppPolicySetItem",
Content-length: 540
], "intent": "required", "settings": {
- "@odata.type": "microsoft.graph.iosLobAppAssignmentSettings",
- "vpnConfigurationId": "Vpn Configuration Id value",
- "uninstallOnDeviceRemoval": true,
- "isRemovable": true
+ "@odata.type": "microsoft.graph.winGetAppAssignmentSettings",
+ "notifications": "showReboot",
+ "restartSettings": {
+ "@odata.type": "microsoft.graph.winGetAppRestartSettings",
+ "gracePeriodInMinutes": 4,
+ "countdownDisplayBeforeRestartInMinutes": 6,
+ "restartNotificationSnoozeDurationInMinutes": 10
+ },
+ "installTimeSettings": {
+ "@odata.type": "microsoft.graph.winGetAppInstallTimeSettings",
+ "useLocalTime": true,
+ "deadlineDateTime": "2017-01-01T00:00:21.0378955-08:00"
+ }
} } ```
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: 712
+Content-Length: 1068
{ "@odata.type": "#microsoft.graph.mobileAppPolicySetItem",
Content-Length: 712
], "intent": "required", "settings": {
- "@odata.type": "microsoft.graph.iosLobAppAssignmentSettings",
- "vpnConfigurationId": "Vpn Configuration Id value",
- "uninstallOnDeviceRemoval": true,
- "isRemovable": true
+ "@odata.type": "microsoft.graph.winGetAppAssignmentSettings",
+ "notifications": "showReboot",
+ "restartSettings": {
+ "@odata.type": "microsoft.graph.winGetAppRestartSettings",
+ "gracePeriodInMinutes": 4,
+ "countdownDisplayBeforeRestartInMinutes": 6,
+ "restartNotificationSnoozeDurationInMinutes": 10
+ },
+ "installTimeSettings": {
+ "@odata.type": "microsoft.graph.winGetAppInstallTimeSettings",
+ "useLocalTime": true,
+ "deadlineDateTime": "2017-01-01T00:00:21.0378955-08:00"
+ }
} } ```-----
v1.0 Intune Policyset Mobileapppolicysetitem Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-mobileapppolicysetitem-delete.md
Title: "Delete mobileAppPolicySetItem" description: "Deletes a mobileAppPolicySetItem."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [mobileAppPolicySetItem](../resources/intune-policyset-mobileapppolicysetitem.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 Policyset Mobileapppolicysetitem Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-mobileapppolicysetitem-get.md
Title: "Get mobileAppPolicySetItem" description: "Read properties and relationships of the mobileAppPolicySetItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [mobileAppPolicySetItem](../resources/intune-policyset-mobileapppolicysetitem.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: 769
+Content-Length: 1143
{ "value": {
Content-Length: 769
], "intent": "required", "settings": {
- "@odata.type": "microsoft.graph.iosLobAppAssignmentSettings",
- "vpnConfigurationId": "Vpn Configuration Id value",
- "uninstallOnDeviceRemoval": true,
- "isRemovable": true
+ "@odata.type": "microsoft.graph.winGetAppAssignmentSettings",
+ "notifications": "showReboot",
+ "restartSettings": {
+ "@odata.type": "microsoft.graph.winGetAppRestartSettings",
+ "gracePeriodInMinutes": 4,
+ "countdownDisplayBeforeRestartInMinutes": 6,
+ "restartNotificationSnoozeDurationInMinutes": 10
+ },
+ "installTimeSettings": {
+ "@odata.type": "microsoft.graph.winGetAppInstallTimeSettings",
+ "useLocalTime": true,
+ "deadlineDateTime": "2017-01-01T00:00:21.0378955-08:00"
+ }
} } } ```-----
v1.0 Intune Policyset Mobileapppolicysetitem List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-mobileapppolicysetitem-list.md
Title: "List mobileAppPolicySetItems" description: "List properties and relationships of the mobileAppPolicySetItem objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [mobileAppPolicySetItem](../resources/intune-policyset-mobileapppolicysetitem.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: 821
+Content-Length: 1213
{ "value": [
Content-Length: 821
], "intent": "required", "settings": {
- "@odata.type": "microsoft.graph.iosLobAppAssignmentSettings",
- "vpnConfigurationId": "Vpn Configuration Id value",
- "uninstallOnDeviceRemoval": true,
- "isRemovable": true
+ "@odata.type": "microsoft.graph.winGetAppAssignmentSettings",
+ "notifications": "showReboot",
+ "restartSettings": {
+ "@odata.type": "microsoft.graph.winGetAppRestartSettings",
+ "gracePeriodInMinutes": 4,
+ "countdownDisplayBeforeRestartInMinutes": 6,
+ "restartNotificationSnoozeDurationInMinutes": 10
+ },
+ "installTimeSettings": {
+ "@odata.type": "microsoft.graph.winGetAppInstallTimeSettings",
+ "useLocalTime": true,
+ "deadlineDateTime": "2017-01-01T00:00:21.0378955-08:00"
+ }
} } ] } ```-----
v1.0 Intune Policyset Mobileapppolicysetitem Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-mobileapppolicysetitem-update.md
Title: "Update mobileAppPolicySetItem" description: "Update the properties of a mobileAppPolicySetItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [mobileAppPolicySetItem](../resources/intune-policyset-mobileapppolicysetitem.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 request.
``` http PATCH https://graph.microsoft.com/beta/deviceAppManagement/policySets/{policySetId}/items/{policySetItemId} Content-type: application/json
-Content-length: 540
+Content-length: 896
{ "@odata.type": "#microsoft.graph.mobileAppPolicySetItem",
Content-length: 540
], "intent": "required", "settings": {
- "@odata.type": "microsoft.graph.iosLobAppAssignmentSettings",
- "vpnConfigurationId": "Vpn Configuration Id value",
- "uninstallOnDeviceRemoval": true,
- "isRemovable": true
+ "@odata.type": "microsoft.graph.winGetAppAssignmentSettings",
+ "notifications": "showReboot",
+ "restartSettings": {
+ "@odata.type": "microsoft.graph.winGetAppRestartSettings",
+ "gracePeriodInMinutes": 4,
+ "countdownDisplayBeforeRestartInMinutes": 6,
+ "restartNotificationSnoozeDurationInMinutes": 10
+ },
+ "installTimeSettings": {
+ "@odata.type": "microsoft.graph.winGetAppInstallTimeSettings",
+ "useLocalTime": true,
+ "deadlineDateTime": "2017-01-01T00:00:21.0378955-08:00"
+ }
} } ```
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: 712
+Content-Length: 1068
{ "@odata.type": "#microsoft.graph.mobileAppPolicySetItem",
Content-Length: 712
], "intent": "required", "settings": {
- "@odata.type": "microsoft.graph.iosLobAppAssignmentSettings",
- "vpnConfigurationId": "Vpn Configuration Id value",
- "uninstallOnDeviceRemoval": true,
- "isRemovable": true
+ "@odata.type": "microsoft.graph.winGetAppAssignmentSettings",
+ "notifications": "showReboot",
+ "restartSettings": {
+ "@odata.type": "microsoft.graph.winGetAppRestartSettings",
+ "gracePeriodInMinutes": 4,
+ "countdownDisplayBeforeRestartInMinutes": 6,
+ "restartNotificationSnoozeDurationInMinutes": 10
+ },
+ "installTimeSettings": {
+ "@odata.type": "microsoft.graph.winGetAppInstallTimeSettings",
+ "useLocalTime": true,
+ "deadlineDateTime": "2017-01-01T00:00:21.0378955-08:00"
+ }
} } ```-----
v1.0 Intune Policyset Payloadcompatibleassignmentfilter Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-payloadcompatibleassignmentfilter-create.md
Title: "Create payloadCompatibleAssignmentFilter" description: "Create a new payloadCompatibleAssignmentFilter object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [payloadCompatibleAssignmentFilter](../resources/intune-policyset-payloadcompatibleassignmentfilter.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: 754
"payloadType": "enrollmentRestrictions" } ```-----
v1.0 Intune Policyset Payloadcompatibleassignmentfilter Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-payloadcompatibleassignmentfilter-delete.md
Title: "Delete payloadCompatibleAssignmentFilter" description: "Deletes a payloadCompatibleAssignmentFilter."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [payloadCompatibleAssignmentFilter](../resources/intune-policyset-payloadcompatibleassignmentfilter.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 Policyset Payloadcompatibleassignmentfilter Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-payloadcompatibleassignmentfilter-get.md
Title: "Get payloadCompatibleAssignmentFilter" description: "Read properties and relationships of the payloadCompatibleAssignmentFilter object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [payloadCompatibleAssignmentFilter](../resources/intune-policyset-payloadcompatibleassignmentfilter.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: 815
} } ```-----
v1.0 Intune Policyset Payloadcompatibleassignmentfilter List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-payloadcompatibleassignmentfilter-list.md
Title: "List payloadCompatibleAssignmentFilters" description: "List properties and relationships of the payloadCompatibleAssignmentFilter objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [payloadCompatibleAssignmentFilter](../resources/intune-policyset-payloadcompatibleassignmentfilter.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: 871
] } ```-----
v1.0 Intune Policyset Payloadcompatibleassignmentfilter Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-payloadcompatibleassignmentfilter-update.md
Title: "Update payloadCompatibleAssignmentFilter" description: "Update the properties of a payloadCompatibleAssignmentFilter object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [payloadCompatibleAssignmentFilter](../resources/intune-policyset-payloadcompatibleassignmentfilter.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: 754
"payloadType": "enrollmentRestrictions" } ```-----
v1.0 Intune Policyset Policyset Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-policyset-create.md
Title: "Create policySet" description: "Create a new policySet object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [policySet](../resources/intune-policyset-policyset.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: 489
] } ```-----
v1.0 Intune Policyset Policyset Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-policyset-delete.md
Title: "Delete policySet" description: "Deletes a policySet."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [policySet](../resources/intune-policyset-policyset.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 Policyset Policyset Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-policyset-get.md
Title: "Get policySet" description: "Read properties and relationships of the policySet object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [policySet](../resources/intune-policyset-policyset.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: 536
} } ```-----
v1.0 Intune Policyset Policyset Getpolicysets https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-policyset-getpolicysets.md
Title: "getPolicySets 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: 578
] } ```-----
v1.0 Intune Policyset Policyset List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-policyset-list.md
Title: "List policySets" description: "List properties and relationships of the policySet objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [policySet](../resources/intune-policyset-policyset.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: 578
] } ```-----
v1.0 Intune Policyset Policyset Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-policyset-update.md
Title: "update 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 Policyset Policysetassignment Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-policysetassignment-create.md
Title: "Create policySetAssignment" description: "Create a new policySetAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [policySetAssignment](../resources/intune-policyset-policysetassignment.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: 491
} } ```-----
v1.0 Intune Policyset Policysetassignment Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-policysetassignment-delete.md
Title: "Delete policySetAssignment" description: "Deletes a policySetAssignment."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [policySetAssignment](../resources/intune-policyset-policysetassignment.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 Policyset Policysetassignment Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-policysetassignment-get.md
Title: "Get policySetAssignment" description: "Read properties and relationships of the policySetAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [policySetAssignment](../resources/intune-policyset-policysetassignment.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: 528
} } ```-----
v1.0 Intune Policyset Policysetassignment List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-policysetassignment-list.md
Title: "List policySetAssignments" description: "List properties and relationships of the policySetAssignment objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [policySetAssignment](../resources/intune-policyset-policysetassignment.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: 560
] } ```-----
v1.0 Intune Policyset Policysetassignment Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-policysetassignment-update.md
Title: "Update policySetAssignment" description: "Update the properties of a policySetAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [policySetAssignment](../resources/intune-policyset-policysetassignment.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: 491
} } ```-----
v1.0 Intune Policyset Policysetitem Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-policysetitem-get.md
Title: "Get policySetItem" description: "Read properties and relationships of the policySetItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [policySetItem](../resources/intune-policyset-policysetitem.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: 510
} } ```-----
v1.0 Intune Policyset Policysetitem List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-policysetitem-list.md
Title: "List policySetItems" description: "List properties and relationships of the policySetItem objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [policySetItem](../resources/intune-policyset-policysetitem.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: 548
] } ```-----
v1.0 Intune Policyset Targetedmanagedappconfigurationpolicysetitem Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-targetedmanagedappconfigurationpolicysetitem-create.md
Title: "Create targetedManagedAppConfigurationPolicySetItem" description: "Create a new targetedManagedAppConfigurationPolicySetItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [targetedManagedAppConfigurationPolicySetItem](../resources/intune-policyset-targetedmanagedappconfigurationpolicysetitem.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: 498
] } ```-----
v1.0 Intune Policyset Targetedmanagedappconfigurationpolicysetitem Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-targetedmanagedappconfigurationpolicysetitem-delete.md
Title: "Delete targetedManagedAppConfigurationPolicySetItem" description: "Deletes a targetedManagedAppConfigurationPolicySetItem."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [targetedManagedAppConfigurationPolicySetItem](../resources/intune-policyset-targetedmanagedappconfigurationpolicysetitem.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 Policyset Targetedmanagedappconfigurationpolicysetitem Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-targetedmanagedappconfigurationpolicysetitem-get.md
Title: "Get targetedManagedAppConfigurationPolicySetItem" description: "Read properties and relationships of the targetedManagedAppConfigurationPolicySetItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [targetedManagedAppConfigurationPolicySetItem](../resources/intune-policyset-targetedmanagedappconfigurationpolicysetitem.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: 541
} } ```-----
v1.0 Intune Policyset Targetedmanagedappconfigurationpolicysetitem List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-targetedmanagedappconfigurationpolicysetitem-list.md
Title: "List targetedManagedAppConfigurationPolicySetItems" description: "List properties and relationships of the targetedManagedAppConfigurationPolicySetItem objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [targetedManagedAppConfigurationPolicySetItem](../resources/intune-policyset-targetedmanagedappconfigurationpolicysetitem.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: 579
] } ```-----
v1.0 Intune Policyset Targetedmanagedappconfigurationpolicysetitem Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-targetedmanagedappconfigurationpolicysetitem-update.md
Title: "Update targetedManagedAppConfigurationPolicySetItem" description: "Update the properties of a targetedManagedAppConfigurationPolicySetItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [targetedManagedAppConfigurationPolicySetItem](../resources/intune-policyset-targetedmanagedappconfigurationpolicysetitem.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: 498
] } ```-----
v1.0 Intune Policyset Windows10enrollmentcompletionpageconfigurationpolicysetitem Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-windows10enrollmentcompletionpageconfigurationpolicysetitem-create.md
Title: "Create windows10EnrollmentCompletionPageConfigurationPolicySetItem" description: "Create a new windows10EnrollmentCompletionPageConfigurationPolicySetItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windows10EnrollmentCompletionPageConfigurationPolicySetItem](../resources/intune-policyset-windows10enrollmentcompletionpageconfigurationpolicysetitem.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: 531
"priority": 8 } ```-----
v1.0 Intune Policyset Windows10enrollmentcompletionpageconfigurationpolicysetitem Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-windows10enrollmentcompletionpageconfigurationpolicysetitem-delete.md
Title: "Delete windows10EnrollmentCompletionPageConfigurationPolicySetItem" description: "Deletes a windows10EnrollmentCompletionPageConfigurationPolicySetItem."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windows10EnrollmentCompletionPageConfigurationPolicySetItem](../resources/intune-policyset-windows10enrollmentcompletionpageconfigurationpolicysetitem.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 Policyset Windows10enrollmentcompletionpageconfigurationpolicysetitem Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-windows10enrollmentcompletionpageconfigurationpolicysetitem-get.md
Title: "Get windows10EnrollmentCompletionPageConfigurationPolicySetItem" description: "Read properties and relationships of the windows10EnrollmentCompletionPageConfigurationPolicySetItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windows10EnrollmentCompletionPageConfigurationPolicySetItem](../resources/intune-policyset-windows10enrollmentcompletionpageconfigurationpolicysetitem.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: 576
} } ```-----
v1.0 Intune Policyset Windows10enrollmentcompletionpageconfigurationpolicysetitem List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-windows10enrollmentcompletionpageconfigurationpolicysetitem-list.md
Title: "List windows10EnrollmentCompletionPageConfigurationPolicySetItems" description: "List properties and relationships of the windows10EnrollmentCompletionPageConfigurationPolicySetItem objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windows10EnrollmentCompletionPageConfigurationPolicySetItem](../resources/intune-policyset-windows10enrollmentcompletionpageconfigurationpolicysetitem.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: 616
] } ```-----
v1.0 Intune Policyset Windows10enrollmentcompletionpageconfigurationpolicysetitem Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-windows10enrollmentcompletionpageconfigurationpolicysetitem-update.md
Title: "Update windows10EnrollmentCompletionPageConfigurationPolicySetItem" description: "Update the properties of a windows10EnrollmentCompletionPageConfigurationPolicySetItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windows10EnrollmentCompletionPageConfigurationPolicySetItem](../resources/intune-policyset-windows10enrollmentcompletionpageconfigurationpolicysetitem.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: 531
"priority": 8 } ```-----
v1.0 Intune Policyset Windowsautopilotdeploymentprofilepolicysetitem Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-windowsautopilotdeploymentprofilepolicysetitem-create.md
Title: "Create windowsAutopilotDeploymentProfilePolicySetItem" description: "Create a new windowsAutopilotDeploymentProfilePolicySetItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windowsAutopilotDeploymentProfilePolicySetItem](../resources/intune-policyset-windowsautopilotdeploymentprofilepolicysetitem.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: 500
] } ```-----
v1.0 Intune Policyset Windowsautopilotdeploymentprofilepolicysetitem Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-windowsautopilotdeploymentprofilepolicysetitem-delete.md
Title: "Delete windowsAutopilotDeploymentProfilePolicySetItem" description: "Deletes a windowsAutopilotDeploymentProfilePolicySetItem."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windowsAutopilotDeploymentProfilePolicySetItem](../resources/intune-policyset-windowsautopilotdeploymentprofilepolicysetitem.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 Policyset Windowsautopilotdeploymentprofilepolicysetitem Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-windowsautopilotdeploymentprofilepolicysetitem-get.md
Title: "Get windowsAutopilotDeploymentProfilePolicySetItem" description: "Read properties and relationships of the windowsAutopilotDeploymentProfilePolicySetItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsAutopilotDeploymentProfilePolicySetItem](../resources/intune-policyset-windowsautopilotdeploymentprofilepolicysetitem.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: 543
} } ```-----
v1.0 Intune Policyset Windowsautopilotdeploymentprofilepolicysetitem List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-windowsautopilotdeploymentprofilepolicysetitem-list.md
Title: "List windowsAutopilotDeploymentProfilePolicySetItems" description: "List properties and relationships of the windowsAutopilotDeploymentProfilePolicySetItem objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsAutopilotDeploymentProfilePolicySetItem](../resources/intune-policyset-windowsautopilotdeploymentprofilepolicysetitem.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: 581
] } ```-----
v1.0 Intune Policyset Windowsautopilotdeploymentprofilepolicysetitem Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-policyset-windowsautopilotdeploymentprofilepolicysetitem-update.md
Title: "Update windowsAutopilotDeploymentProfilePolicySetItem" description: "Update the properties of a windowsAutopilotDeploymentProfilePolicySetItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windowsAutopilotDeploymentProfilePolicySetItem](../resources/intune-policyset-windowsautopilotdeploymentprofilepolicysetitem.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: 500
] } ```-----
v1.0 Intune Raimportcerts Certificateconnectordetails Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-raimportcerts-certificateconnectordetails-create.md
Title: "Create certificateConnectorDetails" description: "Create a new certificateConnectorDetails object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [certificateConnectorDetails](../resources/intune-raimportcerts-certificateconnectordetails.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: 377
"connectorVersion": "Connector Version value" } ```-----
v1.0 Intune Raimportcerts Certificateconnectordetails Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-raimportcerts-certificateconnectordetails-delete.md
Title: "Delete certificateConnectorDetails" description: "Deletes a certificateConnectorDetails."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [certificateConnectorDetails](../resources/intune-raimportcerts-certificateconnectordetails.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 Raimportcerts Certificateconnectordetails Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-raimportcerts-certificateconnectordetails-get.md
Title: "Get certificateConnectorDetails" description: "Read properties and relationships of the certificateConnectorDetails object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [certificateConnectorDetails](../resources/intune-raimportcerts-certificateconnectordetails.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: 410
} } ```-----
v1.0 Intune Raimportcerts Certificateconnectordetails Gethealthmetrics https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-raimportcerts-certificateconnectordetails-gethealthmetrics.md
Title: "getHealthMetrics 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: 142
] } ```-----
v1.0 Intune Raimportcerts Certificateconnectordetails Gethealthmetrictimeseries https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-raimportcerts-certificateconnectordetails-gethealthmetrictimeseries.md
Title: "getHealthMetricTimeSeries 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: 225
] } ```-----
v1.0 Intune Raimportcerts Certificateconnectordetails List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-raimportcerts-certificateconnectordetails-list.md
Title: "List certificateConnectorDetailses" description: "List properties and relationships of the certificateConnectorDetails objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [certificateConnectorDetails](../resources/intune-raimportcerts-certificateconnectordetails.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: 438
] } ```-----
v1.0 Intune Raimportcerts Certificateconnectordetails Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-raimportcerts-certificateconnectordetails-update.md
Title: "Update certificateConnectorDetails" description: "Update the properties of a certificateConnectorDetails object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [certificateConnectorDetails](../resources/intune-raimportcerts-certificateconnectordetails.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: 377
"connectorVersion": "Connector Version value" } ```-----
v1.0 Intune Raimportcerts Onpremencryptedpayload Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-raimportcerts-onpremencryptedpayload-create.md
Title: "Create onPremEncryptedPayload" description: "Create a new onPremEncryptedPayload object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [onPremEncryptedPayload](../resources/intune-raimportcerts-onpremencryptedpayload.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: 781
"isDeleted": true } ```-----
v1.0 Intune Raimportcerts Onpremencryptedpayload Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-raimportcerts-onpremencryptedpayload-delete.md
Title: "Delete onPremEncryptedPayload" description: "Deletes a onPremEncryptedPayload."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [onPremEncryptedPayload](../resources/intune-raimportcerts-onpremencryptedpayload.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 Raimportcerts Onpremencryptedpayload Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-raimportcerts-onpremencryptedpayload-get.md
Title: "Get onPremEncryptedPayload" description: "Read properties and relationships of the onPremEncryptedPayload object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [onPremEncryptedPayload](../resources/intune-raimportcerts-onpremencryptedpayload.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: 834
} } ```-----
v1.0 Intune Raimportcerts Onpremencryptedpayload List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-raimportcerts-onpremencryptedpayload-list.md
Title: "List onPremEncryptedPayloads" description: "List properties and relationships of the onPremEncryptedPayload objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [onPremEncryptedPayload](../resources/intune-raimportcerts-onpremencryptedpayload.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: 882
] } ```-----
v1.0 Intune Raimportcerts Onpremencryptedpayload Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-raimportcerts-onpremencryptedpayload-update.md
Title: "Update onPremEncryptedPayload" description: "Update the properties of a onPremEncryptedPayload object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [onPremEncryptedPayload](../resources/intune-raimportcerts-onpremencryptedpayload.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: 781
"isDeleted": true } ```-----
v1.0 Intune Raimportcerts Pfxrecryptionrequest Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-raimportcerts-pfxrecryptionrequest-create.md
Title: "Create pfxRecryptionRequest" description: "Create a new pfxRecryptionRequest object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [pfxRecryptionRequest](../resources/intune-raimportcerts-pfxrecryptionrequest.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: 574
"eTag": "ETag value" } ```-----
v1.0 Intune Raimportcerts Pfxrecryptionrequest Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-raimportcerts-pfxrecryptionrequest-delete.md
Title: "Delete pfxRecryptionRequest" description: "Deletes a pfxRecryptionRequest."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [pfxRecryptionRequest](../resources/intune-raimportcerts-pfxrecryptionrequest.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 Raimportcerts Pfxrecryptionrequest Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-raimportcerts-pfxrecryptionrequest-get.md
Title: "Get pfxRecryptionRequest" description: "Read properties and relationships of the pfxRecryptionRequest object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [pfxRecryptionRequest](../resources/intune-raimportcerts-pfxrecryptionrequest.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: 619
} } ```-----
v1.0 Intune Raimportcerts Pfxrecryptionrequest List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-raimportcerts-pfxrecryptionrequest-list.md
Title: "List pfxRecryptionRequests" description: "List properties and relationships of the pfxRecryptionRequest objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [pfxRecryptionRequest](../resources/intune-raimportcerts-pfxrecryptionrequest.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: 659
] } ```-----
v1.0 Intune Raimportcerts Pfxrecryptionrequest Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-raimportcerts-pfxrecryptionrequest-update.md
Title: "Update pfxRecryptionRequest" description: "Update the properties of a pfxRecryptionRequest object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [pfxRecryptionRequest](../resources/intune-raimportcerts-pfxrecryptionrequest.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: 574
"eTag": "ETag value" } ```-----
v1.0 Intune Raimportcerts Pfxusercertificate Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-raimportcerts-pfxusercertificate-create.md
Title: "Create pfxUserCertificate" description: "Create a new pfxUserCertificate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [pfxUserCertificate](../resources/intune-raimportcerts-pfxusercertificate.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: 789
"eTag": "ETag value" } ```-----
v1.0 Intune Raimportcerts Pfxusercertificate Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-raimportcerts-pfxusercertificate-delete.md
Title: "Delete pfxUserCertificate" description: "Deletes a pfxUserCertificate."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [pfxUserCertificate](../resources/intune-raimportcerts-pfxusercertificate.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 Raimportcerts Pfxusercertificate Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-raimportcerts-pfxusercertificate-get.md
Title: "Get pfxUserCertificate" description: "Read properties and relationships of the pfxUserCertificate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [pfxUserCertificate](../resources/intune-raimportcerts-pfxusercertificate.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 Raimportcerts Pfxusercertificate List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-raimportcerts-pfxusercertificate-list.md
Title: "List pfxUserCertificates" description: "List properties and relationships of the pfxUserCertificate objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [pfxUserCertificate](../resources/intune-raimportcerts-pfxusercertificate.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: 894
] } ```-----
v1.0 Intune Raimportcerts Pfxusercertificate Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-raimportcerts-pfxusercertificate-update.md
Title: "Update pfxUserCertificate" description: "Update the properties of a pfxUserCertificate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [pfxUserCertificate](../resources/intune-raimportcerts-pfxusercertificate.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: 789
"eTag": "ETag value" } ```-----
v1.0 Intune Raimportcerts Userpfxcertificate Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-raimportcerts-userpfxcertificate-create.md
Title: "Create userPFXCertificate" description: "Create a new userPFXCertificate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [userPFXCertificate](../resources/intune-raimportcerts-userpfxcertificate.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: 695
"lastModifiedDateTime": "2017-01-01T00:00:35.1329464-08:00" } ```-----
v1.0 Intune Raimportcerts Userpfxcertificate Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-raimportcerts-userpfxcertificate-delete.md
Title: "Delete userPFXCertificate" description: "Deletes a userPFXCertificate."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [userPFXCertificate](../resources/intune-raimportcerts-userpfxcertificate.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 Raimportcerts Userpfxcertificate Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-raimportcerts-userpfxcertificate-get.md
Title: "Get userPFXCertificate" description: "Read properties and relationships of the userPFXCertificate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [userPFXCertificate](../resources/intune-raimportcerts-userpfxcertificate.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: 742
} } ```-----
v1.0 Intune Raimportcerts Userpfxcertificate List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-raimportcerts-userpfxcertificate-list.md
Title: "List userPFXCertificates" description: "List properties and relationships of the userPFXCertificate objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [userPFXCertificate](../resources/intune-raimportcerts-userpfxcertificate.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: 784
] } ```-----
v1.0 Intune Raimportcerts Userpfxcertificate Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-raimportcerts-userpfxcertificate-update.md
Title: "Update userPFXCertificate" description: "Update the properties of a userPFXCertificate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [userPFXCertificate](../resources/intune-raimportcerts-userpfxcertificate.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: 695
"lastModifiedDateTime": "2017-01-01T00:00:35.1329464-08:00" } ```-----
v1.0 Intune Rapolicy Devicemanagementresourceaccessprofileassignment Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rapolicy-devicemanagementresourceaccessprofileassignment-create.md
Title: "Create deviceManagementResourceAccessProfileAssignment" description: "Create a new deviceManagementResourceAccessProfileAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceManagementResourceAccessProfileAssignment](../resources/intune-rapolicy-devicemanagementresourceaccessprofileassignment.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
"sourceId": "Source Id value" } ```-----
v1.0 Intune Rapolicy Devicemanagementresourceaccessprofileassignment Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rapolicy-devicemanagementresourceaccessprofileassignment-delete.md
Title: "Delete deviceManagementResourceAccessProfileAssignment" description: "Deletes a deviceManagementResourceAccessProfileAssignment."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceManagementResourceAccessProfileAssignment](../resources/intune-rapolicy-devicemanagementresourceaccessprofileassignment.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 Rapolicy Devicemanagementresourceaccessprofileassignment Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rapolicy-devicemanagementresourceaccessprofileassignment-get.md
Title: "Get deviceManagementResourceAccessProfileAssignment" description: "Read properties and relationships of the deviceManagementResourceAccessProfileAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementResourceAccessProfileAssignment](../resources/intune-rapolicy-devicemanagementresourceaccessprofileassignment.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 Rapolicy Devicemanagementresourceaccessprofileassignment List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rapolicy-devicemanagementresourceaccessprofileassignment-list.md
Title: "List deviceManagementResourceAccessProfileAssignments" description: "List properties and relationships of the deviceManagementResourceAccessProfileAssignment objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceManagementResourceAccessProfileAssignment](../resources/intune-rapolicy-devicemanagementresourceaccessprofileassignment.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 Rapolicy Devicemanagementresourceaccessprofileassignment Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rapolicy-devicemanagementresourceaccessprofileassignment-update.md
Title: "Update deviceManagementResourceAccessProfileAssignment" description: "Update the properties of a deviceManagementResourceAccessProfileAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementResourceAccessProfileAssignment](../resources/intune-rapolicy-devicemanagementresourceaccessprofileassignment.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
"sourceId": "Source Id value" } ```-----
v1.0 Intune Rapolicy Devicemanagementresourceaccessprofilebase Assign https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rapolicy-devicemanagementresourceaccessprofilebase-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)|
Content-Length: 585
] } ```-----
v1.0 Intune Rapolicy Devicemanagementresourceaccessprofilebase Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rapolicy-devicemanagementresourceaccessprofilebase-get.md
Title: "Get deviceManagementResourceAccessProfileBase" description: "Read properties and relationships of the deviceManagementResourceAccessProfileBase object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementResourceAccessProfileBase](../resources/intune-rapolicy-devicemanagementresourceaccessprofilebase.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: 453
} } ```-----
v1.0 Intune Rapolicy Devicemanagementresourceaccessprofilebase List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rapolicy-devicemanagementresourceaccessprofilebase-list.md
Title: "List deviceManagementResourceAccessProfileBases" description: "List properties and relationships of the deviceManagementResourceAccessProfileBase objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceManagementResourceAccessProfileBase](../resources/intune-rapolicy-devicemanagementresourceaccessprofilebase.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: 487
] } ```-----
v1.0 Intune Rapolicy Devicemanagementresourceaccessprofilebase Querybyplatformtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rapolicy-devicemanagementresourceaccessprofilebase-querybyplatformtype.md
Title: "queryByPlatformType 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: 487
] } ```-----
v1.0 Intune Rapolicy Windows10xcertificateprofile Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rapolicy-windows10xcertificateprofile-get.md
Title: "Get windows10XCertificateProfile" description: "Read properties and relationships of the windows10XCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windows10XCertificateProfile](../resources/intune-rapolicy-windows10xcertificateprofile.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: 440
} } ```-----
v1.0 Intune Rapolicy Windows10xcertificateprofile List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rapolicy-windows10xcertificateprofile-list.md
Title: "List windows10XCertificateProfiles" description: "List properties and relationships of the windows10XCertificateProfile objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windows10XCertificateProfile](../resources/intune-rapolicy-windows10xcertificateprofile.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 Rapolicy Windows10xscepcertificateprofile Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rapolicy-windows10xscepcertificateprofile-create.md
Title: "Create windows10XSCEPCertificateProfile" description: "Create a new windows10XSCEPCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windows10XSCEPCertificateProfile](../resources/intune-rapolicy-windows10xscepcertificateprofile.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: 1291
"subjectNameFormatString": "Subject Name Format String value" } ```-----
v1.0 Intune Rapolicy Windows10xscepcertificateprofile Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rapolicy-windows10xscepcertificateprofile-delete.md
Title: "Delete windows10XSCEPCertificateProfile" description: "Deletes a windows10XSCEPCertificateProfile."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windows10XSCEPCertificateProfile](../resources/intune-rapolicy-windows10xscepcertificateprofile.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 Rapolicy Windows10xscepcertificateprofile Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rapolicy-windows10xscepcertificateprofile-get.md
Title: "Get windows10XSCEPCertificateProfile" description: "Read properties and relationships of the windows10XSCEPCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windows10XSCEPCertificateProfile](../resources/intune-rapolicy-windows10xscepcertificateprofile.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: 1388
} } ```-----
v1.0 Intune Rapolicy Windows10xscepcertificateprofile List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rapolicy-windows10xscepcertificateprofile-list.md
Title: "List windows10XSCEPCertificateProfiles" description: "List properties and relationships of the windows10XSCEPCertificateProfile objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windows10XSCEPCertificateProfile](../resources/intune-rapolicy-windows10xscepcertificateprofile.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: 1480
] } ```-----
v1.0 Intune Rapolicy Windows10xscepcertificateprofile Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rapolicy-windows10xscepcertificateprofile-update.md
Title: "Update windows10XSCEPCertificateProfile" description: "Update the properties of a windows10XSCEPCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windows10XSCEPCertificateProfile](../resources/intune-rapolicy-windows10xscepcertificateprofile.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: 1291
"subjectNameFormatString": "Subject Name Format String value" } ```-----
v1.0 Intune Rapolicy Windows10xtrustedrootcertificate Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rapolicy-windows10xtrustedrootcertificate-create.md
Title: "Create windows10XTrustedRootCertificate" description: "Create a new windows10XTrustedRootCertificate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windows10XTrustedRootCertificate](../resources/intune-rapolicy-windows10xtrustedrootcertificate.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: 569
"destinationStore": "computerCertStoreIntermediate" } ```-----
v1.0 Intune Rapolicy Windows10xtrustedrootcertificate Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rapolicy-windows10xtrustedrootcertificate-delete.md
Title: "Delete windows10XTrustedRootCertificate" description: "Deletes a windows10XTrustedRootCertificate."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windows10XTrustedRootCertificate](../resources/intune-rapolicy-windows10xtrustedrootcertificate.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 Rapolicy Windows10xtrustedrootcertificate Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rapolicy-windows10xtrustedrootcertificate-get.md
Title: "Get windows10XTrustedRootCertificate" description: "Read properties and relationships of the windows10XTrustedRootCertificate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windows10XTrustedRootCertificate](../resources/intune-rapolicy-windows10xtrustedrootcertificate.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 Rapolicy Windows10xtrustedrootcertificate List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rapolicy-windows10xtrustedrootcertificate-list.md
Title: "List windows10XTrustedRootCertificates" description: "List properties and relationships of the windows10XTrustedRootCertificate objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windows10XTrustedRootCertificate](../resources/intune-rapolicy-windows10xtrustedrootcertificate.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: 654
] } ```-----
v1.0 Intune Rapolicy Windows10xtrustedrootcertificate Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rapolicy-windows10xtrustedrootcertificate-update.md
Title: "Update windows10XTrustedRootCertificate" description: "Update the properties of a windows10XTrustedRootCertificate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windows10XTrustedRootCertificate](../resources/intune-rapolicy-windows10xtrustedrootcertificate.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: 569
"destinationStore": "computerCertStoreIntermediate" } ```-----
v1.0 Intune Rapolicy Windows10xvpnconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rapolicy-windows10xvpnconfiguration-create.md
Title: "Create windows10XVpnConfiguration" description: "Create a new windows10XVpnConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windows10XVpnConfiguration](../resources/intune-rapolicy-windows10xvpnconfiguration.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: 559
"customXml": "Y3VzdG9tWG1s" } ```-----
v1.0 Intune Rapolicy Windows10xvpnconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rapolicy-windows10xvpnconfiguration-delete.md
Title: "Delete windows10XVpnConfiguration" description: "Deletes a windows10XVpnConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windows10XVpnConfiguration](../resources/intune-rapolicy-windows10xvpnconfiguration.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 Rapolicy Windows10xvpnconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rapolicy-windows10xvpnconfiguration-get.md
Title: "Get windows10XVpnConfiguration" description: "Read properties and relationships of the windows10XVpnConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windows10XVpnConfiguration](../resources/intune-rapolicy-windows10xvpnconfiguration.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
} } ```-----
v1.0 Intune Rapolicy Windows10xvpnconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rapolicy-windows10xvpnconfiguration-list.md
Title: "List windows10XVpnConfigurations" description: "List properties and relationships of the windows10XVpnConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windows10XVpnConfiguration](../resources/intune-rapolicy-windows10xvpnconfiguration.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: 644
] } ```-----
v1.0 Intune Rapolicy Windows10xvpnconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rapolicy-windows10xvpnconfiguration-update.md
Title: "Update windows10XVpnConfiguration" description: "Update the properties of a windows10XVpnConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windows10XVpnConfiguration](../resources/intune-rapolicy-windows10xvpnconfiguration.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: 559
"customXml": "Y3VzdG9tWG1s" } ```-----
v1.0 Intune Rapolicy Windows10xwificonfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rapolicy-windows10xwificonfiguration-create.md
Title: "Create windows10XWifiConfiguration" description: "Create a new windows10XWifiConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windows10XWifiConfiguration](../resources/intune-rapolicy-windows10xwificonfiguration.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: 560
"customXml": "Y3VzdG9tWG1s" } ```-----
v1.0 Intune Rapolicy Windows10xwificonfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rapolicy-windows10xwificonfiguration-delete.md
Title: "Delete windows10XWifiConfiguration" description: "Deletes a windows10XWifiConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windows10XWifiConfiguration](../resources/intune-rapolicy-windows10xwificonfiguration.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 Rapolicy Windows10xwificonfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rapolicy-windows10xwificonfiguration-get.md
Title: "Get windows10XWifiConfiguration" description: "Read properties and relationships of the windows10XWifiConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windows10XWifiConfiguration](../resources/intune-rapolicy-windows10xwificonfiguration.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: 605
} } ```-----
v1.0 Intune Rapolicy Windows10xwificonfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rapolicy-windows10xwificonfiguration-list.md
Title: "List windows10XWifiConfigurations" description: "List properties and relationships of the windows10XWifiConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windows10XWifiConfiguration](../resources/intune-rapolicy-windows10xwificonfiguration.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: 645
] } ```-----
v1.0 Intune Rapolicy Windows10xwificonfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rapolicy-windows10xwificonfiguration-update.md
Title: "Update windows10XWifiConfiguration" description: "Update the properties of a windows10XWifiConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windows10XWifiConfiguration](../resources/intune-rapolicy-windows10xwificonfiguration.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: 560
"customXml": "Y3VzdG9tWG1s" } ```-----
v1.0 Intune Rbac Deviceandappmanagementroleassignment Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-deviceandappmanagementroleassignment-create.md
Title: "Create deviceAndAppManagementRoleAssignment" description: "Create a new deviceAndAppManagementRoleAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceAndAppManagementRoleAssignment](../resources/intune-rbac-deviceandappmanagementroleassignment.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: 391
] } ```-----
v1.0 Intune Rbac Deviceandappmanagementroleassignment Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-deviceandappmanagementroleassignment-delete.md
Title: "Delete deviceAndAppManagementRoleAssignment" description: "Deletes a deviceAndAppManagementRoleAssignment."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceAndAppManagementRoleAssignment](../resources/intune-rbac-deviceandappmanagementroleassignment.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 Rbac Deviceandappmanagementroleassignment Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-deviceandappmanagementroleassignment-get.md
Title: "Get deviceAndAppManagementRoleAssignment" description: "Read properties and relationships of the deviceAndAppManagementRoleAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceAndAppManagementRoleAssignment](../resources/intune-rbac-deviceandappmanagementroleassignment.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: 438
} } ```-----
v1.0 Intune Rbac Deviceandappmanagementroleassignment List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-deviceandappmanagementroleassignment-list.md
Title: "List deviceAndAppManagementRoleAssignments" description: "List properties and relationships of the deviceAndAppManagementRoleAssignment objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceAndAppManagementRoleAssignment](../resources/intune-rbac-deviceandappmanagementroleassignment.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: 480
] } ```-----
v1.0 Intune Rbac Deviceandappmanagementroleassignment Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-deviceandappmanagementroleassignment-update.md
Title: "Update deviceAndAppManagementRoleAssignment" description: "Update the properties of a deviceAndAppManagementRoleAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceAndAppManagementRoleAssignment](../resources/intune-rbac-deviceandappmanagementroleassignment.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: 391
] } ```-----
v1.0 Intune Rbac Deviceandappmanagementroledefinition Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-deviceandappmanagementroledefinition-create.md
Title: "Create deviceAndAppManagementRoleDefinition" description: "Create a new deviceAndAppManagementRoleDefinition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceAndAppManagementRoleDefinition](../resources/intune-rbac-deviceandappmanagementroledefinition.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: 1278
] } ```-----
v1.0 Intune Rbac Deviceandappmanagementroledefinition Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-deviceandappmanagementroledefinition-delete.md
Title: "Delete deviceAndAppManagementRoleDefinition" description: "Deletes a deviceAndAppManagementRoleDefinition."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceAndAppManagementRoleDefinition](../resources/intune-rbac-deviceandappmanagementroledefinition.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 Rbac Deviceandappmanagementroledefinition Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-deviceandappmanagementroledefinition-get.md
Title: "Get deviceAndAppManagementRoleDefinition" description: "Read properties and relationships of the deviceAndAppManagementRoleDefinition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceAndAppManagementRoleDefinition](../resources/intune-rbac-deviceandappmanagementroledefinition.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: 1391
} } ```-----
v1.0 Intune Rbac Deviceandappmanagementroledefinition List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-deviceandappmanagementroledefinition-list.md
Title: "List deviceAndAppManagementRoleDefinitions" description: "List properties and relationships of the deviceAndAppManagementRoleDefinition objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceAndAppManagementRoleDefinition](../resources/intune-rbac-deviceandappmanagementroledefinition.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: 1499
] } ```-----
v1.0 Intune Rbac Deviceandappmanagementroledefinition Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-deviceandappmanagementroledefinition-update.md
Title: "Update deviceAndAppManagementRoleDefinition" description: "Update the properties of a deviceAndAppManagementRoleDefinition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceAndAppManagementRoleDefinition](../resources/intune-rbac-deviceandappmanagementroledefinition.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: 1278
] } ```-----
v1.0 Intune Rbac Devicemanagement Getassignedroledetails https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-devicemanagement-getassignedroledetails.md
Title: "getAssignedRoleDetails function" description: "Retrieves the assigned role definitions and role assignments of the currently authenticated user."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Retrieves the assigned role definitions and role assignments of the currently authenticated user.
-## Prerequisites
+## Permissions
One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)|
Content-Length: 245
} } ```-----
v1.0 Intune Rbac Devicemanagement Scopedforresource https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-devicemanagement-scopedforresource.md
Title: "scopedForResource 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: 21
"value": true } ```-----
v1.0 Intune Rbac Operationapprovalpolicy Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-operationapprovalpolicy-create.md
Title: "Create operationApprovalPolicy" description: "Create a new operationApprovalPolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [operationApprovalPolicy](../resources/intune-rbac-operationapprovalpolicy.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
] } ```-----
v1.0 Intune Rbac Operationapprovalpolicy Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-operationapprovalpolicy-delete.md
Title: "Delete operationApprovalPolicy" description: "Deletes a operationApprovalPolicy."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [operationApprovalPolicy](../resources/intune-rbac-operationapprovalpolicy.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 Rbac Operationapprovalpolicy Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-operationapprovalpolicy-get.md
Title: "Get operationApprovalPolicy" description: "Read properties and relationships of the operationApprovalPolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [operationApprovalPolicy](../resources/intune-rbac-operationapprovalpolicy.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 Rbac Operationapprovalpolicy Getapprovableoperations https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-operationapprovalpolicy-getapprovableoperations.md
Title: "getApprovableOperations 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: 194
] } ```-----
v1.0 Intune Rbac Operationapprovalpolicy Getoperationsallowedapproval https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-operationapprovalpolicy-getoperationsallowedapproval.md
Title: "getOperationsAllowedApproval 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: 194
] } ```----
v1.0 Intune Rbac Operationapprovalpolicy Getoperationsrequiringapproval https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-operationapprovalpolicy-getoperationsrequiringapproval.md
Title: "getOperationsRequiringApproval 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: 194
] } ```-----
v1.0 Intune Rbac Operationapprovalpolicy List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-operationapprovalpolicy-list.md
Title: "List operationApprovalPolicies" description: "List properties and relationships of the operationApprovalPolicy objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [operationApprovalPolicy](../resources/intune-rbac-operationapprovalpolicy.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: 420
] } ```-----
v1.0 Intune Rbac Operationapprovalpolicy Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-operationapprovalpolicy-update.md
Title: "Update operationApprovalPolicy" description: "Update the properties of a operationApprovalPolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [operationApprovalPolicy](../resources/intune-rbac-operationapprovalpolicy.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
] } ```-----
v1.0 Intune Rbac Operationapprovalrequest Approve https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-operationapprovalrequest-approve.md
Title: "approve action" description: "Approves the requested instance of an operationApprovalRequest"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Approves the requested instance of an operationApprovalRequest
-## Prerequisites
+## Permissions
One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)|
Content-Length: 32
"value": "Approve value" } ```-----
v1.0 Intune Rbac Operationapprovalrequest Cancelapproval https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-operationapprovalrequest-cancelapproval.md
Title: "cancelApproval action" description: "Cancels an already approved instance of an operationApprovalRequest"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Cancels an already approved instance of an operationApprovalRequest
-## Prerequisites
+## Permissions
One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)|
Content-Length: 40
"value": "Cancel Approval value" } ```-----
v1.0 Intune Rbac Operationapprovalrequest Cancelmyrequest https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-operationapprovalrequest-cancelmyrequest.md
Title: "cancelMyRequest 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 Rbac Operationapprovalrequest Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-operationapprovalrequest-create.md
Title: "Create operationApprovalRequest" description: "Create a new operationApprovalRequest object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [operationApprovalRequest](../resources/intune-rbac-operationapprovalrequest.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: 1528
"operationApprovalPolicies": "Operation Approval Policies value" } ```-----
v1.0 Intune Rbac Operationapprovalrequest Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-operationapprovalrequest-delete.md
Title: "Delete operationApprovalRequest" description: "Deletes a operationApprovalRequest."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [operationApprovalRequest](../resources/intune-rbac-operationapprovalrequest.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 Rbac Operationapprovalrequest Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-operationapprovalrequest-get.md
Title: "Get operationApprovalRequest" description: "Read properties and relationships of the operationApprovalRequest object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [operationApprovalRequest](../resources/intune-rbac-operationapprovalrequest.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: 1637
} } ```-----
v1.0 Intune Rbac Operationapprovalrequest Getmyrequestbyid https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-operationapprovalrequest-getmyrequestbyid.md
Title: "getMyRequestById 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: 1637
} } ```-----
v1.0 Intune Rbac Operationapprovalrequest Getmyrequests https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-operationapprovalrequest-getmyrequests.md
Title: "getMyRequests 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: 1741
] } ```-----
v1.0 Intune Rbac Operationapprovalrequest Getrequeststatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-operationapprovalrequest-getrequeststatus.md
Title: "getRequestStatus 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: 273
} } ```-----
v1.0 Intune Rbac Operationapprovalrequest List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-operationapprovalrequest-list.md
Title: "List operationApprovalRequests" description: "List properties and relationships of the operationApprovalRequest objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [operationApprovalRequest](../resources/intune-rbac-operationapprovalrequest.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: 1741
] } ```-----
v1.0 Intune Rbac Operationapprovalrequest Reject https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-operationapprovalrequest-reject.md
Title: "reject action" description: "Rejects the requested instance of an operationApprovalRequest"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Rejects the requested instance of an operationApprovalRequest
-## Prerequisites
+## Permissions
One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)|
Content-Length: 31
"value": "Reject value" } ```-----
v1.0 Intune Rbac Operationapprovalrequest Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-operationapprovalrequest-update.md
Title: "Update operationApprovalRequest" description: "Update the properties of a operationApprovalRequest object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [operationApprovalRequest](../resources/intune-rbac-operationapprovalrequest.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: 1528
"operationApprovalPolicies": "Operation Approval Policies value" } ```-----
v1.0 Intune Rbac Rbacapplicationmultiple Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-rbacapplicationmultiple-get.md
Title: "Get rbacApplicationMultiple" description: "Read properties and relationships of the rbacApplicationMultiple object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [rbacApplicationMultiple](../resources/intune-rbac-rbacapplicationmultiple.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: 137
} } ```-----
v1.0 Intune Rbac Rbacapplicationmultiple Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-rbacapplicationmultiple-update.md
Title: "Update rbacApplicationMultiple" description: "Update the properties of a rbacApplicationMultiple object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [rbacApplicationMultiple](../resources/intune-rbac-rbacapplicationmultiple.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: 114
"id": "ee4797e5-97e5-ee47-e597-47eee59747ee" } ```-----
v1.0 Intune Rbac Resourceoperation Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-resourceoperation-create.md
Title: "Create resourceOperation" description: "Create a new resourceOperation object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [resourceOperation](../resources/intune-rbac-resourceoperation.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: 298
"enabledForScopeValidation": true } ```-----
v1.0 Intune Rbac Resourceoperation Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-resourceoperation-delete.md
Title: "Delete resourceOperation" description: "Deletes a resourceOperation."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [resourceOperation](../resources/intune-rbac-resourceoperation.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 Rbac Resourceoperation Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-resourceoperation-get.md
Title: "Get resourceOperation" description: "Read properties and relationships of the resourceOperation object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [resourceOperation](../resources/intune-rbac-resourceoperation.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: 331
} } ```-----
v1.0 Intune Rbac Resourceoperation Getscopesforuser https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-resourceoperation-getscopesforuser.md
Title: "getScopesForUser 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: 56
] } ```-----
v1.0 Intune Rbac Resourceoperation List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-resourceoperation-list.md
Title: "List resourceOperations" description: "List properties and relationships of the resourceOperation objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [resourceOperation](../resources/intune-rbac-resourceoperation.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: 359
] } ```-----
v1.0 Intune Rbac Resourceoperation Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-resourceoperation-update.md
Title: "Update resourceOperation" description: "Update the properties of a resourceOperation object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [resourceOperation](../resources/intune-rbac-resourceoperation.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: 298
"enabledForScopeValidation": true } ```-----
v1.0 Intune Rbac Roleassignment Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-roleassignment-create.md
Title: "Create roleAssignment" description: "Create a new roleAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [roleAssignment](../resources/intune-rbac-roleassignment.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: 326
] } ```-----
v1.0 Intune Rbac Roleassignment Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-roleassignment-delete.md
Title: "Delete roleAssignment" description: "Deletes a roleAssignment."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [roleAssignment](../resources/intune-rbac-roleassignment.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 Rbac Roleassignment Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-roleassignment-get.md
Title: "Get roleAssignment" description: "Read properties and relationships of the roleAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [roleAssignment](../resources/intune-rbac-roleassignment.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: 367
} } ```-----
v1.0 Intune Rbac Roleassignment List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-roleassignment-list.md
Title: "List roleAssignments" description: "List properties and relationships of the roleAssignment objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [roleAssignment](../resources/intune-rbac-roleassignment.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: 403
] } ```-----
v1.0 Intune Rbac Roleassignment Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-roleassignment-update.md
Title: "Update roleAssignment" description: "Update the properties of a roleAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [roleAssignment](../resources/intune-rbac-roleassignment.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: 326
] } ```-----
v1.0 Intune Rbac Roledefinition Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-roledefinition-create.md
Title: "Create roleDefinition" description: "Create a new roleDefinition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [roleDefinition](../resources/intune-rbac-roledefinition.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: 1256
] } ```-----
v1.0 Intune Rbac Roledefinition Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-roledefinition-delete.md
Title: "Delete roleDefinition" description: "Deletes a roleDefinition."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [roleDefinition](../resources/intune-rbac-roledefinition.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 Rbac Roledefinition Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-roledefinition-get.md
Title: "Get roleDefinition" description: "Read properties and relationships of the roleDefinition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [roleDefinition](../resources/intune-rbac-roledefinition.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: 1369
} } ```-----
v1.0 Intune Rbac Roledefinition List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-roledefinition-list.md
Title: "List roleDefinitions" description: "List properties and relationships of the roleDefinition objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [roleDefinition](../resources/intune-rbac-roledefinition.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: 1477
] } ```-----
v1.0 Intune Rbac Roledefinition Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-roledefinition-update.md
Title: "Update roleDefinition" description: "Update the properties of a roleDefinition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [roleDefinition](../resources/intune-rbac-roledefinition.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: 1256
] } ```-----
v1.0 Intune Rbac Rolemanagement Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-rolemanagement-get.md
Title: "Get roleManagement" description: "Read properties and relationships of the roleManagement object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [roleManagement](../resources/intune-rbac-rolemanagement.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: 128
} } ```-----
v1.0 Intune Rbac Rolemanagement Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-rolemanagement-update.md
Title: "Update roleManagement" description: "Update the properties of a roleManagement object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [roleManagement](../resources/intune-rbac-rolemanagement.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: 105
"id": "6fb74c1e-4c1e-6fb7-1e4c-b76f1e4cb76f" } ```-----
v1.0 Intune Rbac Rolescopetag Assign https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-rolescopetag-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)|
Content-Length: 499
] } ```-----
v1.0 Intune Rbac Rolescopetag Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-rolescopetag-create.md
Title: "Create roleScopeTag" description: "Create a new roleScopeTag object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [roleScopeTag](../resources/intune-rbac-rolescopetag.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: 204
"isBuiltIn": true } ```-----
v1.0 Intune Rbac Rolescopetag Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-rolescopetag-delete.md
Title: "Delete roleScopeTag" description: "Deletes a roleScopeTag."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [roleScopeTag](../resources/intune-rbac-rolescopetag.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 Rbac Rolescopetag Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-rolescopetag-get.md
Title: "Get roleScopeTag" description: "Read properties and relationships of the roleScopeTag object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [roleScopeTag](../resources/intune-rbac-rolescopetag.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: 233
} } ```-----
v1.0 Intune Rbac Rolescopetag Getrolescopetagsbyid https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-rolescopetag-getrolescopetagsbyid.md
Title: "getRoleScopeTagsById 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: 257
] } ```-----
v1.0 Intune Rbac Rolescopetag Hascustomrolescopetag https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-rolescopetag-hascustomrolescopetag.md
Title: "hasCustomRoleScopeTag 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: 21
"value": true } ```-----
v1.0 Intune Rbac Rolescopetag List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-rolescopetag-list.md
Title: "List roleScopeTags" description: "List properties and relationships of the roleScopeTag objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [roleScopeTag](../resources/intune-rbac-rolescopetag.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: 257
] } ```-----
v1.0 Intune Rbac Rolescopetag Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-rolescopetag-update.md
Title: "Update roleScopeTag" description: "Update the properties of a roleScopeTag object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [roleScopeTag](../resources/intune-rbac-rolescopetag.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: 204
"isBuiltIn": true } ```-----
v1.0 Intune Rbac Rolescopetagautoassignment Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-rolescopetagautoassignment-create.md
Title: "Create roleScopeTagAutoAssignment" description: "Create a new roleScopeTagAutoAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [roleScopeTagAutoAssignment](../resources/intune-rbac-rolescopetagautoassignment.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 Rbac Rolescopetagautoassignment Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-rolescopetagautoassignment-delete.md
Title: "Delete roleScopeTagAutoAssignment" description: "Deletes a roleScopeTagAutoAssignment."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [roleScopeTagAutoAssignment](../resources/intune-rbac-rolescopetagautoassignment.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 Rbac Rolescopetagautoassignment Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-rolescopetagautoassignment-get.md
Title: "Get roleScopeTagAutoAssignment" description: "Read properties and relationships of the roleScopeTagAutoAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [roleScopeTagAutoAssignment](../resources/intune-rbac-rolescopetagautoassignment.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: 469
} } ```-----
v1.0 Intune Rbac Rolescopetagautoassignment List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-rolescopetagautoassignment-list.md
Title: "List roleScopeTagAutoAssignments" description: "List properties and relationships of the roleScopeTagAutoAssignment objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [roleScopeTagAutoAssignment](../resources/intune-rbac-rolescopetagautoassignment.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: 499
] } ```-----
v1.0 Intune Rbac Rolescopetagautoassignment Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-rbac-rolescopetagautoassignment-update.md
Title: "Update roleScopeTagAutoAssignment" description: "Update the properties of a roleScopeTagAutoAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [roleScopeTagAutoAssignment](../resources/intune-rbac-rolescopetagautoassignment.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 Remoteassistance Createremotehelpsessionresponse Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-remoteassistance-createremotehelpsessionresponse-create.md
Title: "Create createRemoteHelpSessionResponse" description: "Create a new createRemoteHelpSessionResponse object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [createRemoteHelpSessionResponse](../resources/intune-remoteassistance-createremotehelpsessionresponse.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: 148
"sessionType": "takeFullControl" } ```-----
v1.0 Intune Remoteassistance Createremotehelpsessionresponse Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-remoteassistance-createremotehelpsessionresponse-delete.md
Title: "Delete createRemoteHelpSessionResponse" description: "Deletes a createRemoteHelpSessionResponse."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [createRemoteHelpSessionResponse](../resources/intune-remoteassistance-createremotehelpsessionresponse.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 Remoteassistance Createremotehelpsessionresponse Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-remoteassistance-createremotehelpsessionresponse-get.md
Title: "Get createRemoteHelpSessionResponse" description: "Read properties and relationships of the createRemoteHelpSessionResponse object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [createRemoteHelpSessionResponse](../resources/intune-remoteassistance-createremotehelpsessionresponse.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: 173
} } ```-----
v1.0 Intune Remoteassistance Createremotehelpsessionresponse List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-remoteassistance-createremotehelpsessionresponse-list.md
Title: "List createRemoteHelpSessionResponses" description: "List properties and relationships of the createRemoteHelpSessionResponse objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [createRemoteHelpSessionResponse](../resources/intune-remoteassistance-createremotehelpsessionresponse.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: 193
] } ```-----
v1.0 Intune Remoteassistance Createremotehelpsessionresponse Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-remoteassistance-createremotehelpsessionresponse-update.md
Title: "Update createRemoteHelpSessionResponse" description: "Update the properties of a createRemoteHelpSessionResponse object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [createRemoteHelpSessionResponse](../resources/intune-remoteassistance-createremotehelpsessionresponse.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: 148
"sessionType": "takeFullControl" } ```-----
v1.0 Intune Remoteassistance Devicemanagement Getallowedremoteassistanceactions https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-remoteassistance-devicemanagement-getallowedremoteassistanceactions.md
Title: "getAllowedRemoteAssistanceActions 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: 34
"value": "takeFullControl" } ```-----
v1.0 Intune Remoteassistance Devicemanagement Reportremoteassistance https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-remoteassistance-devicemanagement-reportremoteassistance.md
Title: "reportRemoteAssistance action" description: "A post call to submit the reporting payload"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
A post call to submit the reporting payload
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 request.
POST https://graph.microsoft.com/beta/deviceManagement/reportRemoteAssistance Content-type: application/json
-Content-length: 1044
+Content-length: 1114
{ "reportingPayload": {
Content-length: 1044
"sharerDeviceAadId": "Sharer Device Aad Id value", "sharerDeviceName": "Sharer Device Name value", "sharerOs": "Sharer Os value",
- "sharerEnrollmentState": "enrolled"
+ "sharerEnrollmentState": "enrolled",
+ "sharerDeviceSerialNumber": "Sharer Device Serial Number value"
} } ```
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 Remoteassistance Devicemanagementreports Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-remoteassistance-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-remoteassistance-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: 137
} } ```-----
v1.0 Intune Remoteassistance Devicemanagementreports Getremoteassistancemonitoractivesessionsreport https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-remoteassistance-devicemanagementreports-getremoteassistancemonitoractivesessionsreport.md
Title: "getRemoteAssistanceMonitorActiveSessionsReport 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: 119
"value": "Z2V0UmVtb3RlQXNzaXN0YW5jZU1vbml0b3JBY3RpdmVTZXNzaW9uc1JlcG9ydCBJbnR1bmUgRG9jIFNhbXBsZSA3Mjc0MTA5OTE=" } ```-----
v1.0 Intune Remoteassistance Devicemanagementreports Getremoteassistancemonitoravgsessiontimereport https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-remoteassistance-devicemanagementreports-getremoteassistancemonitoravgsessiontimereport.md
Title: "getRemoteAssistanceMonitorAvgSessionTimeReport 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: 123
"value": "Z2V0UmVtb3RlQXNzaXN0YW5jZU1vbml0b3JBdmdTZXNzaW9uVGltZVJlcG9ydCBJbnR1bmUgRG9jIFNhbXBsZSAtMTUzNDAwMDU5OQ==" } ```-----
v1.0 Intune Remoteassistance Devicemanagementreports Getremoteassistancemonitortotalsessionsreport https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-remoteassistance-devicemanagementreports-getremoteassistancemonitortotalsessionsreport.md
Title: "getRemoteAssistanceMonitorTotalSessionsReport 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: 119
"value": "Z2V0UmVtb3RlQXNzaXN0YW5jZU1vbml0b3JUb3RhbFNlc3Npb25zUmVwb3J0IEludHVuZSBEb2MgU2FtcGxlIDIwNDgyNjQ4ODE=" } ```-----
v1.0 Intune Remoteassistance Devicemanagementreports Getremoteassistancesessionsreport https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-remoteassistance-devicemanagementreports-getremoteassistancesessionsreport.md
Title: "getRemoteAssistanceSessionsReport 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: 103
"value": "Z2V0UmVtb3RlQXNzaXN0YW5jZVNlc3Npb25zUmVwb3J0IEludHVuZSBEb2MgU2FtcGxlIC0xNzcyMDEwMDQ1" } ```-----
v1.0 Intune Remoteassistance Devicemanagementreports Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-remoteassistance-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-remoteassistance-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: 114
"id": "d6a697d3-97d3-d6a6-d397-a6d6d397a6d6" } ```-----
v1.0 Intune Remoteassistance Remoteassistancepartner Beginonboarding https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-remoteassistance-remoteassistancepartner-beginonboarding.md
Title: "beginOnboarding action" description: "A request to start onboarding. Must be coupled with the appropriate TeamViewer account information"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
A request to start onboarding. Must be coupled with the appropriate TeamViewer account information
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Remoteassistance Remoteassistancepartner Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-remoteassistance-remoteassistancepartner-create.md
Title: "Create remoteAssistancePartner" description: "Create a new remoteAssistancePartner object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [remoteAssistancePartner](../resources/intune-remoteassistance-remoteassistancepartner.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: 390
"onboardingRequestExpiryDateTime": "2017-01-01T00:02:07.7573274-08:00" } ```-----
v1.0 Intune Remoteassistance Remoteassistancepartner Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-remoteassistance-remoteassistancepartner-delete.md
Title: "Delete remoteAssistancePartner" description: "Deletes a remoteAssistancePartner."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [remoteAssistancePartner](../resources/intune-remoteassistance-remoteassistancepartner.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 Remoteassistance Remoteassistancepartner Disconnect https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-remoteassistance-remoteassistancepartner-disconnect.md
Title: "disconnect action" description: "A request to remove the active TeamViewer connector"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
A request to remove the active TeamViewer connector
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Remoteassistance Remoteassistancepartner Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-remoteassistance-remoteassistancepartner-get.md
Title: "Get remoteAssistancePartner" description: "Read properties and relationships of the remoteAssistancePartner object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [remoteAssistancePartner](../resources/intune-remoteassistance-remoteassistancepartner.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
} } ```-----
v1.0 Intune Remoteassistance Remoteassistancepartner List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-remoteassistance-remoteassistancepartner-list.md
Title: "List remoteAssistancePartners" description: "List properties and relationships of the remoteAssistancePartner objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [remoteAssistancePartner](../resources/intune-remoteassistance-remoteassistancepartner.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: 451
] } ```-----
v1.0 Intune Remoteassistance Remoteassistancepartner Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-remoteassistance-remoteassistancepartner-update.md
Title: "Update remoteAssistancePartner" description: "Update the properties of a remoteAssistancePartner object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [remoteAssistancePartner](../resources/intune-remoteassistance-remoteassistancepartner.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: 390
"onboardingRequestExpiryDateTime": "2017-01-01T00:02:07.7573274-08:00" } ```-----
v1.0 Intune Remoteassistance Remoteassistancesettings Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-remoteassistance-remoteassistancesettings-get.md
Title: "Get remoteAssistanceSettings" description: "Read properties and relationships of the remoteAssistanceSettings object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [remoteAssistanceSettings](../resources/intune-remoteassistance-remoteassistancesettings.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: 250
} } ```-----
v1.0 Intune Remoteassistance Remoteassistancesettings Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-remoteassistance-remoteassistancesettings-update.md
Title: "Update remoteAssistanceSettings" description: "Update the properties of a remoteAssistanceSettings object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [remoteAssistanceSettings](../resources/intune-remoteassistance-remoteassistancesettings.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: 221
"blockChat": true } ```-----
v1.0 Intune Remoteassistance Requestremotehelpsessionaccessresponse Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-remoteassistance-requestremotehelpsessionaccessresponse-create.md
Title: "Create requestRemoteHelpSessionAccessResponse" description: "Create a new requestRemoteHelpSessionAccessResponse object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [requestRemoteHelpSessionAccessResponse](../resources/intune-remoteassistance-requestremotehelpsessionaccessresponse.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: 264
"pubSubEncryption": "Pub Sub Encryption value" } ```-----
v1.0 Intune Remoteassistance Requestremotehelpsessionaccessresponse Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-remoteassistance-requestremotehelpsessionaccessresponse-delete.md
Title: "Delete requestRemoteHelpSessionAccessResponse" description: "Deletes a requestRemoteHelpSessionAccessResponse."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [requestRemoteHelpSessionAccessResponse](../resources/intune-remoteassistance-requestremotehelpsessionaccessresponse.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 Remoteassistance Requestremotehelpsessionaccessresponse Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-remoteassistance-requestremotehelpsessionaccessresponse-get.md
Title: "Get requestRemoteHelpSessionAccessResponse" description: "Read properties and relationships of the requestRemoteHelpSessionAccessResponse object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [requestRemoteHelpSessionAccessResponse](../resources/intune-remoteassistance-requestremotehelpsessionaccessresponse.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: 293
} } ```-----
v1.0 Intune Remoteassistance Requestremotehelpsessionaccessresponse List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-remoteassistance-requestremotehelpsessionaccessresponse-list.md
Title: "List requestRemoteHelpSessionAccessResponses" description: "List properties and relationships of the requestRemoteHelpSessionAccessResponse objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [requestRemoteHelpSessionAccessResponse](../resources/intune-remoteassistance-requestremotehelpsessionaccessresponse.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: 317
] } ```-----
v1.0 Intune Remoteassistance Requestremotehelpsessionaccessresponse Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-remoteassistance-requestremotehelpsessionaccessresponse-update.md
Title: "Update requestRemoteHelpSessionAccessResponse" description: "Update the properties of a requestRemoteHelpSessionAccessResponse object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [requestRemoteHelpSessionAccessResponse](../resources/intune-remoteassistance-requestremotehelpsessionaccessresponse.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: 264
"pubSubEncryption": "Pub Sub Encryption value" } ```-----
v1.0 Intune Remoteassistance Retrieveremotehelpsessionresponse Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-remoteassistance-retrieveremotehelpsessionresponse-create.md
Title: "Create retrieveRemoteHelpSessionResponse" description: "Create a new retrieveRemoteHelpSessionResponse object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [retrieveRemoteHelpSessionResponse](../resources/intune-remoteassistance-retrieveremotehelpsessionresponse.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: 561
"sessionExpirationDateTime": "2016-12-31T23:59:57.5564522-08:00" } ```-----
v1.0 Intune Remoteassistance Retrieveremotehelpsessionresponse Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-remoteassistance-retrieveremotehelpsessionresponse-delete.md
Title: "Delete retrieveRemoteHelpSessionResponse" description: "Deletes a retrieveRemoteHelpSessionResponse."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [retrieveRemoteHelpSessionResponse](../resources/intune-remoteassistance-retrieveremotehelpsessionresponse.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 Remoteassistance Retrieveremotehelpsessionresponse Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-remoteassistance-retrieveremotehelpsessionresponse-get.md
Title: "Get retrieveRemoteHelpSessionResponse" description: "Read properties and relationships of the retrieveRemoteHelpSessionResponse object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [retrieveRemoteHelpSessionResponse](../resources/intune-remoteassistance-retrieveremotehelpsessionresponse.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: 602
} } ```-----
v1.0 Intune Remoteassistance Retrieveremotehelpsessionresponse List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-remoteassistance-retrieveremotehelpsessionresponse-list.md
Title: "List retrieveRemoteHelpSessionResponses" description: "List properties and relationships of the retrieveRemoteHelpSessionResponse objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [retrieveRemoteHelpSessionResponse](../resources/intune-remoteassistance-retrieveremotehelpsessionresponse.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: 638
] } ```-----
v1.0 Intune Remoteassistance Retrieveremotehelpsessionresponse Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-remoteassistance-retrieveremotehelpsessionresponse-update.md
Title: "Update retrieveRemoteHelpSessionResponse" description: "Update the properties of a retrieveRemoteHelpSessionResponse object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [retrieveRemoteHelpSessionResponse](../resources/intune-remoteassistance-retrieveremotehelpsessionresponse.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: 561
"sessionExpirationDateTime": "2016-12-31T23:59:57.5564522-08:00" } ```-----
v1.0 Intune Reporting Devicemanagementcachedreportconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-reporting-devicemanagementcachedreportconfiguration-create.md
Title: "Create deviceManagementCachedReportConfiguration" description: "Create a new deviceManagementCachedReportConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceManagementCachedReportConfiguration](../resources/intune-reporting-devicemanagementcachedreportconfiguration.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: 467
"expirationDateTime": "2016-12-31T23:57:57.2481234-08:00" } ```-----
v1.0 Intune Reporting Devicemanagementcachedreportconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-reporting-devicemanagementcachedreportconfiguration-delete.md
Title: "Delete deviceManagementCachedReportConfiguration" description: "Deletes a deviceManagementCachedReportConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceManagementCachedReportConfiguration](../resources/intune-reporting-devicemanagementcachedreportconfiguration.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 Reporting Devicemanagementcachedreportconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-reporting-devicemanagementcachedreportconfiguration-get.md
Title: "Get deviceManagementCachedReportConfiguration" description: "Read properties and relationships of the deviceManagementCachedReportConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementCachedReportConfiguration](../resources/intune-reporting-devicemanagementcachedreportconfiguration.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: 514
} } ```-----
v1.0 Intune Reporting Devicemanagementcachedreportconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-reporting-devicemanagementcachedreportconfiguration-list.md
Title: "List deviceManagementCachedReportConfigurations" description: "List properties and relationships of the deviceManagementCachedReportConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceManagementCachedReportConfiguration](../resources/intune-reporting-devicemanagementcachedreportconfiguration.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: 556
] } ```-----
v1.0 Intune Reporting Devicemanagementcachedreportconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-reporting-devicemanagementcachedreportconfiguration-update.md
Title: "Update deviceManagementCachedReportConfiguration" description: "Update the properties of a deviceManagementCachedReportConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementCachedReportConfiguration](../resources/intune-reporting-devicemanagementcachedreportconfiguration.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: 467
"expirationDateTime": "2016-12-31T23:57:57.2481234-08:00" } ```-----
v1.0 Intune Reporting Devicemanagementexportjob Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-reporting-devicemanagementexportjob-create.md
Title: "Create deviceManagementExportJob" description: "Create a new deviceManagementExportJob object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceManagementExportJob](../resources/intune-reporting-devicemanagementexportjob.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: 504
"expirationDateTime": "2016-12-31T23:57:57.2481234-08:00" } ```-----
v1.0 Intune Reporting Devicemanagementexportjob Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-reporting-devicemanagementexportjob-delete.md
Title: "Delete deviceManagementExportJob" description: "Deletes a deviceManagementExportJob."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceManagementExportJob](../resources/intune-reporting-devicemanagementexportjob.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 Reporting Devicemanagementexportjob Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-reporting-devicemanagementexportjob-get.md
Title: "Get deviceManagementExportJob" description: "Read properties and relationships of the deviceManagementExportJob object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementExportJob](../resources/intune-reporting-devicemanagementexportjob.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 Reporting Devicemanagementexportjob List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-reporting-devicemanagementexportjob-list.md
Title: "List deviceManagementExportJobs" description: "List properties and relationships of the deviceManagementExportJob objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceManagementExportJob](../resources/intune-reporting-devicemanagementexportjob.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: 593
] } ```-----
v1.0 Intune Reporting Devicemanagementexportjob Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-reporting-devicemanagementexportjob-update.md
Title: "Update deviceManagementExportJob" description: "Update the properties of a deviceManagementExportJob object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementExportJob](../resources/intune-reporting-devicemanagementexportjob.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: 504
"expirationDateTime": "2016-12-31T23:57:57.2481234-08:00" } ```-----
v1.0 Intune Reporting Devicemanagementreports Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-reporting-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-reporting-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: 137
} } ```-----
v1.0 Intune Reporting Devicemanagementreports Getcachedreport https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-reporting-devicemanagementreports-getcachedreport.md
Title: "getCachedReport 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: 79
"value": "Z2V0Q2FjaGVkUmVwb3J0IEludHVuZSBEb2MgU2FtcGxlIDc5MjIxODQ3OA==" } ```-----
v1.0 Intune Reporting Devicemanagementreports Getcompliancepolicynoncompliancereport https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-reporting-devicemanagementreports-getcompliancepolicynoncompliancereport.md
Title: "getCompliancePolicyNonComplianceReport 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: 111
"value": "Z2V0Q29tcGxpYW5jZVBvbGljeU5vbkNvbXBsaWFuY2VSZXBvcnQgSW50dW5lIERvYyBTYW1wbGUgMTA0ODU4MDU5OQ==" } ```-----
v1.0 Intune Reporting Devicemanagementreports Getcompliancepolicynoncompliancesummaryreport https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-reporting-devicemanagementreports-getcompliancepolicynoncompliancesummaryreport.md
Title: "getCompliancePolicyNonComplianceSummaryReport 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: 119
"value": "Z2V0Q29tcGxpYW5jZVBvbGljeU5vbkNvbXBsaWFuY2VTdW1tYXJ5UmVwb3J0IEludHVuZSBEb2MgU2FtcGxlIDg4MTYwMDMxNQ==" } ```-----
v1.0 Intune Reporting Devicemanagementreports Getcompliancesettingnoncompliancereport https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-reporting-devicemanagementreports-getcompliancesettingnoncompliancereport.md
Title: "getComplianceSettingNonComplianceReport 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: 111
"value": "Z2V0Q29tcGxpYW5jZVNldHRpbmdOb25Db21wbGlhbmNlUmVwb3J0IEludHVuZSBEb2MgU2FtcGxlIDU0NDgzMTA0NQ==" } ```-----
v1.0 Intune Reporting Devicemanagementreports Getconfigurationpolicynoncompliancereport https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-reporting-devicemanagementreports-getconfigurationpolicynoncompliancereport.md
Title: "getConfigurationPolicyNonComplianceReport 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: 115
"value": "Z2V0Q29uZmlndXJhdGlvblBvbGljeU5vbkNvbXBsaWFuY2VSZXBvcnQgSW50dW5lIERvYyBTYW1wbGUgLTE2MTk2MDUzMTI=" } ```-----
v1.0 Intune Reporting Devicemanagementreports Getconfigurationpolicynoncompliancesummaryreport https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-reporting-devicemanagementreports-getconfigurationpolicynoncompliancesummaryreport.md
Title: "getConfigurationPolicyNonComplianceSummaryReport 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: 123
"value": "Z2V0Q29uZmlndXJhdGlvblBvbGljeU5vbkNvbXBsaWFuY2VTdW1tYXJ5UmVwb3J0IEludHVuZSBEb2MgU2FtcGxlIC0xNjM2NzI4OTg4" } ```-----
v1.0 Intune Reporting Devicemanagementreports Getconfigurationsettingnoncompliancereport https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-reporting-devicemanagementreports-getconfigurationsettingnoncompliancereport.md
Title: "getConfigurationSettingNonComplianceReport 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: 115
"value": "Z2V0Q29uZmlndXJhdGlvblNldHRpbmdOb25Db21wbGlhbmNlUmVwb3J0IEludHVuZSBEb2MgU2FtcGxlIDIxMDczMDYzMzQ=" } ```-----
v1.0 Intune Reporting Devicemanagementreports Getdevicemanagementintentpersettingcontributingprofiles https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-reporting-devicemanagementreports-getdevicemanagementintentpersettingcontributingprofiles.md
Title: "getDeviceManagementIntentPerSettingContributingProfiles 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: 131
"value": "Z2V0RGV2aWNlTWFuYWdlbWVudEludGVudFBlclNldHRpbmdDb250cmlidXRpbmdQcm9maWxlcyBJbnR1bmUgRG9jIFNhbXBsZSA4OTc0NTYyMg==" } ```-----
v1.0 Intune Reporting Devicemanagementreports Getdevicemanagementintentsettingsreport https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-reporting-devicemanagementreports-getdevicemanagementintentsettingsreport.md
Title: "getDeviceManagementIntentSettingsReport 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: 111
"value": "Z2V0RGV2aWNlTWFuYWdlbWVudEludGVudFNldHRpbmdzUmVwb3J0IEludHVuZSBEb2MgU2FtcGxlIDc2OTIyMjczOA==" } ```-----
v1.0 Intune Reporting Devicemanagementreports Getdevicenoncompliancereport https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-reporting-devicemanagementreports-getdevicenoncompliancereport.md
Title: "getDeviceNonComplianceReport 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: 99
"value": "Z2V0RGV2aWNlTm9uQ29tcGxpYW5jZVJlcG9ydCBJbnR1bmUgRG9jIFNhbXBsZSAtMTY1MDA3NDI3OA==" } ```-----
v1.0 Intune Reporting Devicemanagementreports Getdeviceswithoutcompliancepolicyreport https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-reporting-devicemanagementreports-getdeviceswithoutcompliancepolicyreport.md
+
+ Title: "getDevicesWithoutCompliancePolicyReport action"
+description: "Not yet documented"
+
+localization_priority: Normal
++
+# getDevicesWithoutCompliancePolicyReport action
+
+Namespace: microsoft.graph
+
+> **Important:** Microsoft Graph APIs under the /beta version are subject to change; production use is not supported.
+
+> **Note:** The Microsoft Graph API for Intune requires an [active Intune license](https://go.microsoft.com/fwlink/?linkid=839381) for the tenant.
+
+Not yet documented
+
+## Permissions
+One of the following permissions is required to 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)|DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementApps.Read.All, DeviceManagementApps.ReadWrite.All, DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All|
+|Delegated (personal Microsoft account)|Not supported.|
+|Application|DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementApps.Read.All, DeviceManagementApps.ReadWrite.All, DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All|
+
+## HTTP Request
+<!-- {
+ "blockType": "ignored"
+}
+-->
+``` http
+POST /deviceManagement/reports/getDevicesWithoutCompliancePolicyReport
+```
+
+## Request headers
+|Header|Value|
+|:|:|
+|Authorization|Bearer &lt;token&gt; Required.|
+|Accept|application/json|
+
+## Request body
+In the request body, supply JSON representation of the parameters.
+
+The following table shows the parameters that can be used with this action.
+
+|Property|Type|Description|
+|:|:|:|
+|name|String|Not yet documented|
+|select|String collection|Not yet documented|
+|search|String|Not yet documented|
+|groupBy|String collection|Not yet documented|
+|orderBy|String collection|Not yet documented|
+|skip|Int32|Not yet documented|
+|top|Int32|Not yet documented|
+|sessionId|String|Not yet documented|
+|filter|String|Not yet documented|
+++
+## Response
+If successful, this action returns a `200 OK` response code and a Stream in the response body.
+
+## Example
+
+### Request
+Here is an example of the request.
+``` http
+POST https://graph.microsoft.com/beta/deviceManagement/reports/getDevicesWithoutCompliancePolicyReport
+
+Content-type: application/json
+Content-length: 278
+
+{
+ "name": "Name value",
+ "select": [
+ "Select value"
+ ],
+ "search": "Search value",
+ "groupBy": [
+ "Group By value"
+ ],
+ "orderBy": [
+ "Order By value"
+ ],
+ "skip": 4,
+ "top": 3,
+ "sessionId": "Session Id value",
+ "filter": "Filter value"
+}
+```
+
+### Response
+Here is an example of the response. Note: The response object shown here may be truncated for brevity. All of the properties will be returned from an actual call.
+``` http
+HTTP/1.1 200 OK
+Content-Type: application/json
+Content-Length: 111
+
+{
+ "value": "Z2V0RGV2aWNlc1dpdGhvdXRDb21wbGlhbmNlUG9saWN5UmVwb3J0IEludHVuZSBEb2MgU2FtcGxlIC05MzE0NjE1NDQ="
+}
+```
v1.0 Intune Reporting Devicemanagementreports Gethistoricalreport https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-reporting-devicemanagementreports-gethistoricalreport.md
Title: "getHistoricalReport 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: 83
"value": "Z2V0SGlzdG9yaWNhbFJlcG9ydCBJbnR1bmUgRG9jIFNhbXBsZSAxNjE5NjA4MTY0" } ```-----
v1.0 Intune Reporting Devicemanagementreports Getnoncompliantdevicesandsettingsreport https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-reporting-devicemanagementreports-getnoncompliantdevicesandsettingsreport.md
Title: "getNoncompliantDevicesAndSettingsReport 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: 111
"value": "Z2V0Tm9uY29tcGxpYW50RGV2aWNlc0FuZFNldHRpbmdzUmVwb3J0IEludHVuZSBEb2MgU2FtcGxlIC0yMDEyNTMxMjQ3" } ```-----
v1.0 Intune Reporting Devicemanagementreports Getpolicynoncompliancemetadata https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-reporting-devicemanagementreports-getpolicynoncompliancemetadata.md
Title: "getPolicyNonComplianceMetadata 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: 99
"value": "Z2V0UG9saWN5Tm9uQ29tcGxpYW5jZU1ldGFkYXRhIEludHVuZSBEb2MgU2FtcGxlIC0xNzM5NTg5Nzc5" } ```-----
v1.0 Intune Reporting Devicemanagementreports Getpolicynoncompliancereport https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-reporting-devicemanagementreports-getpolicynoncompliancereport.md
Title: "getPolicyNonComplianceReport 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": "Z2V0UG9saWN5Tm9uQ29tcGxpYW5jZVJlcG9ydCBJbnR1bmUgRG9jIFNhbXBsZSAtNjU2NTI5OTUw" } ```-----
v1.0 Intune Reporting Devicemanagementreports Getpolicynoncompliancesummaryreport https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-reporting-devicemanagementreports-getpolicynoncompliancesummaryreport.md
Title: "getPolicyNonComplianceSummaryReport 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: 107
"value": "Z2V0UG9saWN5Tm9uQ29tcGxpYW5jZVN1bW1hcnlSZXBvcnQgSW50dW5lIERvYyBTYW1wbGUgLTQzMjEwMjAyNg==" } ```-----
v1.0 Intune Reporting Devicemanagementreports Getreportfilters https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-reporting-devicemanagementreports-getreportfilters.md
Title: "getReportFilters 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: 79
"value": "Z2V0UmVwb3J0RmlsdGVycyBJbnR1bmUgRG9jIFNhbXBsZSAxMzYxOTI0Mjkx" } ```-----
v1.0 Intune Reporting Devicemanagementreports Getsettingnoncompliancereport https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-reporting-devicemanagementreports-getsettingnoncompliancereport.md
Title: "getSettingNonComplianceReport 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: 99
"value": "Z2V0U2V0dGluZ05vbkNvbXBsaWFuY2VSZXBvcnQgSW50dW5lIERvYyBTYW1wbGUgMTEwMDk1MTE2MA==" } ```-----
v1.0 Intune Reporting Devicemanagementreports Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-reporting-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-reporting-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: 114
"id": "d6a697d3-97d3-d6a6-d397-a6d6d397a6d6" } ```-----
v1.0 Intune Reporting Devicemanagementreportschedule Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-reporting-devicemanagementreportschedule-create.md
Title: "Create deviceManagementReportSchedule" description: "Create a new deviceManagementReportSchedule object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceManagementReportSchedule](../resources/intune-reporting-devicemanagementreportschedule.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: 588
"format": "pdf" } ```---
v1.0 Intune Reporting Devicemanagementreportschedule Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-reporting-devicemanagementreportschedule-delete.md
Title: "Delete deviceManagementReportSchedule" description: "Deletes a deviceManagementReportSchedule."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceManagementReportSchedule](../resources/intune-reporting-devicemanagementreportschedule.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 Reporting Devicemanagementreportschedule Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-reporting-devicemanagementreportschedule-get.md
Title: "Get deviceManagementReportSchedule" description: "Read properties and relationships of the deviceManagementReportSchedule object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementReportSchedule](../resources/intune-reporting-devicemanagementreportschedule.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: 647
} } ```---
v1.0 Intune Reporting Devicemanagementreportschedule List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-reporting-devicemanagementreportschedule-list.md
Title: "List deviceManagementReportSchedules" description: "List properties and relationships of the deviceManagementReportSchedule objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceManagementReportSchedule](../resources/intune-reporting-devicemanagementreportschedule.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: 701
] } ```---
v1.0 Intune Reporting Devicemanagementreportschedule Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-reporting-devicemanagementreportschedule-update.md
Title: "Update deviceManagementReportSchedule" description: "Update the properties of a deviceManagementReportSchedule object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementReportSchedule](../resources/intune-reporting-devicemanagementreportschedule.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: 588
"format": "pdf" } ```---
v1.0 Intune Shared Androidmanagedappprotection Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-androidmanagedappprotection-create.md
Title: "Create androidManagedAppProtection" description: "Create a new androidManagedAppProtection object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 3139
"customBrowserDisplayName": "Custom Browser Display Name value" } ```---------
v1.0 Intune Shared Androidmanagedappprotection Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-androidmanagedappprotection-delete.md
Title: "Delete androidManagedAppProtection" description: "Deletes a androidManagedAppProtection."-+ 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 Shared Androidmanagedappprotection Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-androidmanagedappprotection-get.md
Title: "Get androidManagedAppProtection" description: "Read properties and relationships of the androidManagedAppProtection object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 3296
} } ```---------
v1.0 Intune Shared Androidmanagedappprotection Haspayloadlinks https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-androidmanagedappprotection-haspayloadlinks.md
Title: "hasPayloadLinks action" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 249
] } ```---------
v1.0 Intune Shared Androidmanagedappprotection List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-androidmanagedappprotection-list.md
Title: "List androidManagedAppProtections" description: "List properties and relationships of the androidManagedAppProtection objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 3448
] } ```---------
v1.0 Intune Shared Androidmanagedappprotection Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-androidmanagedappprotection-update.md
Title: "Update androidManagedAppProtection" description: "Update the properties of a androidManagedAppProtection object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 3139
"customBrowserDisplayName": "Custom Browser Display Name value" } ```---------
v1.0 Intune Shared Deviceappmanagement Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-deviceappmanagement-get.md
Title: "Get deviceAppManagement" description: "Read properties and relationships of the deviceAppManagement object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 133
} } ```-----------
v1.0 Intune Shared Deviceappmanagement Syncmicrosoftstoreforbusinessapps https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-deviceappmanagement-syncmicrosoftstoreforbusinessapps.md
Title: "syncMicrosoftStoreForBusinessApps action" description: "Syncs Intune account with Microsoft Store For Business"-+ 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 Shared Deviceappmanagement Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-deviceappmanagement-update.md
Title: "Update deviceAppManagement" description: "Update the properties of a deviceAppManagement object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 110
"id": "bbb801a3-01a3-bbb8-a301-b8bba301b8bb" } ```-----------
v1.0 Intune Shared Devicecategory Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-devicecategory-create.md
Title: "Create deviceCategory" description: "Create a new deviceCategory object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 184
"description": "Description value" } ```-----------
v1.0 Intune Shared Devicecategory Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-devicecategory-delete.md
Title: "Delete deviceCategory" description: "Deletes a deviceCategory."-+ 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 Shared Devicecategory Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-devicecategory-get.md
Title: "Get deviceCategory" description: "Read properties and relationships of the deviceCategory object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 211
} } ```-----------
v1.0 Intune Shared Devicecategory List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-devicecategory-list.md
Title: "List deviceCategories" description: "List properties and relationships of the deviceCategory objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 233
] } ```-----------
v1.0 Intune Shared Devicecategory Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-devicecategory-update.md
Title: "Update deviceCategory" description: "Update the properties of a deviceCategory object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 184
"description": "Description value" } ```-----------
v1.0 Intune Shared Devicecompliancepolicy Assign https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-devicecompliancepolicy-assign.md
Title: "assign action" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 274
] } ```---------
v1.0 Intune Shared Devicecompliancepolicy Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-devicecompliancepolicy-get.md
Title: "Get deviceCompliancePolicy" description: "Read properties and relationships of the deviceCompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 433
} } ```---------
v1.0 Intune Shared Devicecompliancepolicy Haspayloadlinks https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-devicecompliancepolicy-haspayloadlinks.md
Title: "hasPayloadLinks action" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 249
] } ```---------
v1.0 Intune Shared Devicecompliancepolicy List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-devicecompliancepolicy-list.md
Title: "List deviceCompliancePolicies" description: "List properties and relationships of the deviceCompliancePolicy objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 467
] } ```---------
v1.0 Intune Shared Devicecompliancepolicy Refreshdevicecompliancereportsummarization https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-devicecompliancepolicy-refreshdevicecompliancereportsummarization.md
Title: "refreshDeviceComplianceReportSummarization action" description: "Not yet documented"-+ 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 Shared Devicecompliancepolicy Scheduleactionsforrules https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-devicecompliancepolicy-scheduleactionsforrules.md
Title: "scheduleActionsForRules action" description: "Not yet documented"-+ 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 Shared Deviceconfiguration Assign https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-deviceconfiguration-assign.md
Title: "assign action" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 340
] } ```---------
v1.0 Intune Shared Deviceconfiguration Assignedaccessmultimodeprofiles https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-deviceconfiguration-assignedaccessmultimodeprofiles.md
Title: "assignedAccessMultiModeProfiles action" description: "Not yet documented"-+ 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 Shared Deviceconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-deviceconfiguration-get.md
Title: "Get deviceConfiguration" description: "Read properties and relationships of the deviceConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 1277
} } ```---------
v1.0 Intune Shared Deviceconfiguration Gettargetedusersanddevices https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-deviceconfiguration-gettargetedusersanddevices.md
Title: "getTargetedUsersAndDevices action" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 409
] } ```---------
v1.0 Intune Shared Deviceconfiguration Haspayloadlinks https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-deviceconfiguration-haspayloadlinks.md
Title: "hasPayloadLinks action" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 249
] } ```---------
v1.0 Intune Shared Deviceconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-deviceconfiguration-list.md
Title: "List deviceConfigurations" description: "List properties and relationships of the deviceConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 1355
] } ```---------
v1.0 Intune Shared Deviceconfiguration Windowsprivacyaccesscontrols https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-deviceconfiguration-windowsprivacyaccesscontrols.md
Title: "windowsPrivacyAccessControls action" description: "Not yet documented"-+ 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 Shared Deviceenrollmentconfiguration Assign https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-deviceenrollmentconfiguration-assign.md
Title: "assign action" description: "Not yet documented"-+ 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 Shared Deviceenrollmentconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-deviceenrollmentconfiguration-get.md
Title: "Get deviceEnrollmentConfiguration" description: "Read properties and relationships of the deviceEnrollmentConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 392
} } ```---------
v1.0 Intune Shared Deviceenrollmentconfiguration Haspayloadlinks https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-deviceenrollmentconfiguration-haspayloadlinks.md
Title: "hasPayloadLinks action" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 249
] } ```---------
v1.0 Intune Shared Deviceenrollmentconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-deviceenrollmentconfiguration-list.md
Title: "List deviceEnrollmentConfigurations" description: "List properties and relationships of the deviceEnrollmentConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 422
] } ```---------
v1.0 Intune Shared Deviceenrollmentconfiguration Setpriority https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-deviceenrollmentconfiguration-setpriority.md
Title: "setPriority action" description: "Not yet documented"-+ 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 Shared Devicemanagement Enablelegacypcmanagement https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-devicemanagement-enablelegacypcmanagement.md
Title: "enableLegacyPcManagement action" description: "Not yet documented"-+ 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 Shared Devicemanagement Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-devicemanagement-get.md
Title: "Get deviceManagement" description: "Read properties and relationships of the deviceManagement object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 918
} } ```-----------
v1.0 Intune Shared Devicemanagement Getassignedroleidsforloggedinuser https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-devicemanagement-getassignedroleidsforloggedinuser.md
Title: "getAssignedRoleIdsForLoggedInUser function" description: "Retrieves the assigned role definitions and role assignments of the currently authenticated user."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 263
} } ```-------------
v1.0 Intune Shared Devicemanagement Geteffectivepermissions https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-devicemanagement-geteffectivepermissions.md
Title: "getEffectivePermissions function" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 471
] } ```-----------
v1.0 Intune Shared Devicemanagement Getrolescopetagsbyids https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-devicemanagement-getrolescopetagsbyids.md
Title: "getRoleScopeTagsByIds function" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 231
] } ```-----------
v1.0 Intune Shared Devicemanagement Getrolescopetagsbyresource https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-devicemanagement-getrolescopetagsbyresource.md
Title: "getRoleScopeTagsByResource function" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 231
] } ```-----------
v1.0 Intune Shared Devicemanagement Sendcustomnotificationtocompanyportal https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-devicemanagement-sendcustomnotificationtocompanyportal.md
Title: "sendCustomNotificationToCompanyPortal action" description: "Not yet documented"-+ 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 Shared Devicemanagement Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-devicemanagement-update.md
Title: "Update deviceManagement" description: "Update the properties of a deviceManagement object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 855
"accountMoveCompletionDateTime": "2017-01-01T00:01:17.9006709-08:00" } ```-----------
v1.0 Intune Shared Devicemanagement Verifywindowsenrollmentautodiscovery https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-devicemanagement-verifywindowsenrollmentautodiscovery.md
Title: "verifyWindowsEnrollmentAutoDiscovery function" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 21
"value": true } ```-----------
v1.0 Intune Shared Devicemanagementderivedcredentialsettings Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-devicemanagementderivedcredentialsettings-delete.md
Title: "Delete deviceManagementDerivedCredentialSettings" description: "Deletes a deviceManagementDerivedCredentialSettings."-+ 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 Shared Devicemanagementderivedcredentialsettings Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-devicemanagementderivedcredentialsettings-get.md
Title: "Get deviceManagementDerivedCredentialSettings" description: "Read properties and relationships of the deviceManagementDerivedCredentialSettings object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 155
"id": "bc650741-0741-bc65-4107-65bc410765bc" } }-------
v1.0 Intune Shared Devicemanagementderivedcredentialsettings List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-devicemanagementderivedcredentialsettings-list.md
Title: "List deviceManagementDerivedCredentialSettingses" description: "List properties and relationships of the deviceManagementDerivedCredentialSettings objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 347
] } ```----------
v1.0 Intune Shared Devicemanagementderivedcredentialsettings Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-devicemanagementderivedcredentialsettings-update.md
Title: "Update deviceManagementDerivedCredentialSettings" description: "Update the properties of a deviceManagementDerivedCredentialSettings object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 132
"id": "bc650741-0741-bc65-4107-65bc410765bc" } ```----------
v1.0 Intune Shared Devicemanagementscript Assign https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-devicemanagementscript-assign.md
Title: "assign action" description: "Not yet documented"-+ 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 Shared Devicemanagementscript Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-devicemanagementscript-create.md
Title: "Create deviceManagementScript" description: "Create a new deviceManagementScript object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-length: 443
{ "@odata.type": "#microsoft.graph.deviceManagementScript", "displayName": "Display Name value",
- "description": "Description value",
- "runSchedule": {
- "@odata.type": "microsoft.graph.runSchedule"
- },
+ "description": "Description value",
"scriptContent": "c2NyaXB0Q29udGVudA==", "runAsAccount": "user", "enforceSignatureCheck": true,
Content-Length: 615
"runAs32Bit": true } ```----------
v1.0 Intune Shared Devicemanagementscript Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-devicemanagementscript-delete.md
Title: "Delete deviceManagementScript" description: "Deletes a deviceManagementScript."-+ 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 Shared Devicemanagementscript Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-devicemanagementscript-get.md
Title: "Get deviceManagementScript" description: "Read properties and relationships of the deviceManagementScript object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 668
} } ```----------
v1.0 Intune Shared Devicemanagementscript Haspayloadlinks https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-devicemanagementscript-haspayloadlinks.md
Title: "hasPayloadLinks action" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 249
] } ```----------
v1.0 Intune Shared Devicemanagementscript List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-devicemanagementscript-list.md
Title: "List deviceManagementScripts" description: "List properties and relationships of the deviceManagementScript objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 716
"@odata.type": "#microsoft.graph.deviceManagementScript", "id": "59ea4525-4525-59ea-2545-ea592545ea59", "displayName": "Display Name value",
- "description": "Description value",
- "runSchedule": {
- "@odata.type": "microsoft.graph.runSchedule"
- },
+ "description": "Description value",
"scriptContent": "c2NyaXB0Q29udGVudA==", "createdDateTime": "2017-01-01T00:02:43.5775965-08:00", "lastModifiedDateTime": "2017-01-01T00:00:35.1329464-08:00",
Content-Length: 716
] } ```----------
v1.0 Intune Shared Devicemanagementscript Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-devicemanagementscript-update.md
Title: "Update deviceManagementScript" description: "Update the properties of a deviceManagementScript object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-length: 443
{ "@odata.type": "#microsoft.graph.deviceManagementScript", "displayName": "Display Name value",
- "description": "Description value",
- "runSchedule": {
- "@odata.type": "microsoft.graph.runSchedule"
- },
+ "description": "Description value",
"scriptContent": "c2NyaXB0Q29udGVudA==", "runAsAccount": "user", "enforceSignatureCheck": true,
Content-Length: 615
"runAs32Bit": true } ```----------
v1.0 Intune Shared Ioslobappprovisioningconfiguration Assign https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-ioslobappprovisioningconfiguration-assign.md
Title: "assign action" description: "Not yet documented"-+ 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 Shared Ioslobappprovisioningconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-ioslobappprovisioningconfiguration-create.md
Title: "Create iosLobAppProvisioningConfiguration" description: "Create a new iosLobAppProvisioningConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 547
"version": 7 } ```---------
v1.0 Intune Shared Ioslobappprovisioningconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-ioslobappprovisioningconfiguration-delete.md
Title: "Delete iosLobAppProvisioningConfiguration" description: "Deletes a iosLobAppProvisioningConfiguration."-+ 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 Shared Ioslobappprovisioningconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-ioslobappprovisioningconfiguration-get.md
Title: "Get iosLobAppProvisioningConfiguration" description: "Read properties and relationships of the iosLobAppProvisioningConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 592
} } ```---------
v1.0 Intune Shared Ioslobappprovisioningconfiguration Haspayloadlinks https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-ioslobappprovisioningconfiguration-haspayloadlinks.md
Title: "hasPayloadLinks action" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 249
] } ```---------
v1.0 Intune Shared Ioslobappprovisioningconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-ioslobappprovisioningconfiguration-list.md
Title: "List iosLobAppProvisioningConfigurations" description: "List properties and relationships of the iosLobAppProvisioningConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 632
] } ```---------
v1.0 Intune Shared Ioslobappprovisioningconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-ioslobappprovisioningconfiguration-update.md
Title: "Update iosLobAppProvisioningConfiguration" description: "Update the properties of a iosLobAppProvisioningConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 547
"version": 7 } ```---------
v1.0 Intune Shared Iosmanagedappprotection Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-iosmanagedappprotection-create.md
Title: "Create iosManagedAppProtection" description: "Create a new iosManagedAppProtection object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 2795
"customBrowserProtocol": "Custom Browser Protocol value" } ```---------
v1.0 Intune Shared Iosmanagedappprotection Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-iosmanagedappprotection-delete.md
Title: "Delete iosManagedAppProtection" description: "Deletes a iosManagedAppProtection."-+ 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 Shared Iosmanagedappprotection Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-iosmanagedappprotection-get.md
Title: "Get iosManagedAppProtection" description: "Read properties and relationships of the iosManagedAppProtection object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 2944
} } ```---------
v1.0 Intune Shared Iosmanagedappprotection Haspayloadlinks https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-iosmanagedappprotection-haspayloadlinks.md
Title: "hasPayloadLinks action" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 249
] } ```---------
v1.0 Intune Shared Iosmanagedappprotection List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-iosmanagedappprotection-list.md
Title: "List iosManagedAppProtections" description: "List properties and relationships of the iosManagedAppProtection objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 3088
] } ```---------
v1.0 Intune Shared Iosmanagedappprotection Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-iosmanagedappprotection-update.md
Title: "Update iosManagedAppProtection" description: "Update the properties of a iosManagedAppProtection object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 2795
"customBrowserProtocol": "Custom Browser Protocol value" } ```---------
v1.0 Intune Shared Mdmwindowsinformationprotectionpolicy Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-mdmwindowsinformationprotectionpolicy-create.md
Title: "Create mdmWindowsInformationProtectionPolicy" description: "Create a new mdmWindowsInformationProtectionPolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 4139
"isAssigned": true } ```---------
v1.0 Intune Shared Mdmwindowsinformationprotectionpolicy Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-mdmwindowsinformationprotectionpolicy-delete.md
Title: "Delete mdmWindowsInformationProtectionPolicy" description: "Deletes a mdmWindowsInformationProtectionPolicy."-+ 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 Shared Mdmwindowsinformationprotectionpolicy Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-mdmwindowsinformationprotectionpolicy-get.md
Title: "Get mdmWindowsInformationProtectionPolicy" description: "Read properties and relationships of the mdmWindowsInformationProtectionPolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 4414
} } ```---------
v1.0 Intune Shared Mdmwindowsinformationprotectionpolicy Haspayloadlinks https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-mdmwindowsinformationprotectionpolicy-haspayloadlinks.md
Title: "hasPayloadLinks action" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 249
] } ```---------
v1.0 Intune Shared Mdmwindowsinformationprotectionpolicy List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-mdmwindowsinformationprotectionpolicy-list.md
Title: "List mdmWindowsInformationProtectionPolicies" description: "List properties and relationships of the mdmWindowsInformationProtectionPolicy objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 4684
] } ```---------
v1.0 Intune Shared Mdmwindowsinformationprotectionpolicy Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-mdmwindowsinformationprotectionpolicy-update.md
Title: "Update mdmWindowsInformationProtectionPolicy" description: "Update the properties of a mdmWindowsInformationProtectionPolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 4139
"isAssigned": true } ```---------
v1.0 Intune Shared Mobileapp Assign https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-mobileapp-assign.md
Title: "assign action" description: "Not yet documented"-+ 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 Shared Mobileapp Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-mobileapp-get.md
Title: "Get mobileApp" description: "Read properties and relationships of the mobileApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 949
} } ```---------
v1.0 Intune Shared Mobileapp Getmobileappcount https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-mobileapp-getmobileappcount.md
Title: "getMobileAppCount function" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 18
"value": 1 } ```---------
v1.0 Intune Shared Mobileapp Getrelatedappstates https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-mobileapp-getrelatedappstates.md
Title: "getRelatedAppStates function" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 481
] } ```---------
v1.0 Intune Shared Mobileapp Gettopmobileapps https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-mobileapp-gettopmobileapps.md
Title: "getTopMobileApps function" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 1013
] } ```---------
v1.0 Intune Shared Mobileapp Haspayloadlinks https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-mobileapp-haspayloadlinks.md
Title: "hasPayloadLinks action" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 249
] } ```---------
v1.0 Intune Shared Mobileapp List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-mobileapp-list.md
Title: "List mobileApps" description: "List properties and relationships of the mobileApp objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 1013
] } ```---------
v1.0 Intune Shared Mobileapp Updaterelationships https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-mobileapp-updaterelationships.md
Title: "updateRelationships action" description: "Not yet documented"-+ 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 Shared Mobileapptroubleshootingevent Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-mobileapptroubleshootingevent-create.md
Title: "Create mobileAppTroubleshootingEvent" description: "Describes the Create mobileAppTroubleshootingEvent method of the Microsoft Graph API for Intune, which supports multiple workflows." localization_priority: Normal-+ ms.prod: "intune" doc_type: apiPageType
Content-Length: 120
"id": "77943c10-3c10-7794-103c-9477103c9477" } ```-------------
v1.0 Intune Shared Mobileapptroubleshootingevent Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-mobileapptroubleshootingevent-delete.md
Title: "Delete mobileAppTroubleshootingEvent" description: "Describes the Delete mobileAppTroubleshootingEvent method of the Microsoft Graph API for Intune, which supports multiple workflows." 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 Shared Mobileapptroubleshootingevent Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-mobileapptroubleshootingevent-get.md
Title: "Get mobileAppTroubleshootingEvent" description: "Describes the Get mobileAppTroubleshootingEvent method of the Microsoft Graph API for Intune, which supports multiple workflows." localization_priority: Normal-+ ms.prod: "intune" doc_type: apiPageType
Content-Length: 143
} } ```-------------
v1.0 Intune Shared Mobileapptroubleshootingevent List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-mobileapptroubleshootingevent-list.md
Title: "List mobileAppTroubleshootingEvents" description: "Describes the List mobileAppTroubleshootingEvent method of the Microsoft Graph API for Intune, which supports multiple workflows." localization_priority: Normal-+ ms.prod: "intune" doc_type: apiPageType
Content-Length: 161
] } ```-------------
v1.0 Intune Shared Mobileapptroubleshootingevent Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-mobileapptroubleshootingevent-update.md
Title: "Update mobileAppTroubleshootingEvent" description: "Describes the Update mobileAppTroubleshootingEvent method of the Microsoft Graph API for Intune, which supports multiple workflows." localization_priority: Normal-+ ms.prod: "intune" doc_type: apiPageType
Content-Length: 120
"id": "77943c10-3c10-7794-103c-9477103c9477" } ```-------------
v1.0 Intune Shared Reportroot Deviceconfigurationdeviceactivity https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-reportroot-deviceconfigurationdeviceactivity.md
Title: "deviceConfigurationDeviceActivity function" description: "Metadata for the device configuration device activity report"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 123
} } ```-----------
v1.0 Intune Shared Reportroot Deviceconfigurationuseractivity https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-reportroot-deviceconfigurationuseractivity.md
Title: "deviceConfigurationUserActivity function" description: "Metadata for the device configuration user activity report"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 123
} } ```-----------
v1.0 Intune Shared Reportroot Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-reportroot-get.md
Title: "Get reportRoot" description: "Read properties and relationships of the reportRoot object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 124
} } ```-----------
v1.0 Intune Shared Reportroot Manageddeviceenrollmentabandonmentdetails https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-reportroot-manageddeviceenrollmentabandonmentdetails.md
Title: "managedDeviceEnrollmentAbandonmentDetails function" description: "Metadata for Enrollment abandonment details report"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 123
} } ```-------------
v1.0 Intune Shared Reportroot Manageddeviceenrollmentabandonmentsummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-reportroot-manageddeviceenrollmentabandonmentsummary.md
Title: "managedDeviceEnrollmentAbandonmentSummary function" description: "Metadata for Enrollment abandonment summary report"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 123
} } ```-------------
v1.0 Intune Shared Reportroot Manageddeviceenrollmentfailuredetails https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-reportroot-manageddeviceenrollmentfailuredetails.md
Title: "managedDeviceEnrollmentFailureDetails function" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 123
} } ```-----------
v1.0 Intune Shared Reportroot Manageddeviceenrollmentfailuretrends https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-reportroot-manageddeviceenrollmentfailuretrends.md
Title: "managedDeviceEnrollmentFailureTrends function" description: "Metadata for the enrollment failure trends report"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 123
} } ```-----------
v1.0 Intune Shared Reportroot Manageddeviceenrollmenttopfailures https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-reportroot-manageddeviceenrollmenttopfailures.md
Title: "managedDeviceEnrollmentTopFailures function" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 123
} } ```-----------
v1.0 Intune Shared Reportroot Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-reportroot-update.md
Title: "Update reportRoot" description: "Update the properties of a reportRoot object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 101
"id": "9ab6b3dd-b3dd-9ab6-ddb3-b69addb3b69a" } ```-----------
v1.0 Intune Shared Targetedmanagedappconfiguration Assign https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-targetedmanagedappconfiguration-assign.md
Title: "assign action" description: "Not yet documented"-+ 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 Shared Targetedmanagedappconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-targetedmanagedappconfiguration-create.md
Title: "Create targetedManagedAppConfiguration" description: "Create a new targetedManagedAppConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 622
"isAssigned": true } ```---------
v1.0 Intune Shared Targetedmanagedappconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-targetedmanagedappconfiguration-delete.md
Title: "Delete targetedManagedAppConfiguration" description: "Deletes a targetedManagedAppConfiguration."-+ 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 Shared Targetedmanagedappconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-targetedmanagedappconfiguration-get.md
Title: "Get targetedManagedAppConfiguration" description: "Read properties and relationships of the targetedManagedAppConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 679
} } ```---------
v1.0 Intune Shared Targetedmanagedappconfiguration Haspayloadlinks https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-targetedmanagedappconfiguration-haspayloadlinks.md
Title: "hasPayloadLinks action" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 249
] } ```---------
v1.0 Intune Shared Targetedmanagedappconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-targetedmanagedappconfiguration-list.md
Title: "List targetedManagedAppConfigurations" description: "List properties and relationships of the targetedManagedAppConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 731
] } ```---------
v1.0 Intune Shared Targetedmanagedappconfiguration Targetapps https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-targetedmanagedappconfiguration-targetapps.md
Title: "targetApps action" description: "Not yet documented"-+ 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 Shared Targetedmanagedappconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-targetedmanagedappconfiguration-update.md
Title: "Update targetedManagedAppConfiguration" description: "Update the properties of a targetedManagedAppConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 622
"isAssigned": true } ```---------
v1.0 Intune Shared User Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-user-create.md
Title: "Create user" description: "Create a new user object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 95
"id": "d36894ae-94ae-d368-ae94-68d3ae9468d3" } ```-----------
v1.0 Intune Shared User Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-user-delete.md
Title: "Delete user" description: "Deletes a user."-+ 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 Shared User Exportdeviceandappmanagementdata https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-user-exportdeviceandappmanagementdata.md
Title: "exportDeviceAndAppManagementData function" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 143
} } ```-----------
v1.0 Intune Shared User Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-user-get.md
Title: "Get user" description: "Read properties and relationships of the user object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 118
} } ```-----------
v1.0 Intune Shared User Geteffectivedeviceenrollmentconfigurations https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-user-geteffectivedeviceenrollmentconfigurations.md
Title: "getEffectiveDeviceEnrollmentConfigurations function" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 422
] } ```-----------
v1.0 Intune Shared User Getloggedonmanageddevices https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-user-getloggedonmanageddevices.md
Title: "getLoggedOnManagedDevices function" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 7485
] } ```-----------
v1.0 Intune Shared User Getmanagedappdiagnosticstatuses https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-user-getmanagedappdiagnosticstatuses.md
Title: "getManagedAppDiagnosticStatuses function" description: "Gets diagnostics validation status for a given user."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 249
] } ```--------------
v1.0 Intune Shared User Getmanagedapppolicies https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-user-getmanagedapppolicies.md
Title: "getManagedAppPolicies function" description: "Gets app restrictions for a given user."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 401
] } ```--------------
v1.0 Intune Shared User Getmanageddeviceswithappfailures https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-user-getmanageddeviceswithappfailures.md
Title: "getManagedDevicesWithAppFailures function" description: "Retrieves the list of devices with failed apps"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 74
] } ```-------------
v1.0 Intune Shared User List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-user-list.md
Title: "List users" description: "List properties and relationships of the user objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 136
] } ```-----------
v1.0 Intune Shared User Removealldevicesfrommanagement https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-user-removealldevicesfrommanagement.md
Title: "removeAllDevicesFromManagement action" description: "Retire all devices from management for this user"-+ 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 Shared User Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-user-update.md
Title: "Update user" description: "Update the properties of a user object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 95
"id": "d36894ae-94ae-d368-ae94-68d3ae9468d3" } ```-----------
v1.0 Intune Shared User Wipemanagedappregistrationbydevicetag https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-user-wipemanagedappregistrationbydevicetag.md
Title: "wipeManagedAppRegistrationByDeviceTag action" description: "Issues a wipe operation on an app registration with specified device tag."-+ 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 Shared User Wipemanagedappregistrationsbydevicetag https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-user-wipemanagedappregistrationsbydevicetag.md
Title: "wipeManagedAppRegistrationsByDeviceTag action" description: "Issues a wipe operation on an app registration with specified device tag."-+ 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 Shared Windowsautopilotdeploymentprofile Assign https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-windowsautopilotdeploymentprofile-assign.md
Title: "assign action" description: "Not yet documented"-+ 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 Shared Windowsautopilotdeploymentprofile Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-windowsautopilotdeploymentprofile-get.md
Title: "Get windowsAutopilotDeploymentProfile" description: "Read properties and relationships of the windowsAutopilotDeploymentProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 1409
} } ```---------
v1.0 Intune Shared Windowsautopilotdeploymentprofile Haspayloadlinks https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-windowsautopilotdeploymentprofile-haspayloadlinks.md
Title: "hasPayloadLinks action" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 249
] } ```---------
v1.0 Intune Shared Windowsdomainjoinconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-windowsdomainjoinconfiguration-create.md
Title: "Create windowsDomainJoinConfiguration" description: "Create a new windowsDomainJoinConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 667
"organizationalUnit": "Organizational Unit value" } ```-----------
v1.0 Intune Shared Windowsdomainjoinconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-windowsdomainjoinconfiguration-delete.md
Title: "Delete windowsDomainJoinConfiguration" description: "Deletes a windowsDomainJoinConfiguration."-+ 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 Shared Windowsdomainjoinconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-windowsdomainjoinconfiguration-get.md
Title: "Get windowsDomainJoinConfiguration" description: "Read properties and relationships of the windowsDomainJoinConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 560
} } ```-----------
v1.0 Intune Shared Windowsdomainjoinconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-windowsdomainjoinconfiguration-list.md
Title: "List windowsDomainJoinConfigurations" description: "List properties and relationships of the windowsDomainJoinConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 760
] } ```-----------
v1.0 Intune Shared Windowsdomainjoinconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-windowsdomainjoinconfiguration-update.md
Title: "Update windowsDomainJoinConfiguration" description: "Update the properties of a windowsDomainJoinConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 521
"activeDirectoryDomainName": "Active Directory Domain Name value" } ```-----------
v1.0 Intune Shared Windowsupdatestate Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-windowsupdatestate-create.md
Title: "Create windowsUpdateState" description: "Create a new windowsUpdateState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 553
"lastSyncDateTime": "2017-01-01T00:02:49.3205976-08:00" } ```---------
v1.0 Intune Shared Windowsupdatestate Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-windowsupdatestate-delete.md
Title: "Delete windowsUpdateState" description: "Deletes a windowsUpdateState."-+ 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 Shared Windowsupdatestate Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-windowsupdatestate-get.md
Title: "Get windowsUpdateState" description: "Read properties and relationships of the windowsUpdateState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 594
} } ```---------
v1.0 Intune Shared Windowsupdatestate List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-windowsupdatestate-list.md
Title: "List windowsUpdateStates" description: "List properties and relationships of the windowsUpdateState objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 630
] } ```---------
v1.0 Intune Shared Windowsupdatestate Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-shared-windowsupdatestate-update.md
Title: "Update windowsUpdateState" description: "Update the properties of a windowsUpdateState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Content-Length: 553
"lastSyncDateTime": "2017-01-01T00:02:49.3205976-08:00" } ```---------
v1.0 Intune Softwareupdate Windowsdriverupdateinventory Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-softwareupdate-windowsdriverupdateinventory-create.md
Title: "Create windowsDriverUpdateInventory" description: "Create a new windowsDriverUpdateInventory object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windowsDriverUpdateInventory](../resources/intune-softwareupdate-windowsdriverupdateinventory.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: 474
"deployDateTime": "2017-01-01T00:01:14.7822152-08:00" } ```-----
v1.0 Intune Softwareupdate Windowsdriverupdateinventory Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-softwareupdate-windowsdriverupdateinventory-delete.md
Title: "Delete windowsDriverUpdateInventory" description: "Deletes a windowsDriverUpdateInventory."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windowsDriverUpdateInventory](../resources/intune-softwareupdate-windowsdriverupdateinventory.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 Softwareupdate Windowsdriverupdateinventory Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-softwareupdate-windowsdriverupdateinventory-get.md
Title: "Get windowsDriverUpdateInventory" description: "Read properties and relationships of the windowsDriverUpdateInventory object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsDriverUpdateInventory](../resources/intune-softwareupdate-windowsdriverupdateinventory.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: 515
} } ```-----
v1.0 Intune Softwareupdate Windowsdriverupdateinventory List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-softwareupdate-windowsdriverupdateinventory-list.md
Title: "List windowsDriverUpdateInventories" description: "List properties and relationships of the windowsDriverUpdateInventory objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsDriverUpdateInventory](../resources/intune-softwareupdate-windowsdriverupdateinventory.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: 551
] } ```-----
v1.0 Intune Softwareupdate Windowsdriverupdateinventory Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-softwareupdate-windowsdriverupdateinventory-update.md
Title: "Update windowsDriverUpdateInventory" description: "Update the properties of a windowsDriverUpdateInventory object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windowsDriverUpdateInventory](../resources/intune-softwareupdate-windowsdriverupdateinventory.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: 474
"deployDateTime": "2017-01-01T00:01:14.7822152-08:00" } ```-----
v1.0 Intune Softwareupdate Windowsdriverupdateprofile Assign https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-softwareupdate-windowsdriverupdateprofile-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 Softwareupdate Windowsdriverupdateprofile Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-softwareupdate-windowsdriverupdateprofile-create.md
Title: "Create windowsDriverUpdateProfile" description: "Create a new windowsDriverUpdateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windowsDriverUpdateProfile](../resources/intune-softwareupdate-windowsdriverupdateprofile.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: 727
} } ```-----
v1.0 Intune Softwareupdate Windowsdriverupdateprofile Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-softwareupdate-windowsdriverupdateprofile-delete.md
Title: "Delete windowsDriverUpdateProfile" description: "Deletes a windowsDriverUpdateProfile."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windowsDriverUpdateProfile](../resources/intune-softwareupdate-windowsdriverupdateprofile.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 Softwareupdate Windowsdriverupdateprofile Executeaction https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-softwareupdate-windowsdriverupdateprofile-executeaction.md
Title: "executeAction 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: 298
} } ```-----
v1.0 Intune Softwareupdate Windowsdriverupdateprofile Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-softwareupdate-windowsdriverupdateprofile-get.md
Title: "Get windowsDriverUpdateProfile" description: "Read properties and relationships of the windowsDriverUpdateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsDriverUpdateProfile](../resources/intune-softwareupdate-windowsdriverupdateprofile.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: 782
} } ```-----
v1.0 Intune Softwareupdate Windowsdriverupdateprofile List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-softwareupdate-windowsdriverupdateprofile-list.md
Title: "List windowsDriverUpdateProfiles" description: "List properties and relationships of the windowsDriverUpdateProfile objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsDriverUpdateProfile](../resources/intune-softwareupdate-windowsdriverupdateprofile.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: 832
] } ```-----
v1.0 Intune Softwareupdate Windowsdriverupdateprofile Syncinventory https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-softwareupdate-windowsdriverupdateprofile-syncinventory.md
Title: "syncInventory action" description: "Sync the driver inventory of a WindowsDriverUpdateProfile."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Sync the driver inventory of a WindowsDriverUpdateProfile.
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Softwareupdate Windowsdriverupdateprofile Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-softwareupdate-windowsdriverupdateprofile-update.md
Title: "Update windowsDriverUpdateProfile" description: "Update the properties of a windowsDriverUpdateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windowsDriverUpdateProfile](../resources/intune-softwareupdate-windowsdriverupdateprofile.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: 727
} } ```-----
v1.0 Intune Softwareupdate Windowsdriverupdateprofileassignment Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-softwareupdate-windowsdriverupdateprofileassignment-create.md
Title: "Create windowsDriverUpdateProfileAssignment" description: "Create a new windowsDriverUpdateProfileAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windowsDriverUpdateProfileAssignment](../resources/intune-softwareupdate-windowsdriverupdateprofileassignment.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: 392
} } ```-----
v1.0 Intune Softwareupdate Windowsdriverupdateprofileassignment Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-softwareupdate-windowsdriverupdateprofileassignment-delete.md
Title: "Delete windowsDriverUpdateProfileAssignment" description: "Deletes a windowsDriverUpdateProfileAssignment."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windowsDriverUpdateProfileAssignment](../resources/intune-softwareupdate-windowsdriverupdateprofileassignment.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 Softwareupdate Windowsdriverupdateprofileassignment Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-softwareupdate-windowsdriverupdateprofileassignment-get.md
Title: "Get windowsDriverUpdateProfileAssignment" description: "Read properties and relationships of the windowsDriverUpdateProfileAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsDriverUpdateProfileAssignment](../resources/intune-softwareupdate-windowsdriverupdateprofileassignment.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: 425
} } ```-----
v1.0 Intune Softwareupdate Windowsdriverupdateprofileassignment List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-softwareupdate-windowsdriverupdateprofileassignment-list.md
Title: "List windowsDriverUpdateProfileAssignments" description: "List properties and relationships of the windowsDriverUpdateProfileAssignment objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsDriverUpdateProfileAssignment](../resources/intune-softwareupdate-windowsdriverupdateprofileassignment.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: 453
] } ```-----
v1.0 Intune Softwareupdate Windowsdriverupdateprofileassignment Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-softwareupdate-windowsdriverupdateprofileassignment-update.md
Title: "Update windowsDriverUpdateProfileAssignment" description: "Update the properties of a windowsDriverUpdateProfileAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windowsDriverUpdateProfileAssignment](../resources/intune-softwareupdate-windowsdriverupdateprofileassignment.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: 392
} } ```-----
v1.0 Intune Softwareupdate Windowsfeatureupdatecatalogitem Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-softwareupdate-windowsfeatureupdatecatalogitem-create.md
Title: "Create windowsFeatureUpdateCatalogItem" description: "Create a new windowsFeatureUpdateCatalogItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windowsFeatureUpdateCatalogItem](../resources/intune-softwareupdate-windowsfeatureupdatecatalogitem.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: 312
"version": "Version value" } ```-----
v1.0 Intune Softwareupdate Windowsfeatureupdatecatalogitem Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-softwareupdate-windowsfeatureupdatecatalogitem-delete.md
Title: "Delete windowsFeatureUpdateCatalogItem" description: "Deletes a windowsFeatureUpdateCatalogItem."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windowsFeatureUpdateCatalogItem](../resources/intune-softwareupdate-windowsfeatureupdatecatalogitem.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 Softwareupdate Windowsfeatureupdatecatalogitem Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-softwareupdate-windowsfeatureupdatecatalogitem-get.md
Title: "Get windowsFeatureUpdateCatalogItem" description: "Read properties and relationships of the windowsFeatureUpdateCatalogItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsFeatureUpdateCatalogItem](../resources/intune-softwareupdate-windowsfeatureupdatecatalogitem.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: 343
} } ```-----
v1.0 Intune Softwareupdate Windowsfeatureupdatecatalogitem List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-softwareupdate-windowsfeatureupdatecatalogitem-list.md
Title: "List windowsFeatureUpdateCatalogItems" description: "List properties and relationships of the windowsFeatureUpdateCatalogItem objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsFeatureUpdateCatalogItem](../resources/intune-softwareupdate-windowsfeatureupdatecatalogitem.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: 369
] } ```-----
v1.0 Intune Softwareupdate Windowsfeatureupdatecatalogitem Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-softwareupdate-windowsfeatureupdatecatalogitem-update.md
Title: "Update windowsFeatureUpdateCatalogItem" description: "Update the properties of a windowsFeatureUpdateCatalogItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windowsFeatureUpdateCatalogItem](../resources/intune-softwareupdate-windowsfeatureupdatecatalogitem.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: 312
"version": "Version value" } ```-----
v1.0 Intune Softwareupdate Windowsfeatureupdateprofile Assign https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-softwareupdate-windowsfeatureupdateprofile-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 Softwareupdate Windowsfeatureupdateprofile Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-softwareupdate-windowsfeatureupdateprofile-create.md
Title: "Create windowsFeatureUpdateProfile" description: "Create a new windowsFeatureUpdateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windowsFeatureUpdateProfile](../resources/intune-softwareupdate-windowsfeatureupdateprofile.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: 841
"endOfSupportDate": "2017-01-01T00:02:08.3437725-08:00" } ```-----
v1.0 Intune Softwareupdate Windowsfeatureupdateprofile Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-softwareupdate-windowsfeatureupdateprofile-delete.md
Title: "Delete windowsFeatureUpdateProfile" description: "Deletes a windowsFeatureUpdateProfile."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windowsFeatureUpdateProfile](../resources/intune-softwareupdate-windowsfeatureupdateprofile.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 Softwareupdate Windowsfeatureupdateprofile Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-softwareupdate-windowsfeatureupdateprofile-get.md
Title: "Get windowsFeatureUpdateProfile" description: "Read properties and relationships of the windowsFeatureUpdateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsFeatureUpdateProfile](../resources/intune-softwareupdate-windowsfeatureupdateprofile.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: 896
} } ```-----
v1.0 Intune Softwareupdate Windowsfeatureupdateprofile List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-softwareupdate-windowsfeatureupdateprofile-list.md
Title: "List windowsFeatureUpdateProfiles" description: "List properties and relationships of the windowsFeatureUpdateProfile objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsFeatureUpdateProfile](../resources/intune-softwareupdate-windowsfeatureupdateprofile.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: 946
] } ```-----
v1.0 Intune Softwareupdate Windowsfeatureupdateprofile Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-softwareupdate-windowsfeatureupdateprofile-update.md
Title: "Update windowsFeatureUpdateProfile" description: "Update the properties of a windowsFeatureUpdateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windowsFeatureUpdateProfile](../resources/intune-softwareupdate-windowsfeatureupdateprofile.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: 841
"endOfSupportDate": "2017-01-01T00:02:08.3437725-08:00" } ```-----
v1.0 Intune Softwareupdate Windowsfeatureupdateprofileassignment Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-softwareupdate-windowsfeatureupdateprofileassignment-create.md
Title: "Create windowsFeatureUpdateProfileAssignment" description: "Create a new windowsFeatureUpdateProfileAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windowsFeatureUpdateProfileAssignment](../resources/intune-softwareupdate-windowsfeatureupdateprofileassignment.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: 393
} } ```-----
v1.0 Intune Softwareupdate Windowsfeatureupdateprofileassignment Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-softwareupdate-windowsfeatureupdateprofileassignment-delete.md
Title: "Delete windowsFeatureUpdateProfileAssignment" description: "Deletes a windowsFeatureUpdateProfileAssignment."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windowsFeatureUpdateProfileAssignment](../resources/intune-softwareupdate-windowsfeatureupdateprofileassignment.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 Softwareupdate Windowsfeatureupdateprofileassignment Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-softwareupdate-windowsfeatureupdateprofileassignment-get.md
Title: "Get windowsFeatureUpdateProfileAssignment" description: "Read properties and relationships of the windowsFeatureUpdateProfileAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsFeatureUpdateProfileAssignment](../resources/intune-softwareupdate-windowsfeatureupdateprofileassignment.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: 426
} } ```-----
v1.0 Intune Softwareupdate Windowsfeatureupdateprofileassignment List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-softwareupdate-windowsfeatureupdateprofileassignment-list.md
Title: "List windowsFeatureUpdateProfileAssignments" description: "List properties and relationships of the windowsFeatureUpdateProfileAssignment objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsFeatureUpdateProfileAssignment](../resources/intune-softwareupdate-windowsfeatureupdateprofileassignment.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: 454
] } ```-----
v1.0 Intune Softwareupdate Windowsfeatureupdateprofileassignment Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-softwareupdate-windowsfeatureupdateprofileassignment-update.md
Title: "Update windowsFeatureUpdateProfileAssignment" description: "Update the properties of a windowsFeatureUpdateProfileAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windowsFeatureUpdateProfileAssignment](../resources/intune-softwareupdate-windowsfeatureupdateprofileassignment.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: 393
} } ```-----
v1.0 Intune Softwareupdate Windowsqualityupdatecatalogitem Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-softwareupdate-windowsqualityupdatecatalogitem-create.md
Title: "Create windowsQualityUpdateCatalogItem" description: "Create a new windowsQualityUpdateCatalogItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windowsQualityUpdateCatalogItem](../resources/intune-softwareupdate-windowsqualityupdatecatalogitem.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: 381
"isExpeditable": true } ```-----
v1.0 Intune Softwareupdate Windowsqualityupdatecatalogitem Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-softwareupdate-windowsqualityupdatecatalogitem-delete.md
Title: "Delete windowsQualityUpdateCatalogItem" description: "Deletes a windowsQualityUpdateCatalogItem."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windowsQualityUpdateCatalogItem](../resources/intune-softwareupdate-windowsqualityupdatecatalogitem.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 Softwareupdate Windowsqualityupdatecatalogitem Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-softwareupdate-windowsqualityupdatecatalogitem-get.md
Title: "Get windowsQualityUpdateCatalogItem" description: "Read properties and relationships of the windowsQualityUpdateCatalogItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsQualityUpdateCatalogItem](../resources/intune-softwareupdate-windowsqualityupdatecatalogitem.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: 416
} } ```-----
v1.0 Intune Softwareupdate Windowsqualityupdatecatalogitem List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-softwareupdate-windowsqualityupdatecatalogitem-list.md
Title: "List windowsQualityUpdateCatalogItems" description: "List properties and relationships of the windowsQualityUpdateCatalogItem objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsQualityUpdateCatalogItem](../resources/intune-softwareupdate-windowsqualityupdatecatalogitem.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: 446
] } ```-----
v1.0 Intune Softwareupdate Windowsqualityupdatecatalogitem Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-softwareupdate-windowsqualityupdatecatalogitem-update.md
Title: "Update windowsQualityUpdateCatalogItem" description: "Update the properties of a windowsQualityUpdateCatalogItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windowsQualityUpdateCatalogItem](../resources/intune-softwareupdate-windowsqualityupdatecatalogitem.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: 381
"isExpeditable": true } ```-----
v1.0 Intune Softwareupdate Windowsqualityupdateprofile Assign https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-softwareupdate-windowsqualityupdateprofile-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 Softwareupdate Windowsqualityupdateprofile Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-softwareupdate-windowsqualityupdateprofile-create.md
Title: "Create windowsQualityUpdateProfile" description: "Create a new windowsQualityUpdateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windowsQualityUpdateProfile](../resources/intune-softwareupdate-windowsqualityupdateprofile.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: 730
"deployableContentDisplayName": "Deployable Content Display Name value" } ```-----
v1.0 Intune Softwareupdate Windowsqualityupdateprofile Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-softwareupdate-windowsqualityupdateprofile-delete.md
Title: "Delete windowsQualityUpdateProfile" description: "Deletes a windowsQualityUpdateProfile."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windowsQualityUpdateProfile](../resources/intune-softwareupdate-windowsqualityupdateprofile.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 Softwareupdate Windowsqualityupdateprofile Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-softwareupdate-windowsqualityupdateprofile-get.md
Title: "Get windowsQualityUpdateProfile" description: "Read properties and relationships of the windowsQualityUpdateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsQualityUpdateProfile](../resources/intune-softwareupdate-windowsqualityupdateprofile.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: 781
} } ```-----
v1.0 Intune Softwareupdate Windowsqualityupdateprofile List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-softwareupdate-windowsqualityupdateprofile-list.md
Title: "List windowsQualityUpdateProfiles" description: "List properties and relationships of the windowsQualityUpdateProfile objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsQualityUpdateProfile](../resources/intune-softwareupdate-windowsqualityupdateprofile.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: 827
] } ```-----
v1.0 Intune Softwareupdate Windowsqualityupdateprofile Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-softwareupdate-windowsqualityupdateprofile-update.md
Title: "Update windowsQualityUpdateProfile" description: "Update the properties of a windowsQualityUpdateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windowsQualityUpdateProfile](../resources/intune-softwareupdate-windowsqualityupdateprofile.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: 730
"deployableContentDisplayName": "Deployable Content Display Name value" } ```-----
v1.0 Intune Softwareupdate Windowsqualityupdateprofileassignment Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-softwareupdate-windowsqualityupdateprofileassignment-create.md
Title: "Create windowsQualityUpdateProfileAssignment" description: "Create a new windowsQualityUpdateProfileAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windowsQualityUpdateProfileAssignment](../resources/intune-softwareupdate-windowsqualityupdateprofileassignment.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: 393
} } ```-----
v1.0 Intune Softwareupdate Windowsqualityupdateprofileassignment Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-softwareupdate-windowsqualityupdateprofileassignment-delete.md
Title: "Delete windowsQualityUpdateProfileAssignment" description: "Deletes a windowsQualityUpdateProfileAssignment."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windowsQualityUpdateProfileAssignment](../resources/intune-softwareupdate-windowsqualityupdateprofileassignment.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 Softwareupdate Windowsqualityupdateprofileassignment Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-softwareupdate-windowsqualityupdateprofileassignment-get.md
Title: "Get windowsQualityUpdateProfileAssignment" description: "Read properties and relationships of the windowsQualityUpdateProfileAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsQualityUpdateProfileAssignment](../resources/intune-softwareupdate-windowsqualityupdateprofileassignment.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: 426
} } ```-----
v1.0 Intune Softwareupdate Windowsqualityupdateprofileassignment List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-softwareupdate-windowsqualityupdateprofileassignment-list.md
Title: "List windowsQualityUpdateProfileAssignments" description: "List properties and relationships of the windowsQualityUpdateProfileAssignment objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsQualityUpdateProfileAssignment](../resources/intune-softwareupdate-windowsqualityupdateprofileassignment.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: 454
] } ```-----
v1.0 Intune Softwareupdate Windowsqualityupdateprofileassignment Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-softwareupdate-windowsqualityupdateprofileassignment-update.md
Title: "Update windowsQualityUpdateProfileAssignment" description: "Update the properties of a windowsQualityUpdateProfileAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windowsQualityUpdateProfileAssignment](../resources/intune-softwareupdate-windowsqualityupdateprofileassignment.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: 393
} } ```-----
v1.0 Intune Softwareupdate Windowsupdatecatalogitem Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-softwareupdate-windowsupdatecatalogitem-get.md
Title: "Get windowsUpdateCatalogItem" description: "Read properties and relationships of the windowsUpdateCatalogItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsUpdateCatalogItem](../resources/intune-softwareupdate-windowsupdatecatalogitem.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: 303
} } ```-----
v1.0 Intune Softwareupdate Windowsupdatecatalogitem List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-softwareupdate-windowsupdatecatalogitem-list.md
Title: "List windowsUpdateCatalogItems" description: "List properties and relationships of the windowsUpdateCatalogItem objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsUpdateCatalogItem](../resources/intune-softwareupdate-windowsupdatecatalogitem.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: 327
] } ```-----
v1.0 Intune Tem Telecomexpensemanagementpartner Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-tem-telecomexpensemanagementpartner-create.md
Title: "Create telecomExpenseManagementPartner" description: "Create a new telecomExpenseManagementPartner object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [telecomExpenseManagementPartner](../resources/intune-tem-telecomexpensemanagementpartner.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: 297
"lastConnectionDateTime": "2016-12-31T23:58:36.6670033-08:00" } ```-----
v1.0 Intune Tem Telecomexpensemanagementpartner Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-tem-telecomexpensemanagementpartner-delete.md
Title: "Delete telecomExpenseManagementPartner" description: "Deletes a telecomExpenseManagementPartner."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [telecomExpenseManagementPartner](../resources/intune-tem-telecomexpensemanagementpartner.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 Tem Telecomexpensemanagementpartner Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-tem-telecomexpensemanagementpartner-get.md
Title: "Get telecomExpenseManagementPartner" description: "Read properties and relationships of the telecomExpenseManagementPartner object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [telecomExpenseManagementPartner](../resources/intune-tem-telecomexpensemanagementpartner.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: 330
} } ```-----
v1.0 Intune Tem Telecomexpensemanagementpartner List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-tem-telecomexpensemanagementpartner-list.md
Title: "List telecomExpenseManagementPartners" description: "List properties and relationships of the telecomExpenseManagementPartner objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [telecomExpenseManagementPartner](../resources/intune-tem-telecomexpensemanagementpartner.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: 358
] } ```-----
v1.0 Intune Tem Telecomexpensemanagementpartner Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-tem-telecomexpensemanagementpartner-update.md
Title: "Update telecomExpenseManagementPartner" description: "Update the properties of a telecomExpenseManagementPartner object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [telecomExpenseManagementPartner](../resources/intune-tem-telecomexpensemanagementpartner.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: 297
"lastConnectionDateTime": "2016-12-31T23:58:36.6670033-08:00" } ```-----
v1.0 Intune Troubleshooting Applevpptokentroubleshootingevent Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-troubleshooting-applevpptokentroubleshootingevent-create.md
Title: "Create appleVppTokenTroubleshootingEvent" description: "Create a new appleVppTokenTroubleshootingEvent object."-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [appleVppTokenTroubleshootingEvent](../resources/intune-troubleshooting-applevpptokentroubleshootingevent.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: 930
"tokenId": "Token Id value" } ```----
v1.0 Intune Troubleshooting Applevpptokentroubleshootingevent Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-troubleshooting-applevpptokentroubleshootingevent-delete.md
Title: "Delete appleVppTokenTroubleshootingEvent" description: "Deletes a appleVppTokenTroubleshootingEvent."-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [appleVppTokenTroubleshootingEvent](../resources/intune-troubleshooting-applevpptokentroubleshootingevent.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 Troubleshooting Applevpptokentroubleshootingevent Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-troubleshooting-applevpptokentroubleshootingevent-get.md
Title: "Get appleVppTokenTroubleshootingEvent" description: "Read properties and relationships of the appleVppTokenTroubleshootingEvent object."-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [appleVppTokenTroubleshootingEvent](../resources/intune-troubleshooting-applevpptokentroubleshootingevent.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: 1003
} } ```----
v1.0 Intune Troubleshooting Applevpptokentroubleshootingevent List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-troubleshooting-applevpptokentroubleshootingevent-list.md
Title: "List appleVppTokenTroubleshootingEvents" description: "List properties and relationships of the appleVppTokenTroubleshootingEvent objects."-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [appleVppTokenTroubleshootingEvent](../resources/intune-troubleshooting-applevpptokentroubleshootingevent.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: 1071
] } ```----
v1.0 Intune Troubleshooting Applevpptokentroubleshootingevent Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-troubleshooting-applevpptokentroubleshootingevent-update.md
Title: "Update appleVppTokenTroubleshootingEvent" description: "Update the properties of a appleVppTokenTroubleshootingEvent object."-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [appleVppTokenTroubleshootingEvent](../resources/intune-troubleshooting-applevpptokentroubleshootingevent.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: 930
"tokenId": "Token Id value" } ```----
v1.0 Intune Troubleshooting Devicemanagementautopilotevent Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-troubleshooting-devicemanagementautopilotevent-create.md
Title: "Create deviceManagementAutopilotEvent" description: "Create a new deviceManagementAutopilotEvent object."-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceManagementAutopilotEvent](../resources/intune-troubleshooting-devicemanagementautopilotevent.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: 1594
"enrollmentFailureDetails": "Enrollment Failure Details value" } ```----
v1.0 Intune Troubleshooting Devicemanagementautopilotevent Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-troubleshooting-devicemanagementautopilotevent-delete.md
Title: "Delete deviceManagementAutopilotEvent" description: "Deletes a deviceManagementAutopilotEvent."-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceManagementAutopilotEvent](../resources/intune-troubleshooting-devicemanagementautopilotevent.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 Troubleshooting Devicemanagementautopilotevent Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-troubleshooting-devicemanagementautopilotevent-get.md
Title: "Get deviceManagementAutopilotEvent" description: "Read properties and relationships of the deviceManagementAutopilotEvent object."-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementAutopilotEvent](../resources/intune-troubleshooting-devicemanagementautopilotevent.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: 1669
} } ```----
v1.0 Intune Troubleshooting Devicemanagementautopilotevent List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-troubleshooting-devicemanagementautopilotevent-list.md
Title: "List deviceManagementAutopilotEvents" description: "List properties and relationships of the deviceManagementAutopilotEvent objects."-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceManagementAutopilotEvent](../resources/intune-troubleshooting-devicemanagementautopilotevent.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: 1739
] } ```----
v1.0 Intune Troubleshooting Devicemanagementautopilotevent Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-troubleshooting-devicemanagementautopilotevent-update.md
Title: "Update deviceManagementAutopilotEvent" description: "Update the properties of a deviceManagementAutopilotEvent object."-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementAutopilotEvent](../resources/intune-troubleshooting-devicemanagementautopilotevent.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: 1594
"enrollmentFailureDetails": "Enrollment Failure Details value" } ```----
v1.0 Intune Troubleshooting Devicemanagementautopilotpolicystatusdetail Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-troubleshooting-devicemanagementautopilotpolicystatusdetail-create.md
Title: "Create deviceManagementAutopilotPolicyStatusDetail" description: "Create a new deviceManagementAutopilotPolicyStatusDetail object."-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceManagementAutopilotPolicyStatusDetail](../resources/intune-troubleshooting-devicemanagementautopilotpolicystatusdetail.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: 363
"errorCode": 9 } ```----
v1.0 Intune Troubleshooting Devicemanagementautopilotpolicystatusdetail Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-troubleshooting-devicemanagementautopilotpolicystatusdetail-delete.md
Title: "Delete deviceManagementAutopilotPolicyStatusDetail" description: "Deletes a deviceManagementAutopilotPolicyStatusDetail."-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceManagementAutopilotPolicyStatusDetail](../resources/intune-troubleshooting-devicemanagementautopilotpolicystatusdetail.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 Troubleshooting Devicemanagementautopilotpolicystatusdetail Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-troubleshooting-devicemanagementautopilotpolicystatusdetail-get.md
Title: "Get deviceManagementAutopilotPolicyStatusDetail" description: "Read properties and relationships of the deviceManagementAutopilotPolicyStatusDetail object."-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementAutopilotPolicyStatusDetail](../resources/intune-troubleshooting-devicemanagementautopilotpolicystatusdetail.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: 398
} } ```----
v1.0 Intune Troubleshooting Devicemanagementautopilotpolicystatusdetail List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-troubleshooting-devicemanagementautopilotpolicystatusdetail-list.md
Title: "List deviceManagementAutopilotPolicyStatusDetails" description: "List properties and relationships of the deviceManagementAutopilotPolicyStatusDetail objects."-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceManagementAutopilotPolicyStatusDetail](../resources/intune-troubleshooting-devicemanagementautopilotpolicystatusdetail.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: 428
] } ```----
v1.0 Intune Troubleshooting Devicemanagementautopilotpolicystatusdetail Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-troubleshooting-devicemanagementautopilotpolicystatusdetail-update.md
Title: "Update deviceManagementAutopilotPolicyStatusDetail" description: "Update the properties of a deviceManagementAutopilotPolicyStatusDetail object."-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementAutopilotPolicyStatusDetail](../resources/intune-troubleshooting-devicemanagementautopilotpolicystatusdetail.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: 363
"errorCode": 9 } ```----
v1.0 Intune Troubleshooting Devicemanagementtroubleshootingevent Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-troubleshooting-devicemanagementtroubleshootingevent-create.md
Title: "Create deviceManagementTroubleshootingEvent" description: "Create a new deviceManagementTroubleshootingEvent object."-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceManagementTroubleshootingEvent](../resources/intune-troubleshooting-devicemanagementtroubleshootingevent.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: 901
] } ```----
v1.0 Intune Troubleshooting Devicemanagementtroubleshootingevent Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-troubleshooting-devicemanagementtroubleshootingevent-delete.md
Title: "Delete deviceManagementTroubleshootingEvent" description: "Deletes a deviceManagementTroubleshootingEvent."-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceManagementTroubleshootingEvent](../resources/intune-troubleshooting-devicemanagementtroubleshootingevent.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 Troubleshooting Devicemanagementtroubleshootingevent Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-troubleshooting-devicemanagementtroubleshootingevent-get.md
Title: "Get deviceManagementTroubleshootingEvent" description: "Read properties and relationships of the deviceManagementTroubleshootingEvent object."-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementTroubleshootingEvent](../resources/intune-troubleshooting-devicemanagementtroubleshootingevent.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: 972
} } ```----
v1.0 Intune Troubleshooting Devicemanagementtroubleshootingevent List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-troubleshooting-devicemanagementtroubleshootingevent-list.md
Title: "List deviceManagementTroubleshootingEvents" description: "List properties and relationships of the deviceManagementTroubleshootingEvent objects."-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceManagementTroubleshootingEvent](../resources/intune-troubleshooting-devicemanagementtroubleshootingevent.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: 1038
] } ```----
v1.0 Intune Troubleshooting Devicemanagementtroubleshootingevent Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-troubleshooting-devicemanagementtroubleshootingevent-update.md
Title: "Update deviceManagementTroubleshootingEvent" description: "Update the properties of a deviceManagementTroubleshootingEvent object."-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementTroubleshootingEvent](../resources/intune-troubleshooting-devicemanagementtroubleshootingevent.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: 901
] } ```----
v1.0 Intune Troubleshooting Enrollmenttroubleshootingevent Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-troubleshooting-enrollmenttroubleshootingevent-create.md
Title: "Create enrollmentTroubleshootingEvent" description: "Create a new enrollmentTroubleshootingEvent object."-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [enrollmentTroubleshootingEvent](../resources/intune-troubleshooting-enrollmenttroubleshootingevent.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: 1231
"failureReason": "Failure Reason value" } ```----
v1.0 Intune Troubleshooting Enrollmenttroubleshootingevent Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-troubleshooting-enrollmenttroubleshootingevent-delete.md
Title: "Delete enrollmentTroubleshootingEvent" description: "Deletes a enrollmentTroubleshootingEvent."-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [enrollmentTroubleshootingEvent](../resources/intune-troubleshooting-enrollmenttroubleshootingevent.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 Troubleshooting Enrollmenttroubleshootingevent Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-troubleshooting-enrollmenttroubleshootingevent-get.md
Title: "Get enrollmentTroubleshootingEvent" description: "Read properties and relationships of the enrollmentTroubleshootingEvent object."-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [enrollmentTroubleshootingEvent](../resources/intune-troubleshooting-enrollmenttroubleshootingevent.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: 1318
} } ```----
v1.0 Intune Troubleshooting Enrollmenttroubleshootingevent List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-troubleshooting-enrollmenttroubleshootingevent-list.md
Title: "List enrollmentTroubleshootingEvents" description: "List properties and relationships of the enrollmentTroubleshootingEvent objects."-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [enrollmentTroubleshootingEvent](../resources/intune-troubleshooting-enrollmenttroubleshootingevent.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: 1400
] } ```----
v1.0 Intune Troubleshooting Enrollmenttroubleshootingevent Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-troubleshooting-enrollmenttroubleshootingevent-update.md
Title: "Update enrollmentTroubleshootingEvent" description: "Update the properties of a enrollmentTroubleshootingEvent object."-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [enrollmentTroubleshootingEvent](../resources/intune-troubleshooting-enrollmenttroubleshootingevent.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: 1231
"failureReason": "Failure Reason value" } ```----
v1.0 Intune Troubleshooting Mobileappintentandstate Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-troubleshooting-mobileappintentandstate-create.md
Title: "Create mobileAppIntentAndState" description: "Create a new mobileAppIntentAndState object."-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [mobileAppIntentAndState](../resources/intune-troubleshooting-mobileappintentandstate.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: 880
] } ```----
v1.0 Intune Troubleshooting Mobileappintentandstate Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-troubleshooting-mobileappintentandstate-delete.md
Title: "Delete mobileAppIntentAndState" description: "Deletes a mobileAppIntentAndState."-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [mobileAppIntentAndState](../resources/intune-troubleshooting-mobileappintentandstate.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 Troubleshooting Mobileappintentandstate Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-troubleshooting-mobileappintentandstate-get.md
Title: "Get mobileAppIntentAndState" description: "Read properties and relationships of the mobileAppIntentAndState object."-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [mobileAppIntentAndState](../resources/intune-troubleshooting-mobileappintentandstate.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: 943
} } ```----
v1.0 Intune Troubleshooting Mobileappintentandstate List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-troubleshooting-mobileappintentandstate-list.md
Title: "List mobileAppIntentAndStates" description: "List properties and relationships of the mobileAppIntentAndState objects."-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [mobileAppIntentAndState](../resources/intune-troubleshooting-mobileappintentandstate.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: 1001
] } ```----
v1.0 Intune Troubleshooting Mobileappintentandstate Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-troubleshooting-mobileappintentandstate-update.md
Title: "Update mobileAppIntentAndState" description: "Update the properties of a mobileAppIntentAndState object."-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [mobileAppIntentAndState](../resources/intune-troubleshooting-mobileappintentandstate.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: 880
] } ```----
v1.0 Intune Troubleshooting User Getmanageddeviceswithfailedorpendingapps https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-troubleshooting-user-getmanageddeviceswithfailedorpendingapps.md
Title: "getManagedDevicesWithFailedOrPendingApps function" description: "Retrieves the list of devices with failed or pending apps"-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Retrieves the list of devices with failed or pending apps
-## Prerequisites
+## Permissions
One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)|
Content-Length: 187
] } ```----
v1.0 Intune Unlock Windowsdefenderapplicationcontrolsupplementalpolicy Assign https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-unlock-windowsdefenderapplicationcontrolsupplementalpolicy-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 Unlock Windowsdefenderapplicationcontrolsupplementalpolicy Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-unlock-windowsdefenderapplicationcontrolsupplementalpolicy-create.md
Title: "Create windowsDefenderApplicationControlSupplementalPolicy" description: "Create a new windowsDefenderApplicationControlSupplementalPolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windowsDefenderApplicationControlSupplementalPolicy](../resources/intune-unlock-windowsdefenderapplicationcontrolsupplementalpolicy.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: 517
] } ```-----
v1.0 Intune Unlock Windowsdefenderapplicationcontrolsupplementalpolicy Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-unlock-windowsdefenderapplicationcontrolsupplementalpolicy-delete.md
Title: "Delete windowsDefenderApplicationControlSupplementalPolicy" description: "Deletes a windowsDefenderApplicationControlSupplementalPolicy."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windowsDefenderApplicationControlSupplementalPolicy](../resources/intune-unlock-windowsdefenderapplicationcontrolsupplementalpolicy.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 Unlock Windowsdefenderapplicationcontrolsupplementalpolicy Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-unlock-windowsdefenderapplicationcontrolsupplementalpolicy-get.md
Title: "Get windowsDefenderApplicationControlSupplementalPolicy" description: "Read properties and relationships of the windowsDefenderApplicationControlSupplementalPolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsDefenderApplicationControlSupplementalPolicy](../resources/intune-unlock-windowsdefenderapplicationcontrolsupplementalpolicy.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: 560
} } ```-----
v1.0 Intune Unlock Windowsdefenderapplicationcontrolsupplementalpolicy List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-unlock-windowsdefenderapplicationcontrolsupplementalpolicy-list.md
Title: "List windowsDefenderApplicationControlSupplementalPolicies" description: "List properties and relationships of the windowsDefenderApplicationControlSupplementalPolicy objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsDefenderApplicationControlSupplementalPolicy](../resources/intune-unlock-windowsdefenderapplicationcontrolsupplementalpolicy.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: 598
] } ```-----
v1.0 Intune Unlock Windowsdefenderapplicationcontrolsupplementalpolicy Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-unlock-windowsdefenderapplicationcontrolsupplementalpolicy-update.md
Title: "Update windowsDefenderApplicationControlSupplementalPolicy" description: "Update the properties of a windowsDefenderApplicationControlSupplementalPolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windowsDefenderApplicationControlSupplementalPolicy](../resources/intune-unlock-windowsdefenderapplicationcontrolsupplementalpolicy.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: 517
] } ```-----
v1.0 Intune Unlock Windowsdefenderapplicationcontrolsupplementalpolicyassignment Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-unlock-windowsdefenderapplicationcontrolsupplementalpolicyassignment-create.md
Title: "Create windowsDefenderApplicationControlSupplementalPolicyAssignment" description: "Create a new windowsDefenderApplicationControlSupplementalPolicyAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windowsDefenderApplicationControlSupplementalPolicyAssignment](../resources/intune-unlock-windowsdefenderapplicationcontrolsupplementalpolicyassignment.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: 417
} } ```-----
v1.0 Intune Unlock Windowsdefenderapplicationcontrolsupplementalpolicyassignment Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-unlock-windowsdefenderapplicationcontrolsupplementalpolicyassignment-delete.md
Title: "Delete windowsDefenderApplicationControlSupplementalPolicyAssignment" description: "Deletes a windowsDefenderApplicationControlSupplementalPolicyAssignment."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windowsDefenderApplicationControlSupplementalPolicyAssignment](../resources/intune-unlock-windowsdefenderapplicationcontrolsupplementalpolicyassignment.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 Unlock Windowsdefenderapplicationcontrolsupplementalpolicyassignment Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-unlock-windowsdefenderapplicationcontrolsupplementalpolicyassignment-get.md
Title: "Get windowsDefenderApplicationControlSupplementalPolicyAssignment" description: "Read properties and relationships of the windowsDefenderApplicationControlSupplementalPolicyAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsDefenderApplicationControlSupplementalPolicyAssignment](../resources/intune-unlock-windowsdefenderapplicationcontrolsupplementalpolicyassignment.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 Unlock Windowsdefenderapplicationcontrolsupplementalpolicyassignment List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-unlock-windowsdefenderapplicationcontrolsupplementalpolicyassignment-list.md
Title: "List windowsDefenderApplicationControlSupplementalPolicyAssignments" description: "List properties and relationships of the windowsDefenderApplicationControlSupplementalPolicyAssignment objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsDefenderApplicationControlSupplementalPolicyAssignment](../resources/intune-unlock-windowsdefenderapplicationcontrolsupplementalpolicyassignment.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: 478
] } ```-----
v1.0 Intune Unlock Windowsdefenderapplicationcontrolsupplementalpolicyassignment Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-unlock-windowsdefenderapplicationcontrolsupplementalpolicyassignment-update.md
Title: "Update windowsDefenderApplicationControlSupplementalPolicyAssignment" description: "Update the properties of a windowsDefenderApplicationControlSupplementalPolicyAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windowsDefenderApplicationControlSupplementalPolicyAssignment](../resources/intune-unlock-windowsdefenderapplicationcontrolsupplementalpolicyassignment.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: 417
} } ```-----
v1.0 Intune Unlock Windowsdefenderapplicationcontrolsupplementalpolicydeploymentstatus Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-unlock-windowsdefenderapplicationcontrolsupplementalpolicydeploymentstatus-create.md
Title: "Create windowsDefenderApplicationControlSupplementalPolicyDeploymentStatus" description: "Create a new windowsDefenderApplicationControlSupplementalPolicyDeploymentStatus object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windowsDefenderApplicationControlSupplementalPolicyDeploymentStatus](../resources/intune-unlock-windowsdefenderapplicationcontrolsupplementalpolicydeploymentstatus.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: 535
"policyVersion": "Policy Version value" } ```-----
v1.0 Intune Unlock Windowsdefenderapplicationcontrolsupplementalpolicydeploymentstatus Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-unlock-windowsdefenderapplicationcontrolsupplementalpolicydeploymentstatus-delete.md
Title: "Delete windowsDefenderApplicationControlSupplementalPolicyDeploymentStatus" description: "Deletes a windowsDefenderApplicationControlSupplementalPolicyDeploymentStatus."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windowsDefenderApplicationControlSupplementalPolicyDeploymentStatus](../resources/intune-unlock-windowsdefenderapplicationcontrolsupplementalpolicydeploymentstatus.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 Unlock Windowsdefenderapplicationcontrolsupplementalpolicydeploymentstatus Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-unlock-windowsdefenderapplicationcontrolsupplementalpolicydeploymentstatus-get.md
Title: "Get windowsDefenderApplicationControlSupplementalPolicyDeploymentStatus" description: "Read properties and relationships of the windowsDefenderApplicationControlSupplementalPolicyDeploymentStatus object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsDefenderApplicationControlSupplementalPolicyDeploymentStatus](../resources/intune-unlock-windowsdefenderapplicationcontrolsupplementalpolicydeploymentstatus.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: 576
} } ```-----
v1.0 Intune Unlock Windowsdefenderapplicationcontrolsupplementalpolicydeploymentstatus List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-unlock-windowsdefenderapplicationcontrolsupplementalpolicydeploymentstatus-list.md
Title: "List windowsDefenderApplicationControlSupplementalPolicyDeploymentStatuses" description: "List properties and relationships of the windowsDefenderApplicationControlSupplementalPolicyDeploymentStatus objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsDefenderApplicationControlSupplementalPolicyDeploymentStatus](../resources/intune-unlock-windowsdefenderapplicationcontrolsupplementalpolicydeploymentstatus.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: 612
] } ```-----
v1.0 Intune Unlock Windowsdefenderapplicationcontrolsupplementalpolicydeploymentstatus Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-unlock-windowsdefenderapplicationcontrolsupplementalpolicydeploymentstatus-update.md
Title: "Update windowsDefenderApplicationControlSupplementalPolicyDeploymentStatus" description: "Update the properties of a windowsDefenderApplicationControlSupplementalPolicyDeploymentStatus object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windowsDefenderApplicationControlSupplementalPolicyDeploymentStatus](../resources/intune-unlock-windowsdefenderapplicationcontrolsupplementalpolicydeploymentstatus.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: 535
"policyVersion": "Policy Version value" } ```-----
v1.0 Intune Unlock Windowsdefenderapplicationcontrolsupplementalpolicydeploymentsummary Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-unlock-windowsdefenderapplicationcontrolsupplementalpolicydeploymentsummary-get.md
Title: "Get windowsDefenderApplicationControlSupplementalPolicyDeploymentSummary" description: "Read properties and relationships of the windowsDefenderApplicationControlSupplementalPolicyDeploymentSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsDefenderApplicationControlSupplementalPolicyDeploymentSummary](../resources/intune-unlock-windowsdefenderapplicationcontrolsupplementalpolicydeploymentsummary.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 Unlock Windowsdefenderapplicationcontrolsupplementalpolicydeploymentsummary Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-unlock-windowsdefenderapplicationcontrolsupplementalpolicydeploymentsummary-update.md
Title: "Update windowsDefenderApplicationControlSupplementalPolicyDeploymentSummary" description: "Update the properties of a windowsDefenderApplicationControlSupplementalPolicyDeploymentSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windowsDefenderApplicationControlSupplementalPolicyDeploymentSummary](../resources/intune-unlock-windowsdefenderapplicationcontrolsupplementalpolicydeploymentsummary.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
"failedDeviceCount": 1 } ```-----
v1.0 Intune Wip Intunebrandingprofile Assign https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-wip-intunebrandingprofile-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 Wip Intunebrandingprofile Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-wip-intunebrandingprofile-create.md
Title: "Create intuneBrandingProfile" description: "Create a new intuneBrandingProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [intuneBrandingProfile](../resources/intune-wip-intunebrandingprofile.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: 2188
] } ```-----
v1.0 Intune Wip Intunebrandingprofile Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-wip-intunebrandingprofile-delete.md
Title: "Delete intuneBrandingProfile" description: "Deletes a intuneBrandingProfile."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [intuneBrandingProfile](../resources/intune-wip-intunebrandingprofile.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 Wip Intunebrandingprofile Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-wip-intunebrandingprofile-get.md
Title: "Get intuneBrandingProfile" description: "Read properties and relationships of the intuneBrandingProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [intuneBrandingProfile](../resources/intune-wip-intunebrandingprofile.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: 2327
} } ```-----
v1.0 Intune Wip Intunebrandingprofile List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-wip-intunebrandingprofile-list.md
Title: "List intuneBrandingProfiles" description: "List properties and relationships of the intuneBrandingProfile objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [intuneBrandingProfile](../resources/intune-wip-intunebrandingprofile.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: 2461
] } ```-----
v1.0 Intune Wip Intunebrandingprofile Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-wip-intunebrandingprofile-update.md
Title: "Update intuneBrandingProfile" description: "Update the properties of a intuneBrandingProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [intuneBrandingProfile](../resources/intune-wip-intunebrandingprofile.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: 2188
] } ```-----
v1.0 Intune Wip Intunebrandingprofileassignment Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-wip-intunebrandingprofileassignment-create.md
Title: "Create intuneBrandingProfileAssignment" description: "Create a new intuneBrandingProfileAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [intuneBrandingProfileAssignment](../resources/intune-wip-intunebrandingprofileassignment.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 Wip Intunebrandingprofileassignment Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-wip-intunebrandingprofileassignment-delete.md
Title: "Delete intuneBrandingProfileAssignment" description: "Deletes a intuneBrandingProfileAssignment."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [intuneBrandingProfileAssignment](../resources/intune-wip-intunebrandingprofileassignment.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 Wip Intunebrandingprofileassignment Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-wip-intunebrandingprofileassignment-get.md
Title: "Get intuneBrandingProfileAssignment" description: "Read properties and relationships of the intuneBrandingProfileAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [intuneBrandingProfileAssignment](../resources/intune-wip-intunebrandingprofileassignment.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: 474
} } ```-----
v1.0 Intune Wip Intunebrandingprofileassignment List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-wip-intunebrandingprofileassignment-list.md
Title: "List intuneBrandingProfileAssignments" description: "List properties and relationships of the intuneBrandingProfileAssignment objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [intuneBrandingProfileAssignment](../resources/intune-wip-intunebrandingprofileassignment.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: 504
] } ```-----
v1.0 Intune Wip Intunebrandingprofileassignment Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-wip-intunebrandingprofileassignment-update.md
Title: "Update intuneBrandingProfileAssignment" description: "Update the properties of a intuneBrandingProfileAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [intuneBrandingProfileAssignment](../resources/intune-wip-intunebrandingprofileassignment.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 Wip Windowsinformationprotectionapplearningsummary Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-wip-windowsinformationprotectionapplearningsummary-create.md
Title: "Create windowsInformationProtectionAppLearningSummary" description: "Create a new windowsInformationProtectionAppLearningSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windowsInformationProtectionAppLearningSummary](../resources/intune-wip-windowsinformationprotectionapplearningsummary.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: 240
"deviceCount": 11 } ```-----
v1.0 Intune Wip Windowsinformationprotectionapplearningsummary Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-wip-windowsinformationprotectionapplearningsummary-delete.md
Title: "Delete windowsInformationProtectionAppLearningSummary" description: "Deletes a windowsInformationProtectionAppLearningSummary."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windowsInformationProtectionAppLearningSummary](../resources/intune-wip-windowsinformationprotectionapplearningsummary.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 Wip Windowsinformationprotectionapplearningsummary Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-wip-windowsinformationprotectionapplearningsummary-get.md
Title: "Get windowsInformationProtectionAppLearningSummary" description: "Read properties and relationships of the windowsInformationProtectionAppLearningSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsInformationProtectionAppLearningSummary](../resources/intune-wip-windowsinformationprotectionapplearningsummary.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 Wip Windowsinformationprotectionapplearningsummary List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-wip-windowsinformationprotectionapplearningsummary-list.md
Title: "List windowsInformationProtectionAppLearningSummaries" description: "List properties and relationships of the windowsInformationProtectionAppLearningSummary objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsInformationProtectionAppLearningSummary](../resources/intune-wip-windowsinformationprotectionapplearningsummary.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: 293
] } ```-----
v1.0 Intune Wip Windowsinformationprotectionapplearningsummary Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-wip-windowsinformationprotectionapplearningsummary-update.md
Title: "Update windowsInformationProtectionAppLearningSummary" description: "Update the properties of a windowsInformationProtectionAppLearningSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windowsInformationProtectionAppLearningSummary](../resources/intune-wip-windowsinformationprotectionapplearningsummary.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: 240
"deviceCount": 11 } ```-----
v1.0 Intune Wip Windowsinformationprotectionnetworklearningsummary Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-wip-windowsinformationprotectionnetworklearningsummary-create.md
Title: "Create windowsInformationProtectionNetworkLearningSummary" description: "Create a new windowsInformationProtectionNetworkLearningSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windowsInformationProtectionNetworkLearningSummary](../resources/intune-wip-windowsinformationprotectionnetworklearningsummary.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: 186
"deviceCount": 11 } ```-----
v1.0 Intune Wip Windowsinformationprotectionnetworklearningsummary Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-wip-windowsinformationprotectionnetworklearningsummary-delete.md
Title: "Delete windowsInformationProtectionNetworkLearningSummary" description: "Deletes a windowsInformationProtectionNetworkLearningSummary."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windowsInformationProtectionNetworkLearningSummary](../resources/intune-wip-windowsinformationprotectionnetworklearningsummary.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 Wip Windowsinformationprotectionnetworklearningsummary Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-wip-windowsinformationprotectionnetworklearningsummary-get.md
Title: "Get windowsInformationProtectionNetworkLearningSummary" description: "Read properties and relationships of the windowsInformationProtectionNetworkLearningSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsInformationProtectionNetworkLearningSummary](../resources/intune-wip-windowsinformationprotectionnetworklearningsummary.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: 213
} } ```-----
v1.0 Intune Wip Windowsinformationprotectionnetworklearningsummary List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-wip-windowsinformationprotectionnetworklearningsummary-list.md
Title: "List windowsInformationProtectionNetworkLearningSummaries" description: "List properties and relationships of the windowsInformationProtectionNetworkLearningSummary objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsInformationProtectionNetworkLearningSummary](../resources/intune-wip-windowsinformationprotectionnetworklearningsummary.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: 235
] } ```-----
v1.0 Intune Wip Windowsinformationprotectionnetworklearningsummary Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/intune-wip-windowsinformationprotectionnetworklearningsummary-update.md
Title: "Update windowsInformationProtectionNetworkLearningSummary" description: "Update the properties of a windowsInformationProtectionNetworkLearningSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windowsInformationProtectionNetworkLearningSummary](../resources/intune-wip-windowsinformationprotectionnetworklearningsummary.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: 186
"deviceCount": 11 } ```-----
v1.0 Linkedresource Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/linkedresource-delete.md
One of the following permissions is required to call this API. To learn more, in
|:|:| |Delegated (work or school account)|Tasks.ReadWrite| |Delegated (personal Microsoft account)|Tasks.ReadWrite|
-|Application|Not supported|
+|Application| Tasks.ReadWrite.All |
## HTTP request
v1.0 Linkedresource Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/linkedresource-get.md
One of the following permissions is required to call this API. To learn more, in
|Permission type|Permissions (from least to most privileged)| |:|:|
-|Delegated (work or school account)|Tasks.ReadWrite|
-|Delegated (personal Microsoft account)|Tasks.ReadWrite|
-|Application|Not supported|
+|Delegated (work or school account)|Tasks.Read, Tasks.ReadWrite|
+|Delegated (personal Microsoft account)|Tasks.Read, Tasks.ReadWrite|
+|Application|Tasks.Read.All, Tasks.ReadWrite.All|
## HTTP request
v1.0 Linkedresource Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/linkedresource-update.md
One of the following permissions is required to call this API. To learn more, in
|:|:| |Delegated (work or school account)|Tasks.ReadWrite| |Delegated (personal Microsoft account)|Tasks.ReadWrite|
-|Application|Not supported|
+|Application|Tasks.ReadWrite.All|
## HTTP request
v1.0 Meetingattendancereport Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/meetingattendancereport-get.md
GET /users/{userId}/onlineMeetings/{meetingId}/meetingAttendanceReport
> >- The `/meetingAttendanceReport` path is deprecated. Going forward, use the `/attendanceReports` path to retrieve attendance reports for an online meeting. >- The `/meetingAttendanceReport` path will remain in beta for backward compatibility. However, to get the same response, you need to add the `expand` query option. For details, see the [Optional query parameters](#optional-query-parameters) section.
+>- The **attendanceRecords** property does not return information about a breakout room.
## Optional query parameters
v1.0 Microsoftauthenticatorauthenticationmethodconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/microsoftauthenticatorauthenticationmethodconfiguration-delete.md
Title: "Delete microsoftAuthenticatorAuthenticationMethodConfiguration" description: "Deletes a microsoftAuthenticatorAuthenticationMethodConfiguration object."-+ ms.localizationpriority: medium ms.prod: "identity-and-sign-in" doc_type: apiPageType
v1.0 Microsoftauthenticatorauthenticationmethodconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/microsoftauthenticatorauthenticationmethodconfiguration-get.md
Title: "Get microsoftAuthenticatorAuthenticationMethodConfiguration" description: "Read the properties and relationships of a microsoftAuthenticatorAuthenticationMethodConfiguration object."-+ ms.localizationpriority: medium ms.prod: "identity-and-sign-in" doc_type: apiPageType
Content-Type: application/json
"authenticationMode": "any", } ],
+ "excludeTargets": [],
+ "isSoftwareOathEnabled": true,
"featureSettings": { "numberMatchingRequiredState" : { "state": "enabled",
v1.0 Microsoftauthenticatorauthenticationmethodconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/microsoftauthenticatorauthenticationmethodconfiguration-update.md
Title: "Update microsoftAuthenticatorAuthenticationMethodConfiguration" description: "Update the properties of a microsoftAuthenticatorAuthenticationMethodConfiguration object."-+ ms.localizationpriority: medium ms.prod: "identity-and-sign-in" doc_type: apiPageType
v1.0 Onlinemeeting Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/onlinemeeting-get.md
The following is an example of the response.
``` ### Example 3: Retrieve an online meeting by joinWebUrl
-You can retrieve meeting information via JoinWebUrl by using either a user or application token. This option is available to support use cases where the meeting ID isn't known but the JoinWebUrl is, such as when a user creates a meeting (for example in the Microsoft Teams client), and a seperate application needs to retrieve meeting details as a follow-up action.
+You can retrieve meeting information via JoinWebUrl by using either a user or application token. This option is available to support use cases where the meeting ID isn't known but the JoinWebUrl is, such as when a user creates a meeting (for example in the Microsoft Teams client), and a separate application needs to retrieve meeting details as a follow-up action.
#### Request
The following is an example of the response.
``` ### Example 4: Retrieve an online meeting by joinMeetingId+ You can retrieve meeting information via the **joinMeetingId** by using either a user or an application token. #### Request
-The following request uses a user token.
-<!-- { "blockType": "ignored" } -->
-```http
+The following is an example of a request that uses a user (delegated) token.
+
+# [HTTP](#tab/http)
+<!-- {
+ "blockType": "request",
+ "name": "get-an-online-meeting-by-joinmeetingid"
+} -->
+```msgraph-interactive
GET https://graph.microsoft.com/beta/me/onlineMeetings?$filter=joinMeetingIdSettings/joinMeetingId%20eq%20'1234567890' ```
+# [C#](#tab/csharp)
+
+# [JavaScript](#tab/javascript)
+
+# [Java](#tab/java)
+
+# [Go](#tab/go)
+
+# [PowerShell](#tab/powershell)
+
+# [PHP](#tab/php)
++++ The following request uses an app token. <!-- { "blockType": "ignored" } --> ```http
GET https://graph.microsoft.com/beta/users/dc17674c-81d9-4adb-bfb2-8f6a442e4622/
The following is an example of the response.
-> **Note:** The response object shown here might be shortened for readability.
+> **Note:** The response object shown here might be shortened for readability.
+
+<!-- {
+ "blockType": "response",
+ "truncated": true,
+ "@odata.type": "microsoft.graph.onlineMeeting"
+} -->
+```http
+HTTP/1.1 200 OK
+Content-Type: application/json
-```json
{ "value": [ {
v1.0 Onpremisesdirectorysynchronization Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/onpremisesdirectorysynchronization-get.md
If successful, this method returns a `200 OK` response code and an [onPremisesDi
### Request The following is an example of a request.+
+# [HTTP](#tab/http)
<!-- { "blockType": "request", "name": "get_onpremisesdirectorysynchronization"
The following is an example of a request.
GET https://graph.microsoft.com/beta/directory/onPremisesSynchronization/{id} ```
+# [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
v1.0 Onpremisesdirectorysynchronization Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/onpremisesdirectorysynchronization-update.md
If successful, this method returns a `204 No Content` response code.
### Request The following is an example of a request.+
+# [HTTP](#tab/http)
<!-- { "blockType": "request", "name": "update_onpremisesdirectorysynchronization"
Content-length: 293
} ```
+# [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
v1.0 Opentypeextension Post Opentypeextension https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/opentypeextension-post-opentypeextension.md
POST /groups/{groupId}/events/{eventId}/extensions
POST /groups/{groupId}/threads/{threadId}/posts/{postId}/extensions POST /users/{userId|userPrincipalName}/messages/{messageId}/extensions POST /organization/{organizationId}/extensions
-POST /users/{userIdd|userPrincipalName}/contacts/{contactId}/extensions
+POST /users/{userId|userPrincipalName}/contacts/{contactId}/extensions
POST /users/{userId|userPrincipalName}/extensions POST /users/{userId|userPrincipalName}/todo/lists/{listId}/tasks/{taskId}/extensions POST /users/{userId|userPrincipalName}/todo/lists/{listId}/extensions
v1.0 Opentypeextension Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/opentypeextension-update.md
The data in the JSON payload can be primitive types, or arrays of primitive type
| @odata.type | microsoft.graph.openTypeExtension | | extensionName | Unique string |
+Use this operation to either store data in the open extension property, update the stored data, or delete the existing data.
+ - To update any property in the open extension object, you must specify *all* properties in the request body; otherwise, Microsoft Graph will delete the unspecified properties.
+ - To delete data from a property in the open extension object, set its value to `null`.
+ - To delete a property from the open extension object, don't pass it in the PATCH request body, and Microsoft Graph will delete it.
+ - To delete data from all properties in the open extension object but keep the open extension object, update the values of the properties to `null`.
+ ## Response If successful, this method returns a `200 OK` response code and the updated
v1.0 Organization Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/organization-get.md
Content-type: application/json
"marketingNotificationEmails": [], "onPremisesLastSyncDateTime": null, "onPremisesSyncEnabled": null,
+ "partnerTenantType": "ResellerPartnerDelegatedAdmin",
"postalCode": null, "preferredLanguage": "en", "securityComplianceNotificationMails": [],
v1.0 Organization List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/organization-list.md
Content-type: application/json
"marketingNotificationEmails": [], "onPremisesLastSyncDateTime": null, "onPremisesSyncEnabled": null,
+ "partnerTenantType": "ResellerPartnerDelegatedAdmin",
"postalCode": null, "preferredLanguage": "en", "securityComplianceNotificationMails": [],
v1.0 Planner List Buckets https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/planner-list-buckets.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.Read, Tasks.ReadWrite, Group.Read.All, Group.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application | Tasks.Read.All, Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Planner List Plans https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/planner-list-plans.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.Read, Tasks.ReadWrite, Group.Read.All, Group.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application | Tasks.Read.All, Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Planner List Tasks https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/planner-list-tasks.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.Read, Tasks.ReadWrite, Group.Read.All, Group.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application | Tasks.Read.All, Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Planner Post Buckets https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/planner-post-buckets.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.ReadWrite, Group.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application | Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Planner Post Plans https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/planner-post-plans.md
One of the following permissions is required to call this API. To learn more, in
| Permission type | Permissions (from least to most privileged) | | :- | : |
-| Delegated (work or school account) | Tasks.ReadWrite, Group.ReadWrite.All |
+| Delegated (work or school account) | Tasks.ReadWrite, Group.ReadWrite.All |
| Delegated (personal Microsoft account) | Not supported. |
-| Application | Not supported. |
+| Application | Tasks.ReadWrite.All |
## HTTP request
POST /planner/plans
## Request body In the request body, supply a JSON representation of [plannerPlan](../resources/plannerplan.md) object.
-The **plannerPlan** container property must be set.
+
+The following table shows the properties that are required when you create a [plannerPlan](../resources/plannerplan.md).
+
+|Property|Type|Description|
+|:|:|:|
+|container|[plannerPlanContainer](../resources/plannerplancontainer.md)|Identifies the container of the plan. Specify only the **url**, the **containerId** and **type**, or all properties. After it is set, this property canΓÇÖt be updated.|
+|title|String|The title of the plan.|
>**Note:** If the container is a Microsoft 365 group, the user who is creating the plan must be a member of the group that will contain the plan. When you create a new group by using [Create group](../api/group-post-groups.md), you are not added to the group as a member. After the group is created, add yourself as a member by using [group post members](../api/group-post-members.md). ## Response
-If successful, this method returns `201 Created` response code and [plannerPlan](../resources/plannerplan.md) object in the response body.
+If successful, this method returns a `201 Created` response code and a [plannerPlan](../resources/plannerplan.md) object in the response body.
-This method can return any of the [HTTP status codes](/graph/errors). The most common errors that apps should handle for this method are the 400, 403 and 404 responses. For more information about these errors, see [Common Planner error conditions](../resources/planner-overview.md#common-planner-error-conditions).
+This method can return any of the [HTTP status codes](/graph/errors). The most common errors that apps should handle for this method are the 400, 403, and 404 responses. For more information about these errors, see [Common Planner error conditions](../resources/planner-overview.md#common-planner-error-conditions).
## Example ### Request
-Here is an example of the request.
+The following is an example of the request.
# [HTTP](#tab/http) <!-- {
Content-type: application/json
### Response
-Here 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.
+>**Note:** The response object shown here might be shortened for readability.
<!-- { "blockType": "response", "truncated": true,
Content-type: application/json
] } -->--
v1.0 Planner Post Rosters https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/planner-post-rosters.md
One of the following permissions is required to call this API. To learn more, in
|:|:| |Delegated (work or school account)|Tasks.ReadWrite| |Delegated (personal Microsoft account)|Not supported.|
-|Application|Not supported.|
+|Application| Tasks.ReadWrite.All |
## HTTP request
v1.0 Planner Post Tasks https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/planner-post-tasks.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.ReadWrite, Group.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application | Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Plannerassignedtotaskboardtaskformat Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/plannerassignedtotaskboardtaskformat-get.md
Namespace: microsoft.graph
[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] Retrieve the properties and relationships of **plannerAssignedToTaskBoardTaskFormat** 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).
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.Read, Tasks.ReadWrite, Group.Read.All, Group.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application | Tasks.Read.All, Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } --> ```http GET /planner/tasks/{id}/assignedToTaskBoardFormat ```+ ## Request headers | Name |Description| |:-|:-|
Do not supply a request body for this method.
## Response
-If successful, this method returns a `200 OK` response code and [plannerAssignedToTaskBoardTaskFormat](../resources/plannerassignedtotaskboardtaskformat.md) object in the response body.
+If successful, this method returns a `200 OK` response code and a [plannerAssignedToTaskBoardTaskFormat](../resources/plannerassignedtotaskboardtaskformat.md) object in the response body.
This method can return any of the [HTTP status codes](/graph/errors). The most common errors that apps should handle for this method are the 403 and 404 responses. For more information about these errors, see [Common Planner error conditions](../resources/planner-overview.md#common-planner-error-conditions). ## Example
-##### Request
-Here is an example of the request.
+### Request
+The following is an example of the request.
# [HTTP](#tab/http) <!-- {
GET https://graph.microsoft.com/beta/planner/tasks/01gzSlKkIUSUl6DF_EilrmQAKDhh/
-##### Response
-Here is an example of the response. Note: The response object shown here might be shortened for readability.
+### Response
+The following is an example of the response.
+>**Note:** The response object shown here might be shortened for readability.
<!-- { "blockType": "response", "truncated": true,
Content-type: application/json
] } -->--
v1.0 Plannerassignedtotaskboardtaskformat Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/plannerassignedtotaskboardtaskformat-update.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.ReadWrite, Group.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application | Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Plannerbucket Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/plannerbucket-delete.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.ReadWrite, Group.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application | Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Plannerbucket Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/plannerbucket-get.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.Read, Tasks.ReadWrite, Group.Read.All, Group.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application | Tasks.Read.All, Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Plannerbucket List Tasks https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/plannerbucket-list-tasks.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.Read, Tasks.ReadWrite, Group.Read.All, Group.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application | Tasks.Read.All, Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Plannerbucket Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/plannerbucket-update.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.ReadWrite, Group.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application | Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Plannerbuckettaskboardtaskformat Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/plannerbuckettaskboardtaskformat-get.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.Read, Tasks.ReadWrite, Group.Read.All, Group.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application | Tasks.Read.All, Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Plannerbuckettaskboardtaskformat Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/plannerbuckettaskboardtaskformat-update.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.ReadWrite, Group.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application | Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Plannergroup List Plans https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/plannergroup-list-plans.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.Read, Tasks.ReadWrite, Group.Read.All, Group.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application | Tasks.Read.All, Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Plannerplan Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/plannerplan-delete.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.ReadWrite, Group.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application | Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Plannerplan Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/plannerplan-get.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.Read, Tasks.ReadWrite, Group.Read.All, Group.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application | Tasks.Read.All, Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Plannerplan List Buckets https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/plannerplan-list-buckets.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.Read, Tasks.ReadWrite, Group.Read.All, Group.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application | Tasks.Read.All, Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Plannerplan List Tasks https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/plannerplan-list-tasks.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.Read, Tasks.ReadWrite, Group.Read.All, Group.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application | Tasks.Read.All, Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Plannerplan Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/plannerplan-update.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.ReadWrite, Group.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application | Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Plannerplanconfiguration Delete Localizations https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/plannerplanconfiguration-delete-localizations.md
+
+ Title: "Delete plannerPlanConfigurationLocalization"
+description: "Delete a plannerPlanConfigurationLocalization object."
+
+ms.localizationpriority: medium
++
+# Delete plannerPlanConfigurationLocalization
+
+Namespace: microsoft.graph
++
+Delete a [plannerPlanConfigurationLocalization](../resources/plannerplanconfigurationlocalization.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 localization based on a business scenario ID and a localization ID:
+
+``` http
+DELETE /solutions/businessScenarios/{businessScenarioId}/planner/planConfiguration/localizations/{plannerPlanConfigurationLocalizationId}
+```
+
+For a specific localization based on the unique name of a business scenario and a localization ID:
+
+``` http
+DELETE /solutions/businessScenarios(uniqueName='{uniqueName}')/planner/planConfiguration/localizations/{plannerPlanConfigurationLocalizationId}
+```
+
+## 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_plannerplanconfigurationlocalization",
+ "sampleKeys": ["c5d514e6c6864911ac46c720affb6e4d", "en-us"]
+}
+-->
+``` http
+DELETE https://graph.microsoft.com/beta/solutions/businessScenarios/c5d514e6c6864911ac46c720affb6e4d/planner/planConfiguration/localizations/en-us
+```
+
+# [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 Plannerplanconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/plannerplanconfiguration-get.md
+
+ Title: "Get plannerPlanConfiguration"
+description: "Read the properties and relationships of a plannerPlanConfiguration object."
+
+ms.localizationpriority: medium
++
+# Get plannerPlanConfiguration
+
+Namespace: microsoft.graph
++
+Read the properties and relationships of a [plannerPlanConfiguration](../resources/plannerplanconfiguration.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/planConfiguration
+```
+
+## 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 [plannerPlanConfiguration](../resources/plannerplanconfiguration.md) object in the response body.
+
+## Examples
+
+### Request
+
+The following is an example of a request.
+
+# [HTTP](#tab/http)
+<!-- {
+ "blockType": "request",
+ "name": "get_plannerplanconfiguration",
+ "sampleKeys": ["c5d514e6c6864911ac46c720affb6e4d"]
+}
+-->
+``` http
+GET https://graph.microsoft.com/beta/solutions/businessScenarios/c5d514e6c6864911ac46c720affb6e4d/planner/planConfiguration
+```
+
+# [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.plannerPlanConfiguration"
+}
+-->
+``` http
+HTTP/1.1 200 OK
+Content-Type: application/json
+
+{
+ "@odata.type": "#microsoft.graph.plannerPlanConfiguration",
+ "id": "afdd911ee3db44b69cc28373a6192e94",
+ "defaultLanguage": "en-us",
+ "buckets": [
+ {
+ "externalBucketId": "deliveryBucket"
+ },
+ {
+ "externalBucketId": "storePickupBucket"
+ },
+ {
+ "externalBucketId": "specialOrdersBucket"
+ },
+ {
+ "externalBucketId": "returnProcessingBucket"
+ }
+ ]
+}
+```
v1.0 Plannerplanconfiguration List Localizations https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/plannerplanconfiguration-list-localizations.md
+
+ Title: "List plannerPlanConfigurationLocalizations"
+description: "Get a list of the plannerPlanConfigurationLocalization objects and their properties."
+
+ms.localizationpriority: medium
++
+# List plannerPlanConfigurationLocalizations
+
+Namespace: microsoft.graph
++
+Get a list of the [plannerPlanConfigurationLocalization](../resources/plannerplanconfigurationlocalization.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)|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 localizations based on a business scenario ID:
+
+``` http
+GET /solutions/businessScenarios/{businessScenarioId}/planner/planConfiguration/localizations
+```
+
+For localizations based on the unique name of a business scenario:
+
+``` http
+GET /solutions/businessScenarios(uniqueName='{uniqueName}')/planner/planConfiguration/localizations
+```
+
+## 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 collection of [plannerPlanConfigurationLocalization](../resources/plannerplanconfigurationlocalization.md) objects in the response body.
+
+## Examples
+
+### Example 1: Get all localizations
+
+The following example shows a request that gets all localized names for a [plannerPlanConfiguration](../resources/plannerplanconfiguration.md).
+
+#### Request
+
+The following is an example of a request.
+
+# [HTTP](#tab/http)
+<!-- {
+ "blockType": "request",
+ "name": "list_plannerplanconfigurationlocalization",
+ "sampleKeys": ["c5d514e6c6864911ac46c720affb6e4d"]
+}
+-->
+``` http
+GET https://graph.microsoft.com/beta/solutions/businessScenarios/c5d514e6c6864911ac46c720affb6e4d/planner/planConfiguration/localizations
+```
+
+# [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": "Collection(microsoft.graph.plannerPlanConfigurationLocalization)"
+}
+-->
+``` http
+HTTP/1.1 200 OK
+Content-Type: application/json
+
+{
+ "value": [
+ {
+ "@odata.type": "#microsoft.graph.plannerPlanConfigurationLocalization",
+ "id": "en-us",
+ "languageTag": "en-us",
+ "planTitle": "Order Tracking",
+ "buckets": [
+ {
+ "@odata.type": "microsoft.graph.plannerPlanConfigurationBucketLocalization",
+ "externalBucketId": "deliveryBucket",
+ "name": "Deliveries"
+ },
+ {
+ "@odata.type": "microsoft.graph.plannerPlanConfigurationBucketLocalization",
+ "externalBucketId": "storePickupBucket",
+ "name": "Pickup"
+ },
+ {
+ "@odata.type": "microsoft.graph.plannerPlanConfigurationBucketLocalization",
+ "externalBucketId": "specialOrdersBucket",
+ "name": "Special Orders"
+ },
+ {
+ "@odata.type": "microsoft.graph.plannerPlanConfigurationBucketLocalization",
+ "externalBucketId": "returnProcessingBucket",
+ "name": "Customer Returns"
+ }
+ ]
+ },
+ {
+ "@odata.type": "#microsoft.graph.plannerPlanConfigurationLocalization",
+ "id": "pt-br",
+ "languageTag": "pt-br",
+ "planTitle": "Acompanhamento de pedidos",
+ "buckets": [
+ {
+ "@odata.type": "microsoft.graph.plannerPlanConfigurationBucketLocalization",
+ "externalBucketId": "deliveryBucket",
+ "name": "Entregas"
+ },
+ {
+ "@odata.type": "microsoft.graph.plannerPlanConfigurationBucketLocalization",
+ "externalBucketId": "storePickupBucket",
+ "name": "Retirada na loja"
+ },
+ {
+ "@odata.type": "microsoft.graph.plannerPlanConfigurationBucketLocalization",
+ "externalBucketId": "specialOrdersBucket",
+ "name": "Pedidos especiais"
+ },
+ {
+ "@odata.type": "microsoft.graph.plannerPlanConfigurationBucketLocalization",
+ "externalBucketId": "returnProcessingBucket",
+ "name": "Devoluções"
+ }
+ ]
+ }
+ ]
+}
+```
+
+### Example 2: Get localization for a specific language tag
+
+The following example shows a request that gets all localized names for a [plannerPlanConfiguration](../resources/plannerplanconfiguration.md) for a specific language.
+
+#### Request
+
+The following is an example of a request.
+
+# [HTTP](#tab/http)
+<!-- {
+ "blockType": "request",
+ "name": "list_plannerplanconfigurationlocalization",
+ "sampleKeys": ["c5d514e6c6864911ac46c720affb6e4d"]
+}
+-->
+``` http
+GET https://graph.microsoft.com/beta/solutions/businessScenarios/c5d514e6c6864911ac46c720affb6e4d/planner/planConfiguration/localizations?$filter=languageTag eq 'en-us'
+```
+
+# [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": "Collection(microsoft.graph.plannerPlanConfigurationLocalization)"
+}
+-->
+``` http
+HTTP/1.1 200 OK
+Content-Type: application/json
+
+{
+ "value": [
+ {
+ "@odata.type": "#microsoft.graph.plannerPlanConfigurationLocalization",
+ "id": "en-us",
+ "languageTag": "en-us",
+ "planTitle": "Order Tracking",
+ "buckets": [
+ {
+ "@odata.type": "microsoft.graph.plannerPlanConfigurationBucketLocalization",
+ "externalBucketId": "deliveryBucket",
+ "name": "Deliveries"
+ },
+ {
+ "@odata.type": "microsoft.graph.plannerPlanConfigurationBucketLocalization",
+ "externalBucketId": "storePickupBucket",
+ "name": "Pickup"
+ },
+ {
+ "@odata.type": "microsoft.graph.plannerPlanConfigurationBucketLocalization",
+ "externalBucketId": "specialOrdersBucket",
+ "name": "Special Orders"
+ },
+ {
+ "@odata.type": "microsoft.graph.plannerPlanConfigurationBucketLocalization",
+ "externalBucketId": "returnProcessingBucket",
+ "name": "Customer Returns"
+ }
+ ]
+ }
+ ]
+}
+```
v1.0 Plannerplanconfiguration Post Localizations https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/plannerplanconfiguration-post-localizations.md
+
+ Title: "Create plannerPlanConfigurationLocalization"
+description: "Create a new plannerPlanConfigurationLocalization object."
+
+ms.localizationpriority: medium
++
+# Create plannerPlanConfigurationLocalization
+
+Namespace: microsoft.graph
++
+Create a new [plannerPlanConfigurationLocalization](../resources/plannerplanconfigurationlocalization.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 localization based on a business scenario ID:
+
+``` http
+POST /solutions/businessScenarios/{businessScenarioId}/planner/planConfiguration/localizations
+```
+
+For a specific localization based on the unique name of a business scenario:
+
+``` http
+POST /solutions/businessScenarios(uniqueName='{uniqueName}')/planner/planConfiguration/localizations
+```
+
+## 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 [plannerPlanConfigurationLocalization](../resources/plannerplanconfigurationlocalization.md) object.
+
+You can specify the following properties when you create a **plannerPlanConfigurationLocalization**.
+
+|Property|Type|Description|
+|:|:|:|
+|buckets|[plannerPlanConfigurationBucketLocalization](../resources/plannerplanconfigurationbucketlocalization.md) collection|Localizations for buckets specified in the [plannerPlanConfiguration](../resources/plannerplanconfiguration.md). Required.|
+|languageTag|String|The code for the language the localized data is intended for. Required.|
+|planTitle|String|Localized title of the plan. Required.|
+
+## Response
+
+If successful, this method returns a `201 Created` response code and a [plannerPlanConfigurationLocalization](../resources/plannerplanconfigurationlocalization.md) object in the response body.
+
+## Examples
+
+### Request
+
+The following is an example of a request.
++
+# [HTTP](#tab/http)
+<!-- {
+ "blockType": "request",
+ "name": "create_plannerplanconfigurationlocalization_from_",
+ "sampleKeys": ["c5d514e6c6864911ac46c720affb6e4d"]
+}
+-->
+``` http
+POST https://graph.microsoft.com/beta/solutions/businessScenarios/c5d514e6c6864911ac46c720affb6e4d/planner/planConfiguration/localizations
+Content-Type: application/json
+
+{
+ "@odata.type": "#microsoft.graph.plannerPlanConfigurationLocalization",
+ "languageTag": "en-us",
+ "planTitle": "Order Tracking",
+ "buckets": [
+ {
+ "@odata.type": "microsoft.graph.plannerPlanConfigurationBucketLocalization",
+ "externalBucketId": "deliveryBucket",
+ "name": "Deliveries"
+ },
+ {
+ "@odata.type": "microsoft.graph.plannerPlanConfigurationBucketLocalization",
+ "externalBucketId": "storePickupBucket",
+ "name": "Pickup"
+ },
+ {
+ "@odata.type": "microsoft.graph.plannerPlanConfigurationBucketLocalization",
+ "externalBucketId": "specialOrdersBucket",
+ "name": "Special Orders"
+ },
+ {
+ "@odata.type": "microsoft.graph.plannerPlanConfigurationBucketLocalization",
+ "externalBucketId": "returnProcessingBucket",
+ "name": "Customer Returns"
+ }
+ ]
+}
+```
+
+# [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.plannerPlanConfigurationLocalization"
+}
+-->
+``` http
+HTTP/1.1 201 Created
+Content-Type: application/json
+
+{
+ "@odata.type": "#microsoft.graph.plannerPlanConfigurationLocalization",
+ "id": "en-us",
+ "languageTag": "en-us",
+ "planTitle": "Order Tracking",
+ "buckets": [
+ {
+ "@odata.type": "microsoft.graph.plannerPlanConfigurationBucketLocalization",
+ "externalBucketId": "deliveryBucket",
+ "name": "Deliveries"
+ },
+ {
+ "@odata.type": "microsoft.graph.plannerPlanConfigurationBucketLocalization",
+ "externalBucketId": "storePickupBucket",
+ "name": "Pickup"
+ },
+ {
+ "@odata.type": "microsoft.graph.plannerPlanConfigurationBucketLocalization",
+ "externalBucketId": "specialOrdersBucket",
+ "name": "Special Orders"
+ },
+ {
+ "@odata.type": "microsoft.graph.plannerPlanConfigurationBucketLocalization",
+ "externalBucketId": "returnProcessingBucket",
+ "name": "Customer Returns"
+ }
+ ]
+}
+```
v1.0 Plannerplanconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/plannerplanconfiguration-update.md
+
+ Title: "Update plannerPlanConfiguration"
+description: "Update the properties of a plannerPlanConfiguration object for a businessScenario."
+
+ms.localizationpriority: medium
++
+# Update plannerPlanConfiguration
+
+Namespace: microsoft.graph
++
+Update the properties of a [plannerPlanConfiguration](../resources/plannerplanconfiguration.md) object for a [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)|BusinessScenarioConfig.ReadWrite.OwnedBy, BusinessScenarioConfig.ReadWrite.All|
+|Delegated (personal Microsoft account)|Not supported.|
+|Application|BusinessScenarioConfig.ReadWrite.OwnedBy|
+
+## HTTP request
+
+<!-- {
+ "blockType": "ignored"
+}
+-->
+
+For the plan configuration based on a business scenario ID:
+
+``` http
+PATCH /solutions/businessScenarios/{businessScenarioId}/planner/planConfiguration
+```
+
+For the plan configuration based on the unique name of a business scenario:
+
+``` http
+PATCH /solutions/businessScenarios(uniqueName='{uniqueName}')/planner/planConfiguration
+```
+
+## Request headers
+
+|Name|Description|
+|:|:|
+|Authorization|Bearer {token}. Required.|
+|Content-Type|application/json. Required.|
+
+## Request body
++
+|Property|Type|Description|
+|:|:|:|
+|defaultLanguage|String|The language that should be used for creating plans when no language has been specified. Required.|
+|buckets|[plannerPlanConfigurationBucketDefinition](../resources/plannerplanconfigurationbucketdefinition.md) collection|Buckets that will be available in the plan. Required.|
+
+## Response
+
+If successful, this method returns a `200 OK` response code and an updated [plannerPlanConfiguration](../resources/plannerplanconfiguration.md) object in the response body.
+
+## Examples
+
+### Request
+
+The following is an example of a request.
+
+# [HTTP](#tab/http)
+<!-- {
+ "blockType": "request",
+ "name": "update_plannerplanconfiguration",
+ "sampleKeys": ["c5d514e6c6864911ac46c720affb6e4d"]
+}
+-->
+``` http
+PATCH https://graph.microsoft.com/beta/solutions/businessScenarios/c5d514e6c6864911ac46c720affb6e4d/planner/planConfiguration
+Content-Type: application/json
+
+{
+ "@odata.type": "#microsoft.graph.plannerPlanConfiguration",
+ "defaultLanguage": "en-us",
+ "buckets": [
+ {
+ "externalBucketId": "deliveryBucket"
+ },
+ {
+ "externalBucketId": "storePickupBucket"
+ },
+ {
+ "externalBucketId": "specialOrdersBucket"
+ },
+ {
+ "externalBucketId": "returnProcessingBucket"
+ }
+ ]
+}
+```
+
+# [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.plannerPlanConfiguration"
+}
+-->
+``` http
+HTTP/1.1 200 OK
+Content-Type: application/json
+
+{
+ "@odata.type": "#microsoft.graph.plannerPlanConfiguration",
+ "id": "afdd911ee3db44b69cc28373a6192e94",
+ "defaultLanguage": "en-us",
+ "buckets": [
+ {
+ "externalBucketId": "deliveryBucket"
+ },
+ {
+ "externalBucketId": "storePickupBucket"
+ },
+ {
+ "externalBucketId": "specialOrdersBucket"
+ },
+ {
+ "externalBucketId": "returnProcessingBucket"
+ }
+ ]
+}
+```
v1.0 Plannerplanconfigurationlocalization Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/plannerplanconfigurationlocalization-get.md
+
+ Title: "Get plannerPlanConfigurationLocalization"
+description: "Read the properties and relationships of a plannerPlanConfigurationLocalization object."
+
+ms.localizationpriority: medium
++
+# Get plannerPlanConfigurationLocalization
+
+Namespace: microsoft.graph
++
+Read the properties and relationships of a [plannerPlanConfigurationLocalization](../resources/plannerplanconfigurationlocalization.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 localization based on a business scenario ID and a localization ID:
+
+``` http
+GET /solutions/businessScenarios/{businessScenarioId}/planner/planConfiguration/localizations/{plannerPlanConfigurationLocalizationId}
+```
+
+For a specific localization based on the unique name of a business scenario and a localization ID:
+
+``` http
+GET /solutions/businessScenarios(uniqueName='{uniqueName}')/planner/planConfiguration/localizations/{plannerPlanConfigurationLocalizationId}
+```
+
+## 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 [plannerPlanConfigurationLocalization](../resources/plannerplanconfigurationlocalization.md) object in the response body.
+
+## Examples
+
+### Request
+
+The following is an example of a request.
+
+# [HTTP](#tab/http)
+<!-- {
+ "blockType": "request",
+ "name": "get_plannerplanconfigurationlocalization",
+ "sampleKeys": ["c5d514e6c6864911ac46c720affb6e4d", "en-us"]
+}
+-->
+``` http
+GET https://graph.microsoft.com/beta/solutions/businessScenarios/c5d514e6c6864911ac46c720affb6e4d/planner/planConfiguration/localizations/en-us
+```
+
+# [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.plannerPlanConfigurationLocalization"
+}
+-->
+``` http
+HTTP/1.1 200 OK
+Content-Type: application/json
+
+{
+ "@odata.type": "#microsoft.graph.plannerPlanConfigurationLocalization",
+ "id": "en-us",
+ "languageTag": "en-us",
+ "planTitle": "Order Tracking",
+ "buckets": [
+ {
+ "@odata.type": "microsoft.graph.plannerPlanConfigurationBucketLocalization",
+ "externalBucketId": "deliveryBucket",
+ "name": "Deliveries"
+ },
+ {
+ "@odata.type": "microsoft.graph.plannerPlanConfigurationBucketLocalization",
+ "externalBucketId": "storePickupBucket",
+ "name": "Pickup"
+ },
+ {
+ "@odata.type": "microsoft.graph.plannerPlanConfigurationBucketLocalization",
+ "externalBucketId": "specialOrdersBucket",
+ "name": "Special Orders"
+ },
+ {
+ "@odata.type": "microsoft.graph.plannerPlanConfigurationBucketLocalization",
+ "externalBucketId": "returnProcessingBucket",
+ "name": "Customer Returns"
+ }
+ ]
+}
+```
v1.0 Plannerplanconfigurationlocalization Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/plannerplanconfigurationlocalization-update.md
+
+ Title: "Update plannerPlanConfigurationLocalization"
+description: "Update the properties of a plannerPlanConfigurationLocalization object."
+
+ms.localizationpriority: medium
++
+# Update plannerPlanConfigurationLocalization
+
+Namespace: microsoft.graph
++
+Update the properties of a [plannerPlanConfigurationLocalization](../resources/plannerplanconfigurationlocalization.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 localization based on a business scenario ID and a localization ID:
+
+``` http
+PATCH /solutions/businessScenarios/{businessScenarioId}/planner/planConfiguration/localizations/{plannerPlanConfigurationLocalizationId}
+```
+
+For a specific localization based on the unique name of a business scenario and a localization ID:
+
+``` http
+PATCH /solutions/businessScenarios(uniqueName='{uniqueName}')/planner/planConfiguration/localizations/{plannerPlanConfigurationLocalizationId}
+```
+
+## Request headers
+
+|Name|Description|
+|:|:|
+|Authorization|Bearer {token}. Required.|
+|Content-Type|application/json. Required.|
+
+## Request body
++
+|Property|Type|Description|
+|:|:|:|
+|buckets|[plannerPlanConfigurationBucketLocalization](../resources/plannerplanconfigurationbucketlocalization.md) collection|Localizations for buckets specified in the [plannerPlanConfiguration](../resources/plannerplanconfiguration.md). Optional.|
+|planTitle|String|Localized title of the plan. Optional.|
+
+## Response
+
+If successful, this method returns a `200 OK` response code and an updated [plannerPlanConfigurationLocalization](../resources/plannerplanconfigurationlocalization.md) object in the response body.
+
+## Examples
+
+### Request
+
+The following is an example of a request.
+
+# [HTTP](#tab/http)
+<!-- {
+ "blockType": "request",
+ "name": "update_plannerplanconfigurationlocalization",
+ "sampleKeys": ["c5d514e6c6864911ac46c720affb6e4d", "en-us"]
+}
+-->
+``` http
+PATCH https://graph.microsoft.com/beta/solutions/businessScenarios/c5d514e6c6864911ac46c720affb6e4d/planner/planConfiguration/localizations/en-us
+Content-Type: application/json
+
+{
+ "@odata.type": "#microsoft.graph.plannerPlanConfigurationLocalization",
+ "planTitle": "Order Tracking",
+ "buckets": [
+ {
+ "externalBucketId": "deliveryBucket",
+ "name": "Deliveries"
+ },
+ {
+ "externalBucketId": "storePickupBucket",
+ "name": "Pickup"
+ },
+ {
+ "externalBucketId": "specialOrdersBucket",
+ "name": "Special Orders"
+ },
+ {
+ "externalBucketId": "returnProcessingBucket",
+ "name": "Customer Returns"
+ }
+ ]
+}
+```
+
+# [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.plannerPlanConfigurationLocalization"
+}
+-->
+``` http
+HTTP/1.1 200 OK
+Content-Type: application/json
+
+{
+ "@odata.type": "#microsoft.graph.plannerPlanConfigurationLocalization",
+ "id": "en-us",
+ "languageTag": "en-us",
+ "planTitle": "Order Tracking",
+ "buckets": [
+ {
+ "externalBucketId": "deliveryBucket",
+ "name": "Deliveries"
+ },
+ {
+ "externalBucketId": "storePickupBucket",
+ "name": "Pickup"
+ },
+ {
+ "externalBucketId": "specialOrdersBucket",
+ "name": "Special Orders"
+ },
+ {
+ "externalBucketId": "returnProcessingBucket",
+ "name": "Customer Returns"
+ }
+ ]
+}
+```
v1.0 Plannerplandetails Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/plannerplandetails-get.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.Read, Tasks.ReadWrite, Group.Read.All, Group.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application |Tasks.Read.All, Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Plannerplandetails Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/plannerplandetails-update.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.ReadWrite, Group.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application | Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Plannerprogresstaskboardtaskformat Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/plannerprogresstaskboardtaskformat-get.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.Read, Tasks.ReadWrite, Group.Read.All, Group.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application | Tasks.Read.All, Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Plannerprogresstaskboardtaskformat Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/plannerprogresstaskboardtaskformat-update.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.ReadWrite, Group.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application | Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Plannerroster Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/plannerroster-delete.md
One of the following permissions is required to call this API. To learn more, in
|:|:| |Delegated (work or school account)|Tasks.ReadWrite| |Delegated (personal Microsoft account)|Not supported.|
-|Application|Not supported.|
+|Application| Tasks.ReadWrite.All|
## HTTP request
v1.0 Plannerroster Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/plannerroster-get.md
One of the following permissions is required to call this API. To learn more, in
|:|:| |Delegated (work or school account)|Tasks.Read, Tasks.ReadWrite| |Delegated (personal Microsoft account)|Not supported.|
-|Application|Not supported.|
+|Application|Tasks.Read.All, Tasks.ReadWrite.All|
## HTTP request
v1.0 Plannerroster List Members https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/plannerroster-list-members.md
One of the following permissions is required to call this API. To learn more, in
|:|:| |Delegated (work or school account)|Tasks.Read, Tasks.ReadWrite| |Delegated (personal Microsoft account)|Not supported.|
-|Application|Not supported.|
+|Application|Tasks.Read.All, Tasks.ReadWrite.All|
## HTTP request
v1.0 Plannerroster List Plans https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/plannerroster-list-plans.md
One of the following permissions is required to call this API. To learn more, in
|:|:| |Delegated (work or school account)|Tasks.Read, Tasks.ReadWrite| |Delegated (personal Microsoft account)|Not supported.|
-|Application|Not supported.|
+|Application|Tasks.Read.All, Tasks.ReadWrite.All|
## HTTP request
v1.0 Plannerroster Post Members https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/plannerroster-post-members.md
One of the following permissions is required to call this API. To learn more, in
|:|:| |Delegated (work or school account)|Tasks.ReadWrite| |Delegated (personal Microsoft account)|Not supported.|
-|Application|Not supported.|
+|Application|Tasks.ReadWrite.All|
## HTTP request
v1.0 Plannerrostermember Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/plannerrostermember-delete.md
One of the following permissions is required to call this API. To learn more, in
|:|:| |Delegated (work or school account)|Tasks.ReadWrite| |Delegated (personal Microsoft account)|Not supported.|
-|Application|Not supported.|
+|Application|Tasks.ReadWrite.All|
## HTTP request
v1.0 Plannerrostermember Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/plannerrostermember-get.md
One of the following permissions is required to call this API. To learn more, in
|:|:| |Delegated (work or school account)|Tasks.Read, Tasks.ReadWrite| |Delegated (personal Microsoft account)|Not supported.|
-|Application|Not supported.|
+|Application|Tasks.Read.All, Tasks.ReadWrite.All|
## HTTP request
v1.0 Plannertask Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/plannertask-delete.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.ReadWrite, Group.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application | Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Plannertask Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/plannertask-get.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.Read, Tasks.ReadWrite, Group.Read.All, Group.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application | Tasks.Read.All, Tasks.ReadWrite.All. |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Plannertask Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/plannertask-update.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.ReadWrite, Group.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application | Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Plannertaskconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/plannertaskconfiguration-get.md
+
+ Title: "Get plannerTaskConfiguration"
+description: "Read the properties and relationships of a plannerTaskConfiguration object."
+
+ms.localizationpriority: medium
++
+# Get plannerTaskConfiguration
+
+Namespace: microsoft.graph
++
+Read the properties and relationships of a [plannerTaskConfiguration](../resources/plannertaskconfiguration.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/taskConfiguration
+```
+
+## 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 [plannerTaskConfiguration](../resources/plannertaskconfiguration.md) object in the response body.
+
+## Examples
+
+### Request
+
+The following is an example of a request.
+
+# [HTTP](#tab/http)
+<!-- {
+ "blockType": "request",
+ "name": "get_plannertaskconfiguration",
+ "sampleKeys": ["c5d514e6c6864911ac46c720affb6e4d"]
+}
+-->
+``` http
+GET https://graph.microsoft.com/beta/solutions/businessScenarios/c5d514e6c6864911ac46c720affb6e4d/planner/taskConfiguration
+```
+
+# [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.plannerTaskConfiguration"
+}
+-->
+``` http
+HTTP/1.1 200 OK
+Content-Type: application/json
+
+{
+ "@odata.type": "#microsoft.graph.plannerTaskConfiguration",
+ "id": "52be01e6291f403aa49f2b9f5288ab48",
+ "editPolicy": {
+ "rules": [
+ {
+ "defaultRule": "block",
+ "role": {
+ "@odata.type": "#microsoft.graph.plannerRelationshipBasedUserType",
+ "roleKind": "relationship",
+ "role": "defaultRules"
+ },
+ "propertyRule": {
+ "move": [],
+ "delete": [],
+ "title": [],
+ "notes": [],
+ "priority": [],
+ "startDate": [],
+ "dueDate": [],
+ "percentComplete": ["allow"],
+ "order": [],
+ "previewType": [],
+ "ruleKind": "taskRule",
+ "references": null,
+ "checkLists": null,
+ "assignments": {
+ "defaultRules": ["addSelf"],
+ "overrides": []
+ },
+ "appliedCategories": null
+ }
+ },
+ {
+ "defaultRule": "block",
+ "role": {
+ "@odata.type": "#microsoft.graph.plannerRelationshipBasedUserType",
+ "roleKind": "relationship",
+ "role": "taskAssignees"
+ },
+ "propertyRule": {
+ "move": [],
+ "delete": [],
+ "title": [],
+ "notes": [],
+ "priority": [],
+ "startDate": ["allow"],
+ "dueDate": ["allow"],
+ "percentComplete": ["allow"],
+ "order": ["allow"],
+ "previewType": [],
+ "ruleKind": "taskRule",
+ "references": {
+ "defaultRules": ["allow"],
+ "overrides": [
+ {
+ "name": "userCreated",
+ "rules": ["allow"]
+ },
+ {
+ "name": "applicationCreated",
+ "rules": ["block"]
+ }
+ ]
+ },
+ "checkLists": {
+ "defaultRules": ["allow"],
+ "overrides": [
+ {
+ "name": "userCreated",
+ "rules": ["allow"]
+ },
+ {
+ "name": "applicationCreated",
+ "rules": ["check"]
+ }
+ ]
+ },
+ "assignments": {
+ "defaultRules": ["block"],
+ "overrides": [
+ {
+ "name": "userCreated",
+ "rules": ["removeSelf"]
+ },
+ {
+ "name": "applicationCreated",
+ "rules": ["check"]
+ }
+ ]
+ },
+ "appliedCategories": {
+ "defaultRules": [
+ "allow"
+ ],
+ "overrides": []
+ }
+ }
+ }
+ ]
+ }
+}
+```
v1.0 Plannertaskconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/plannertaskconfiguration-update.md
+
+ Title: "Update plannerTaskConfiguration"
+description: "Update the properties of a plannerTaskConfiguration object."
+
+ms.localizationpriority: medium
++
+# Update plannerTaskConfiguration
+
+Namespace: microsoft.graph
++
+Update the properties of a [plannerTaskConfiguration](../resources/plannertaskconfiguration.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"
+}
+-->
+``` http
+PATCH /solutions/businessScenarios/{businessScenarioId}/planner/taskConfiguration
+```
+
+## Request headers
+
+|Name|Description|
+|:|:|
+|Authorization|Bearer {token}. Required.|
+|Content-Type|application/json. Required.|
+
+## Request body
++
+|Property|Type|Description|
+|:|:|:|
+|editPolicy|[plannerTaskPolicy](../resources/plannertaskpolicy.md)|Policy configuration for tasks created for a [businessScenario](../resources/businessscenario.md) when they are being changed outside of the scenario. Optional.|
+
+## Response
+
+If successful, this method returns a `200 OK` response code and an updated [plannerTaskConfiguration](../resources/plannertaskconfiguration.md) object in the response body.
+
+## Examples
+
+### Request
+
+The following is an example of a request.
+
+# [HTTP](#tab/http)
+<!-- {
+ "blockType": "request",
+ "name": "update_plannertaskconfiguration",
+ "sampleKeys": ["c5d514e6c6864911ac46c720affb6e4d"]
+}
+-->
+``` http
+PATCH https://graph.microsoft.com/beta/solutions/businessScenarios/c5d514e6c6864911ac46c720affb6e4d/planner/taskConfiguration
+Content-Type: application/json
+
+{
+ "@odata.type": "#microsoft.graph.plannerTaskConfiguration",
+ "editPolicy": {
+ "rules": [
+ {
+ "defaultRule": "block",
+ "role": {
+ "@odata.type": "#microsoft.graph.plannerRelationshipBasedUserType",
+ "roleKind": "relationship",
+ "role": "defaultRules"
+ },
+ "propertyRule": {
+ "percentComplete": ["allow"],
+ "ruleKind": "taskRule",
+ "assignments": {
+ "defaultRules": ["addSelf"],
+ "overrides": []
+ }
+ }
+ },
+ {
+ "defaultRule": "block",
+ "role": {
+ "@odata.type": "#microsoft.graph.plannerRelationshipBasedUserType",
+ "roleKind": "relationship",
+ "role": "taskAssignees"
+ },
+ "propertyRule": {
+ "startDate": ["allow"],
+ "dueDate": ["allow"],
+ "percentComplete": ["allow"],
+ "order": ["allow"],
+ "ruleKind": "taskRule",
+ "references": {
+ "defaultRules": ["allow"],
+ "overrides": [
+ {
+ "name": "userCreated",
+ "rules": ["allow"]
+ },
+ {
+ "name": "applicationCreated",
+ "rules": ["block"]
+ }
+ ]
+ },
+ "checkLists": {
+ "defaultRules": ["allow"],
+ "overrides": [
+ {
+ "name": "userCreated",
+ "rules": ["allow"]
+ },
+ {
+ "name": "applicationCreated",
+ "rules": ["check"]
+ }
+ ]
+ },
+ "assignments": {
+ "defaultRules": ["block"],
+ "overrides": [
+ {
+ "name": "userCreated",
+ "rules": ["removeSelf"]
+ },
+ {
+ "name": "applicationCreated",
+ "rules": ["check"]
+ }
+ ]
+ },
+ "appliedCategories": {
+ "defaultRules": [
+ "allow"
+ ],
+ "overrides": []
+ }
+ }
+ }
+ ]
+ }
+}
+```
+
+# [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.plannerTaskConfiguration"
+}
+-->
+``` http
+HTTP/1.1 200 OK
+Content-Type: application/json
+
+{
+ "@odata.type": "#microsoft.graph.plannerTaskConfiguration",
+ "id": "52be01e6291f403aa49f2b9f5288ab48",
+ "editPolicy": {
+ "rules": [
+ {
+ "defaultRule": "block",
+ "role": {
+ "@odata.type": "#microsoft.graph.plannerRelationshipBasedUserType",
+ "roleKind": "relationship",
+ "role": "defaultRules"
+ },
+ "propertyRule": {
+ "move": [],
+ "delete": [],
+ "title": [],
+ "notes": [],
+ "priority": [],
+ "startDate": [],
+ "dueDate": [],
+ "percentComplete": ["allow"],
+ "order": [],
+ "previewType": [],
+ "ruleKind": "taskRule",
+ "references": null,
+ "checkLists": null,
+ "assignments": {
+ "defaultRules": ["addSelf"],
+ "overrides": []
+ },
+ "appliedCategories": null
+ }
+ },
+ {
+ "defaultRule": "block",
+ "role": {
+ "@odata.type": "#microsoft.graph.plannerRelationshipBasedUserType",
+ "roleKind": "relationship",
+ "role": "taskAssignees"
+ },
+ "propertyRule": {
+ "move": [],
+ "delete": [],
+ "title": [],
+ "notes": [],
+ "priority": [],
+ "startDate": ["allow"],
+ "dueDate": ["allow"],
+ "percentComplete": ["allow"],
+ "order": ["allow"],
+ "previewType": [],
+ "ruleKind": "taskRule",
+ "references": {
+ "defaultRules": ["allow"],
+ "overrides": [
+ {
+ "name": "userCreated",
+ "rules": ["allow"]
+ },
+ {
+ "name": "applicationCreated",
+ "rules": ["block"]
+ }
+ ]
+ },
+ "checkLists": {
+ "defaultRules": ["allow"],
+ "overrides": [
+ {
+ "name": "userCreated",
+ "rules": ["allow"]
+ },
+ {
+ "name": "applicationCreated",
+ "rules": ["check"]
+ }
+ ]
+ },
+ "assignments": {
+ "defaultRules": ["block"],
+ "overrides": [
+ {
+ "name": "userCreated",
+ "rules": ["removeSelf"]
+ },
+ {
+ "name": "applicationCreated",
+ "rules": ["check"]
+ }
+ ]
+ },
+ "appliedCategories": {
+ "defaultRules": [
+ "allow"
+ ],
+ "overrides": []
+ }
+ }
+ }
+ ]
+ }
+}
+```
v1.0 Plannertaskdetails Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/plannertaskdetails-get.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.Read, Tasks.ReadWrite, Group.Read.All, Group.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application | Tasks.Read.All, Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Plannertaskdetails Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/plannertaskdetails-update.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.ReadWrite, Group.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application | Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Planneruser Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/planneruser-get.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.Read, Tasks.ReadWrite, Group.Read.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application | Tasks.Read.All, Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Planneruser List Rosterplans https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/planneruser-list-rosterplans.md
One of the following permissions is required to call this API. To learn more, in
|:|:| |Delegated (work or school account)|Tasks.Read, Tasks.ReadWrite| |Delegated (personal Microsoft account)|Not supported.|
-|Application|Not supported.|
+|Application|Tasks.Read.All, Tasks.ReadWrite.All|
## HTTP request
v1.0 Planneruser List Tasks https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/planneruser-list-tasks.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.Read, Tasks.ReadWrite, Group.Read.All, Group.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application | Tasks.Read.All, Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Presence Setstatusmessage https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/presence-setstatusmessage.md
+
+ Title: "presence: setStatusMessage"
+description: "Set a presence status message for a user."
+
+ms.localizationpriority: medium
++
+# presence: setStatusMessage
+
+Namespace: microsoft.graph
++
+Set a presence status message for a user. An optional expiration date and time can be supplied.
+
+## Permissions
+The following permission is required to call the 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) | Presence.ReadWrite |
+| Delegated (personal Microsoft account) | Not supported. |
+| Application | Not supported. |
+
+## HTTP Request
+<!-- { "blockType": "ignored" } -->
+```http
+POST /users/{userId}/presence/setStatusMessage
+```
+
+## Request headers
+| Name | Description |
+| : | :-- |
+| Authorization | Bearer {token}. Required. |
+| Content-Type | application/json. Required. |
+
+## Request body
+
+In the request body, provide a JSON object with the following parameters.
+
+| Parameter | Type | Description |
+| | |- |
+| `statusMessage` | [microsoft.graph.presenceStatusMessage](../resources/presencestatusmessage.md) |It can be set to display the presence status message of a user. |
+
+## Response
+If successful, this method returns a `200 OK` response code.
+
+## Examples
+
+### Example 1: Set status message with expiry date
+
+The following request sets the presence status message as "Hey I'm currently in a meeting." for user `fa8bf3dc-eca7-46b7-bad1-db199b62afc3`, with the expiration on `2022-10-18 at 17:05:33.2079781 Pacific Standard Time`.
+
+#### Request
++
+# [HTTP](#tab/http)
+<!-- {
+ "blockType": "request",
+ "name": "setstatusmessage"
+}-->
+
+```http
+POST https://graph.microsoft.com/beta/users/fa8bf3dc-eca7-46b7-bad1-db199b62afc3/presence/setStatusMessage
+Content-Type: application/json
+
+{
+ "statusMessage": {
+ "message": {
+ "content": "Hey I'm currently in a meeting.",
+ "contentType": "text"
+ },
+ "expiryDateTime": {
+ "dateTime": "2022-10-18T17:05:33.2079781",
+ "timeZone": "Pacific Standard Time"
+ }
+ }
+}
+```
+
+# [C#](#tab/csharp)
+
+# [JavaScript](#tab/javascript)
+
+# [Java](#tab/java)
+
+# [Go](#tab/go)
+
+# [PowerShell](#tab/powershell)
+
+# [PHP](#tab/php)
++++++
+#### Response
+
+<!-- {
+ "blockType": "response",
+ "name": "setstatusmessage",
+ "truncated": true
+} -->
+```http
+HTTP/1.1 200 OK
+```
+
+### Example 2: Get status message of another user
+
+The following request sets the presence status message as "Hey I'm currently in a meeting." for user `fa8bf3dc-eca7-46b7-bad1-db199b62afc3`. Then presence for user `fa8bf3dc-eca7-46b7-bad1-db199b62afc3` is obtained on behalf of other user via a [getPresence](presence-get.md) request.
+
+#### Set status message: request
++
+# [HTTP](#tab/http)
+<!-- {
+ "blockType": "request",
+ "name": "setstatusmessage-another-user"
+}-->
+```http
+POST https://graph.microsoft.com/beta/users/fa8bf3dc-eca7-46b7-bad1-db199b62afc3/presence/setStatusMessage
+Content-Type: application/json
+
+{
+ "statusMessage": {
+ "message": {
+ "content": "Hey I am available now",
+ "contentType": "text"
+ }
+ }
+}
+```
+
+# [C#](#tab/csharp)
+
+# [JavaScript](#tab/javascript)
+
+# [Java](#tab/java)
+
+# [Go](#tab/go)
+
+# [PowerShell](#tab/powershell)
+
+# [PHP](#tab/php)
++++++
+#### Set status message: response
+
+<!-- {
+ "blockType": "response",
+ "name": "setstatusmessage-another-user",
+ "truncated": true
+} -->
+```http
+HTTP/1.1 200 OK
+```
+
+#### Get another user presence: request
+This request should be executed on behalf of another user.
++
+# [HTTP](#tab/http)
+<!-- {
+ "blockType": "request",
+ "name": "setstatusmessage-another-user-get-presence"
+}-->
+```msgraph-interactive
+GET https://graph.microsoft.com/beta/users/fa8bf3dc-eca7-46b7-bad1-db199b62afc3/presence
+```
+
+# [C#](#tab/csharp)
+
+# [JavaScript](#tab/javascript)
+
+# [Java](#tab/java)
+
+# [Go](#tab/go)
+
+# [PowerShell](#tab/powershell)
+
+# [PHP](#tab/php)
++++++
+#### Get another user presence: response
+Since this presence request does not qualify as a [self presence](presence-get.md#example-1-get-your-own-presence-information) request, `statusMessage.expiryDateTime` and `statusMessage.publishedDateTime` properties are not included in the response body.
+
+<!-- {
+ "blockType": "response",
+ "name": "setstatusmessage-another-user-get-presence",
+ "@odata.type": "microsoft.graph.presence",
+ "truncated":"true"
+} -->
+```http
+HTTP/1.1 200 OK
+Content-Type: application/json
+
+{
+ "id": "fa8bf3dc-eca7-46b7-bad1-db199b62afc3",
+ "availability": "Available",
+ "activity": "Available",
+ "outOfOfficeSettings": {
+ "message": null,
+ "isOutOfOffice": false
+ },
+ "statusMessage": {
+ "message": {
+ "content": "Hey I am available now",
+ "contentType": "text"
+ }
+ }
+}
+```
v1.0 Print List Connectors https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/print-list-connectors.md
Title: List printConnectors
-description: Retrieve a list of connectors.
-
+ Title: "List printConnectors"
+description: "Retrieve a list of connectors."
+ ms.localizationpriority: medium doc_type: apiPageType
To use the Universal Print service, the user or app's tenant must have an active
|Permission type | Permissions (from least to most privileged) | |:|:--| |Delegated (work or school account)| PrintConnector.Read.All, PrintConnector.ReadWrite.All |
-|Delegated (personal Microsoft account)|Not Supported.|
-|Application| Not Supported. |
+|Delegated (personal Microsoft account)|Not supported.|
+|Application| Not supported. |
## HTTP request <!-- { "blockType": "ignored" } -->
GET /print/connectors
This method supports some of the OData query parameters to help customize the response. For general information, see [OData query parameters](/graph/query-parameters). ### Exceptions
-Some operators are not supported: `$count`, `$search`, `$filter`.
+The following operators are not supported: `$count`, `$search`, `$filter`.
## Request headers | Name |Description|
Some operators are not supported: `$count`, `$search`, `$filter`.
## Request body Do not supply a request body for this method.+ ## Response
-If successful, this method returns a `200 OK` response code and collection of [printConnector](../resources/printconnector.md) objects in the response body.
+If successful, this method returns a `200 OK` response code and a collection of [printConnector](../resources/printconnector.md) objects in the response body.
+ ## Example+ ### Request+ The following is an example of the request. # [HTTP](#tab/http)
v1.0 Printer Post Jobs https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/printer-post-jobs.md
POST https://graph.microsoft.com/beta/print/printers/{id}/jobs
Content-type: application/json {
+ "displayName": "testjob",
"configuration": { "feedOrientation": "longEdgeFirst", "pageRanges": [
Content-type: application/json
{ "@odata.context": "https://graph.microsoft.com/beta/$metadata#print/printJobs/$entity", "id": "1825",
+ "displayName": "testjob",
"createdDateTime": "2020-10-14T05:16:49-07:00", "isFetchable": false, "redirectedFrom": null,
v1.0 Printershare Post Jobs https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/printershare-post-jobs.md
POST https://graph.microsoft.com/beta/print/shares/{id}/jobs
Content-type: application/json {
+ "displayName": "testjob",
"configuration": { "feedOrientation": "longEdgeFirst", "pageRanges": [
Content-type: application/json
{ "@odata.context": "https://graph.microsoft.com/beta/$metadata#print/printJobs/$entity", "id": "1825",
+ "displayName": "testjob",
"createdDateTime": "2020-10-14T05:16:49-07:00", "isFetchable": false, "redirectedFrom": null,
v1.0 Printjob Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/printjob-get.md
Content-type: application/json
{ "@odata.context": "https://graph.microsoft.com/beta/$metadata#print/printers('c05f3726-0d4b-4aa1-8fe9-2eb981bb26fb')/jobs/$entity", "id": "5182",
+ "displayName": "testjob",
"createdDateTime": "2020-02-04T00:00:00.0000000Z", "createdBy": {}, "status": {
Content-type: application/json
{ "@odata.context": "https://graph.microsoft.com/beta/$metadata#print/printers('c05f3726-0d4b-4aa1-8fe9-2eb981bb26fb')/jobs(tasks())/$entity", "id": "5182",
+ "displayName": "testjob",
"createdDateTime": "2020-06-30T17:18:52.3930472Z", "createdBy": { "id": "",
Content-type: application/json
{ "@odata.context": "https://graph.microsoft.com/beta/$metadata#print/printers('86b6d420-7e6b-4797-a05c-af4e56cd81bd')/jobs(documents())/$entity", "id": "31216",
+ "displayName": "testjob",
"createdDateTime": "2020-06-26T04:20:06.5715544Z", "createdBy": { "id": "",
v1.0 Printjob Redirect https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/printjob-redirect.md
Content-type: application/json
"@odata.context": "https://graph.microsoft.com/beta/$metadata#printJob", "@odata.type": "#microsoft.graph.printJob", "id": "44354",
+ "displayName": "testjob",
"createdDateTime": "2020-06-30T17:19:09Z", "createdBy": { "id": "",
v1.0 Printjob Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/printjob-update.md
Content-type: application/json
{ "@odata.context": "https://graph.microsoft.com/beta/$metadata#print/printers('d5ef6ec4-07ca-4212-baf9-d45be126bfbb')/jobs/$entity", "id": "44353",
+ "displayName": "testjob",
"createdDateTime": "2020-06-26T04:20:06.5715544Z", "createdBy": { "id": "",
v1.0 Riskdetection Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/riskdetection-get.md
Title: "Get riskDetection" description: "Retrieve the properties of a **riskdetection** object." ms.localizationpriority: medium-+ ms.prod: "identity-and-sign-in" doc_type: apiPageType
v1.0 Riskdetection List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/riskdetection-list.md
Title: "List riskDetection" description: "Retrieve the properties of a collection of **riskDetection** object." ms.localizationpriority: medium-+ ms.prod: "identity-and-sign-in" doc_type: apiPageType
v1.0 Riskyuser List History https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/riskyuser-list-history.md
Title: "List history of riskyUser" description: "Retrieve the risk history" ms.localizationpriority: medium-+ ms.prod: "identity-and-sign-in" doc_type: apiPageType
v1.0 Riskyuserhistoryitem Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/riskyuserhistoryitem-get.md
Title: "Get history item of riskyUser" description: "Get a history item of a riskyUser object." ms.localizationpriority: medium-+ ms.prod: "identity-and-sign-in" doc_type: apiPageType
v1.0 Riskyusers Confirmcompromised https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/riskyusers-confirmcompromised.md
Title: Confirm riskyUser compromised description: Confirm a riskyUser object as compromised.-+ ms.localizationpriority: medium ms.prod: identity-and-sign-in Previously updated : 03/20/2019 doc_type: apiPageType # riskyUser: confirmCompromised
v1.0 Riskyusers Dismiss https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/riskyusers-dismiss.md
Title: Dismiss riskyUser description: Dismiss the risk of a riskyUser object.-+ ms.localizationpriority: medium ms.prod: identity-and-sign-in Previously updated : 03/20/2019 doc_type: apiPageType
v1.0 Riskyusers Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/riskyusers-get.md
Title: "Get riskyUser" description: "Retrieve the properties and relationships of a **riskyUser** object." ms.localizationpriority: medium-+ doc_type: apiPageType ms.prod: "identity-and-sign-in"
v1.0 Riskyusers List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/riskyusers-list.md
Title: "List riskyUsers" description: "Retrieve the properties and relationships of a collection of **riskyUser** objects." ms.localizationpriority: medium-+ doc_type: apiPageType ms.prod: "identity-and-sign-in"
v1.0 Search Query https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/search-query.md
One of the following permissions is required to call this API. To learn more, in
| Permission type | Permissions (from least to most privileged) | |:|:--|
-| Delegated (work or school account) | Mail.Read, Calendars.Read, Files.Read.All, Sites.Read.All, ExternalItem.Read.All, Acronym.Read.All, Bookmark.Read.All, ChannelMessage.Read.All, Chat.Read |
+| Delegated (work or school account) | Mail.Read, Calendars.Read, Files.Read.All, Sites.Read.All, ExternalItem.Read.All, Acronym.Read.All, Bookmark.Read.All, ChannelMessage.Read.All, Chat.Read, QnA.Read.All |
| Delegated (personal Microsoft account) | Not supported. | | Application | Files.Read.All, Sites.Read.All |
v1.0 Security Ediscoverysearch Purgedata https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/security-ediscoverysearch-purgedata.md
Namespace: microsoft.graph.security
[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)]
-Permanently delete Microsoft Teams messages contained in a [eDiscovery search](../resources/security-ediscoverysearch.md).
+Delete Microsoft Teams messages contained in a [eDiscovery search](../resources/security-ediscoverysearch.md).
>**Note:** This request purges Teams data only. It does not purge other types of data such as mailbox items.
v1.0 Security Incident Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/security-incident-get.md
Content-type: application/json
"determination": "MultiStagedAttack", "status": "Active", "severity": "Medium",
- "tags": [
+ "customTags": [
"Demo" ], "comments": [
v1.0 Security Incident Post Comments https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/security-incident-post-comments.md
ms.prod: "security"
doc_type: apiPageType
-# Create comment for incident
+# Create comment
Namespace: microsoft.graph [!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)]
v1.0 Security Incident Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/security-incident-update.md
PATCH /security/incidents/{incidentId}
|classification|microsoft.graph.security.alertClassification|The specification for the incident. Possible values are: `unknown`, `falsePositive`, `truePositive`, `informationalExpectedActivity`, `unknownFutureValue`.| |determination|microsoft.graph.security.alertDetermination|Specifies the determination of the incident. Possible values are: `unknown`, `apt`, `malware`, `securityPersonnel`, `securityTesting`, `unwantedSoftware`, `other`, `multiStagedAttack`, `compromisedUser`, `phishing`, `maliciousUserActivity`, `clean`, `insufficientData`, `confirmedUserActivity`, `lineOfBusinessApplication`, `unknownFutureValue`.| |status|microsoft.graph.security.incidentStatus|The status of the incident. Possible values are: `active`, `resolved`, `redirected`, `unknownFutureValue`.|
-|tags|String collection|Array of custom tags associated with an incident.|
+|customTags|String collection|Array of custom tags associated with an incident.|
## Response
Content-Type: application/json
{ "classification": "TruePositive", "determination": "MultiStagedAttack",
- "tags": [
+ "customTags": [
"Demo" ] }
Content-Type: application/json
"determination": "MultiStagedAttack", "status": "Active", "severity": "Medium",
- "tags": [
+ "customTags": [
"Demo" ], "comments": [
v1.0 Security List Incidents https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/security-list-incidents.md
If successful, this method returns a `200 OK` response code and a collection of
## Examples ### Example 1: List all incidents
-### Request
+#### Request
# [HTTP](#tab/http) <!-- {
GET https://graph.microsoft.com/beta/security/incidents
-### Response
+#### Response
>**Note:** The response object shown here might be shortened for readability. <!-- {
Content-Type: application/json
"determination": "MultiStagedAttack", "status": "Active", "severity": "Medium",
- "tags": [
+ "customTags": [
"Demo" ], "comments": [
Content-Type: application/json
} ```
-### Example 2: List all incidents with their alerts.
-### Request
+### Example 2: List all incidents with their alerts
+#### Request
# [HTTP](#tab/http) <!-- {
GET https://graph.microsoft.com/beta/security/incidents?$expand=alerts
-### Response
+#### Response
>**Note:** The response object shown here might be shortened for readability. <!-- { "blockType": "response",
v1.0 Security Security Runhuntingquery https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/security-security-runhuntingquery.md
Namespace: microsoft.graph.security
Queries a specified set of event, activity, or entity data supported by Microsoft 365 Defender to proactively look for specific threats in your environment.
-This is the method for advanced hunting in Microsoft 365 Defender. This method includes a query in Kusto Query Language (KQL). It specifies a data table in the [advanced hunting schema](/microsoft-365/security/defender/advanced-hunting-schema-tables?view=o365-worldwide) and a piped sequence of operators to filter or search that data, and format the query output in specific ways.
+This is the method for advanced hunting in Microsoft 365 Defender. This method includes a query in Kusto Query Language (KQL). It specifies a data table in the [advanced hunting schema](/microsoft-365/security/defender/advanced-hunting-schema-tables?view=o365-worldwide&preserve-view=true) and a piped sequence of operators to filter or search that data, and format the query output in specific ways.
-Find out more about [hunting for threats across devices, emails, apps, and identities](/microsoft-365/security/defender/advanced-hunting-query-emails-devices?view=o365-worldwide). Learn about [KQL](/azure/data-explorer/kusto/query/).
+Find out more about [hunting for threats across devices, emails, apps, and identities](/microsoft-365/security/defender/advanced-hunting-query-emails-devices?view=o365-worldwide&preserve-view=true). Learn about [KQL](/azure/data-explorer/kusto/query/).
-For information on using advanced hunting in the [Microsoft 365 Defender portal](/microsoft-365/security/defender/microsoft-365-defender-portal?view=o365-worldwide), see [Proactively hunt for threats with advanced hunting in Microsoft 365 Defender](/microsoft-365/security/defender/advanced-hunting-overview?view=o365-worldwide).
+For information on using advanced hunting in the [Microsoft 365 Defender portal](/microsoft-365/security/defender/microsoft-365-defender-portal?view=o365-worldwide&preserve-view=true), see [Proactively hunt for threats with advanced hunting in Microsoft 365 Defender](/microsoft-365/security/defender/advanced-hunting-overview?view=o365-worldwide&preserve-view=true).
## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference).
If successful, this action returns a `200 OK` response code and a [huntingQueryR
### Request This example specifies a KQL query which does the following:-- Looks into the [DeviceProcessEvents](/microsoft-365/security/defender/advanced-hunting-deviceprocessevents-table?view=o365-worldwide) table in the advanced hunting schema.
+- Looks into the [DeviceProcessEvents](/microsoft-365/security/defender/advanced-hunting-deviceprocessevents-table?view=o365-worldwide&preserve-view=true) table in the advanced hunting schema.
- Filters on the condition that the event is initiated by the powershell.exe process. - Specifies the output of 3 columns from the same table for each row: `Timestamp`, `FileName`, `InitiatingProcessFileName`. - Sorts the output by the `Timestamp` value.
v1.0 Serviceprincipal Post Owners https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/serviceprincipal-post-owners.md
Namespace: microsoft.graph
[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)]
-Add an owner for the [servicePrincipal](../resources/serviceprincipal.md).
+Add an owner for the [servicePrincipal](../resources/serviceprincipal.md). Service principal owners can be users, the service principal itself, or other service principals.
## Permissions 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 Sitepage Getwebpartsbyposition https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/sitepage-getwebpartsbyposition.md
Title: 'sitepage: get webparts by position'
-description: 'Get a collection of webParts by position information'
+ Title: "sitepage: getWebPartsByPosition"
+description: "Get a collection of webParts by position information"
ms.localizationpriority: medium ms.prod: sharepoint doc_type: apiPageType
-# sitepage: get webparts by position
+# sitepage: getWebPartsByPosition
Namespace: microsoft.graph
If successful, this method returns a `200 OK` response code and a collection of
The following is an example of a request. +
+# [HTTP](#tab/http)
<!-- { "blockType": "request", "name": "list_webpart" } -->
-```http
+```msgraph-interactive
GET https://graph.microsoft.com/beta/sites/{siteId}/pages/{sitePageId}/getWebPartsByPosition(horizontalSectionId={horizontalSectionId},columnId={columnId},webPartIndex={webPartIndex},isInVerticalSection={isInVerticalSection}) ```
+# [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
v1.0 Sites List Followed https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/sites-list-followed.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Sites.Read.All, Sites.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Sites.Read.All, Sites.ReadWrite.All |
+|Application | Not supported. |
## HTTP request
v1.0 Smsauthenticationmethodconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/smsauthenticationmethodconfiguration-delete.md
Title: "Delete smsAuthenticationMethodConfiguration" description: "Delete a smsAuthenticationMethodConfiguration object."-+ ms.localizationpriority: medium ms.prod: "identity-and-sign-in" doc_type: apiPageType
v1.0 Smsauthenticationmethodconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/smsauthenticationmethodconfiguration-get.md
Title: "Get smsAuthenticationMethodConfiguration" description: "Read the properties and relationships of a smsAuthenticationMethodConfiguration object."-+ ms.localizationpriority: medium ms.prod: "identity-and-sign-in" doc_type: apiPageType
Content-Type: application/json
"isRegistrationRequired": false, "isUsableForSignIn": true }
- ]
+ ],
+ "excludeTargets": []
} ```
v1.0 Smsauthenticationmethodconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/smsauthenticationmethodconfiguration-update.md
Title: "Update smsAuthenticationMethodConfiguration" description: "Update the properties of a smsAuthenticationMethodConfiguration object."-+ ms.localizationpriority: medium ms.prod: "identity-and-sign-in" doc_type: apiPageType
The following table shows the properties that are required when you update the [
## Response
-If successful, this method returns a `200 OK` response code and an updated [smsAuthenticationMethodConfiguration](../resources/smsauthenticationmethodconfiguration.md) object in the response body.
+If successful, this method returns a `204 No Content` response code. It does not return anything in the response body.
## Examples
Content-Type: application/json
### Response
-**Note:** The response object shown here might be shortened for readability.
+The following is an example of the response
<!-- { "blockType": "response",
- "truncated": true,
- "@odata.type": "microsoft.graph.smsAuthenticationMethodConfiguration"
+ "truncated": true
} --> ``` http
-HTTP/1.1 200 OK
-Content-Type: application/json
-
-{
- "@odata.type": "#microsoft.graph.smsAuthenticationMethodConfiguration",
- "id": "713980c7-80c7-7139-c780-3971c7803971",
- "state": "String"
-}
+HTTP/1.1 204 No Content
```
v1.0 Softwareoathauthenticationmethodconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/softwareoathauthenticationmethodconfiguration-delete.md
+
+ Title: "Delete softwareOathAuthenticationMethodConfiguration"
+description: "Delete a softwareOathAuthenticationMethodConfiguration object."
+
+ms.localizationpriority: medium
++
+# Delete softwareOathAuthenticationMethodConfiguration
+Namespace: microsoft.graph
++
+Revert the [third-party software Oath authentication method policy](../resources/softwareoathauthenticationmethodconfiguration.md) to its default configuration.
+
+## Permissions
+One of the following permissions is required to 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)|Policy.ReadWrite.AuthenticationMethod|
+|Delegated (personal Microsoft account)|Not supported.|
+|Application|Policy.ReadWrite.AuthenticationMethod|
+
+For delegated scenarios, the administrator needs one of the following [Azure AD roles](/azure/active-directory/users-groups-roles/directory-assign-admin-roles#available-roles):
+
+* Authentication Policy Administrator
+* Global Administrator
+
+## HTTP request
+
+<!-- {
+ "blockType": "ignored"
+}
+-->
+``` http
+DELETE /policies/authenticationMethodsPolicy/authenticationMethodConfigurations/softwareOath
+```
+
+## 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_softwareoathauthenticationmethodconfiguration"
+}
+-->
+``` http
+DELETE https://graph.microsoft.com/beta/policies/authenticationMethodsPolicy/authenticationMethodConfigurations/softwareOath
+```
+
+# [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 Softwareoathauthenticationmethodconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/softwareoathauthenticationmethodconfiguration-get.md
+
+ Title: "Get softwareOathAuthenticationMethodConfiguration"
+description: "Read the properties and relationships of a softwareOathAuthenticationMethodConfiguration object."
+
+ms.localizationpriority: medium
++
+# Get softwareOathAuthenticationMethodConfiguration
+Namespace: microsoft.graph
++
+Read the properties and relationships of a [softwareOathAuthenticationMethodConfiguration](../resources/softwareoathauthenticationmethodconfiguration.md) object, which represents the third-party software OATH authentication method policy for the Azure AD 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)|Policy.Read.All, Policy.ReadWrite.AuthenticationMethod|
+|Delegated (personal Microsoft account)|Not supported.|
+|Application|Policy.Read.All, Policy.ReadWrite.AuthenticationMethod|
+
+For delegated scenarios, the administrator needs one of the following [Azure AD roles](/azure/active-directory/users-groups-roles/directory-assign-admin-roles#available-roles):
+
+* Global Reader
+* Authentication Policy Administrator
+* Global Administrator
+
+## HTTP request
+
+<!-- {
+ "blockType": "ignored"
+}
+-->
+``` http
+GET /policies/authenticationMethodsPolicy/authenticationMethodConfigurations/softwareOath
+```
+
+## 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 [softwareOathAuthenticationMethodConfiguration](../resources/softwareoathauthenticationmethodconfiguration.md) object in the response body.
+
+## Examples
+
+### Request
+The following is an example of a request.
+
+# [HTTP](#tab/http)
+<!-- {
+ "blockType": "request",
+ "name": "get_softwareoathauthenticationmethodconfiguration"
+}
+-->
+``` http
+GET https://graph.microsoft.com/beta/policies/authenticationMethodsPolicy/authenticationMethodConfigurations/softwareOath
+```
+
+# [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.softwareOathAuthenticationMethodConfiguration"
+}
+-->
+``` http
+HTTP/1.1 200 OK
+Content-Type: application/json
+
+{
+ "value": {
+ "@odata.type": "#microsoft.graph.softwareOathAuthenticationMethodConfiguration",
+ "id": "SoftwareOath",
+ "state": "enabled",
+ "includeTargets": [
+ {
+ "targetType": "group",
+ "id": "all_users",
+ "isRegistrationRequired": false
+ }
+ ],
+ "excludeTargets": []
+ }
+}
+```
+
v1.0 Softwareoathauthenticationmethodconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/softwareoathauthenticationmethodconfiguration-update.md
+
+ Title: "Update softwareOathAuthenticationMethodConfiguration"
+description: "Update the properties of a softwareOathAuthenticationMethodConfiguration object."
+
+ms.localizationpriority: medium
++
+# Update softwareOathAuthenticationMethodConfiguration
+Namespace: microsoft.graph
++
+Update the properties of a [softwareOathAuthenticationMethodConfiguration](../resources/softwareoathauthenticationmethodconfiguration.md) object, which represents the third-party software OATH authentication method policy for the Azure AD 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)|Policy.ReadWrite.AuthenticationMethod|
+|Delegated (personal Microsoft account)|Not supported.|
+|Application|Policy.ReadWrite.AuthenticationMethod|
+
+For delegated scenarios, the administrator needs one of the following [Azure AD roles](/azure/active-directory/users-groups-roles/directory-assign-admin-roles#available-roles):
+
+* Authentication Policy Administrator
+* Global Administrator
+
+## HTTP request
+
+<!-- {
+ "blockType": "ignored"
+}
+-->
+``` http
+PATCH /policies/authenticationMethodsPolicy/authenticationMethodConfigurations/softwareOath
+```
+
+## 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 [softwareOathAuthenticationMethodConfiguration](../resources/softwareoathauthenticationmethodconfiguration.md) object with the values of fields that should be updated. Existing properties that are not included in the request body will maintain their previous values or be recalculated based on changes to other property values. For best performance, don't include existing values that haven't changed.
+
+For the list of properties, see [softwareOathAuthenticationMethodConfiguration](../resources/softwareoathauthenticationmethodconfiguration.md).
+
+>**Note:** The `@odata.type` property with a value of `#microsoft.graph.softwareOathAuthenticationMethodConfiguration` must be included in the body.
+
+## Response
+
+If successful, this method returns a `204 No Content` response code. It does not return anything in the response body.
+
+## Examples
+
+### Request
+The following is an example of a request.
+
+# [HTTP](#tab/http)
+<!-- {
+ "blockType": "request",
+ "name": "update_softwareoathauthenticationmethodconfiguration"
+}
+-->
+``` http
+PATCH https://graph.microsoft.com/beta/policies/authenticationMethodsPolicy/authenticationMethodConfigurations/softwareOath
+Content-Type: application/json
+
+{
+ "@odata.type": "#microsoft.graph.softwareOathAuthenticationMethodConfiguration",
+ "state": "disabled"
+}
+```
+
+# [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 Solutionsroot List Businessscenarios https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/solutionsroot-list-businessscenarios.md
+
+ Title: "List businessScenarios"
+description: "Get a list of all businessScenario objects in an organization."
+
+ms.localizationpriority: medium
++
+# List businessScenarios
+
+Namespace: microsoft.graph
++
+Get a list of all [businessScenario](../resources/businessscenario.md) objects in an organization.
+
+## Permissions
+
+One of the following permissions is required to 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
+```
+
+## 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 collection of [businessScenario](../resources/businessscenario.md) objects in the response body.
+
+## Examples
+
+### Request
+
+The following is an example of a request.
+
+# [HTTP](#tab/http)
+<!-- {
+ "blockType": "request",
+ "name": "list_businessscenario"
+}
+-->
+``` http
+GET https://graph.microsoft.com/beta/solutions/businessScenarios
+```
+
+# [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": "Collection(microsoft.graph.businessScenario)"
+}
+-->
+``` http
+HTTP/1.1 200 OK
+Content-Type: application/json
+
+{
+ "value": [
+ {
+ "@odata.type": "#microsoft.graph.businessScenario",
+ "id": "c5d514e6c6864911ac46c720affb6e4d",
+ "displayName": "Contoso Order Tracking",
+ "uniqueName": "com.contoso.apps.ordertracking",
+ "ownerAppIds": [
+ "44109254-4b2b-7a33-76ee-c890a167b295"
+ ]
+ }
+ ]
+}
+```
v1.0 Solutionsroot Post Businessscenarios https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/solutionsroot-post-businessscenarios.md
+
+ Title: "Create businessScenario"
+description: "Create a new businessScenario object."
+
+ms.localizationpriority: medium
++
+# Create businessScenario
+Namespace: microsoft.graph
++
+Create a new [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"
+}
+-->
+``` http
+POST /solutions/businessScenarios
+```
+
+## 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 [businessScenario](../resources/businessscenario.md) object.
+
+You can specify the following properties when you create a **businessScenario**.
+
+|Property|Type|Description|
+|:|:|:|
+|displayName|String|Display name of the scenario. Required.|
+|uniqueName|String|Unique name of the scenario. To avoid conflicts, the recommended value for the unique name is a reverse domain name format, owned by the author of the scenario. For example, a scenario authored by *Contoso.com* would have a unique name that starts with `com.contoso`. 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 `201 Created` 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": "create_businessscenario_from_"
+}
+-->
+``` http
+POST https://graph.microsoft.com/beta/solutions/businessScenarios
+Content-Type: application/json
+
+{
+ "@odata.type": "#microsoft.graph.businessScenario",
+ "displayName": "Contoso Order Tracking",
+ "uniqueName": "com.contoso.apps.ordertracking"
+}
+```
+
+# [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 201 Created
+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 Synchronization Synchronizationjob Restart https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/synchronization-synchronizationjob-restart.md
One of the following permissions is required to call this API. To learn more, in
|Application |Application.ReadWrite.OwnedBy, Directory.ReadWrite.All | ## HTTP Request+
+`{servicePrincipalId}` refers to the **id** of the service principal object. **id** is referred to as the **Object ID** of the enterprise application in the Azure portal.
<!-- { "blockType": "ignored" } --> ```http
-POST /servicePrincipals/{id}/synchronization/jobs/{jobId}/restart
+POST /servicePrincipals/{servicePrincipalId}/synchronization/jobs/{jobId}/restart
``` ## Request headers
v1.0 Taskfileattachment Createuploadsession https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/taskfileattachment-createuploadsession.md
One of the following permissions is required to call this API. To learn more, in
|:|:| |Delegated (work or school account)|Tasks.ReadWrite| |Delegated (personal Microsoft account)|Tasks.ReadWrite|
-|Application|Not supported.|
+|Application|Tasks.ReadWrite.All|
## HTTP request
v1.0 Taskfileattachment Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/taskfileattachment-delete.md
One of the following permissions is required to call this API. To learn more, in
|:|:| |Delegated (work or school account)|Tasks.ReadWrite| |Delegated (personal Microsoft account)|Tasks.ReadWrite|
-|Application|Not supported.|
+|Application|Tasks.ReadWrite.All|
## HTTP request
DELETE https://graph.microsoft.com/beta/me/todo/lists/AAMehdkfuhgAAA=/tasks/AAMk
[!INCLUDE [sample-code](../includes/snippets/go/delete-taskfileattachment-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/delete-taskfileattachment-php-snippets.md)] [!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
v1.0 Taskfileattachment Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/taskfileattachment-get.md
One of the following permissions is required to call this API. To learn more, in
|:|:| |Delegated (work or school account)|Tasks.Read, Tasks.ReadWrite| |Delegated (personal Microsoft account)|Tasks.Read, Tasks.ReadWrite|
-|Application|Not supported.|
+|Application|Tasks.Read.All, Tasks.ReadWrite.All|
## HTTP request To get a file attached to a [todoTask](../resources/todotask.md):
v1.0 Teamwork Sendactivitynotificationtorecipients https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/teamwork-sendactivitynotificationtorecipients.md
POST /teamwork/sendActivityNotificationToRecipients
| Authorization | Bearer {token}. Required. | | Content-Type | application/json. Required. |
+> **Note**: The token provided must be at least 45 minutes away from expiry. The API call will return a `412 Precondition Failed` response if the token expires within 45 minutes.
+ ## Request body In the request body, supply JSON representation of the parameters.
v1.0 Teamworkdeviceconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/teamworkdeviceconfiguration-get.md
If successful, this method returns a `200 OK` response code and a [teamworkDevic
### Request
+The following is an example of a request.
+ # [HTTP](#tab/http) <!-- { "blockType": "request",
GET https://graph.microsoft.com/beta/teamwork/devices/e19229ed-29ed-e192-ed29-92
+### Response
+The following is an example of the response.
-### Response
>**Note:** The response object shown here might be shortened for readability. <!-- { "blockType": "response",
v1.0 Teamworkdevicehealth Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/teamworkdevicehealth-get.md
If successful, this method returns a `200 OK` response code and a [teamworkDevic
### Request
+The following is an example of a request.
+ # [HTTP](#tab/http) <!-- { "blockType": "request",
GET https://graph.microsoft.com/beta/teamwork/devices/d8214fe3-4fe3-d821-e34f-21
### Response+
+The following is an example of the response.
+ >**Note:** The response object shown here might be shortened for readability. <!-- { "blockType": "response",
v1.0 Temporaryaccesspassauthenticationmethodconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/temporaryaccesspassauthenticationmethodconfiguration-get.md
Content-Type: application/json
"id": "all_users", "isRegistrationRequired": false }
- ]
+ ],
+ "excludeTargets": []
} ```
v1.0 Todo List Lists https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/todo-list-lists.md
One of the following permissions is required to call this API. To learn more, in
|Permission type|Permissions (from least to most privileged)| |:|:|
-|Delegated (work or school account)|Tasks.ReadWrite|
-|Delegated (personal Microsoft account)|Tasks.ReadWrite|
-|Application|Not supported|
+|Delegated (work or school account)|Tasks.Read, Tasks.ReadWrite|
+|Delegated (personal Microsoft account)|Tasks.Read, Tasks.ReadWrite|
+|Application|Tasks.Read.All, Tasks.ReadWrite.All|
## HTTP request
v1.0 Todo Post Lists https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/todo-post-lists.md
One of the following permissions is required to call this API. To learn more, in
|:|:| |Delegated (work or school account)|Tasks.ReadWrite| |Delegated (personal Microsoft account)|Tasks.ReadWrite|
-|Application|Not supported|
+|Application|Tasks.ReadWrite.All |
## HTTP request
v1.0 Todotask Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/todotask-delete.md
One of the following permissions is required to call this API. To learn more, in
|:|:| |Delegated (work or school account)|Tasks.ReadWrite| |Delegated (personal Microsoft account)|Tasks.ReadWrite|
-|Application|Not supported|
+|Application| Tasks.ReadWrite.All |
## HTTP request
v1.0 Todotask Delta https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/todotask-delta.md
One of the following permissions is required to call this API. To learn more, in
|Permission type | Permissions (from least to most privileged) | |:--|:|
-|Delegated (work or school account) | Tasks.ReadWrite |
-|Delegated (personal Microsoft account) | Tasks.ReadWrite |
-|Application | Not supported |
+|Delegated (work or school account) | Tasks.Read, Tasks.ReadWrite |
+|Delegated (personal Microsoft account) | Tasks.Read, Tasks.ReadWrite |
+|Application|Tasks.Read.All, Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Todotask Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/todotask-get.md
One of the following permissions is required to call this API. To learn more, in
|Permission type|Permissions (from least to most privileged)| |:|:|
-|Delegated (work or school account)|Tasks.ReadWrite|
-|Delegated (personal Microsoft account)|Tasks.ReadWrite|
-|Application|Not supported|
+|Delegated (work or school account)|Tasks.Read, Tasks.ReadWrite|
+|Delegated (personal Microsoft account)|Tasks.Read, Tasks.ReadWrite|
+|Application|Tasks.Read.All, Tasks.ReadWrite.All|
## HTTP request
If successful, this method returns a `200 OK` response code and a [todoTask](../
### Request
+The following is an example of a request.
+ # [HTTP](#tab/http) <!-- { "blockType": "request",
GET https://graph.microsoft.com/beta/me/todo/lists/AAMkADA1MTHgwAAA=/tasks/721a3
### Response
-**Note:** The response object shown here might be shortened for readability.
+
+The following is an example of the response.
+
+> **Note:** The response object shown here might be shortened for readability.
<!-- { "blockType": "response", "truncated": true,
Content-Type: application/json
"createdDateTime": "2020-07-22T10:39:03.7937971Z", "lastModifiedDateTime": "2020-07-22T12:02:10.8835421Z", "categories": [
- "Important",
- "Urgent"
- ],
+ "Important",
+ "Urgent"
+ ],
"id": "721a35e2-35e2-721a-e235-1a72e2351a72", "body": { "content": "",
v1.0 Todotask List Attachments https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/todotask-list-attachments.md
One of the following permissions is required to call this API. To learn more, in
|:|:| |Delegated (work or school account)|Tasks.Read, Tasks.ReadWrite| |Delegated (personal Microsoft account)|Tasks.Read, Tasks.ReadWrite|
-|Application|Not supported.|
+|Application|Tasks.Read.All, Tasks.ReadWrite.All|
## HTTP request
v1.0 Todotask List Checklistitems https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/todotask-list-checklistitems.md
One of the following permissions is required to call this API. To learn more, in
|:|:| |Delegated (work or school account)|Tasks.Read, Tasks.ReadWrite| |Delegated (personal Microsoft account)|Tasks.Read, Tasks.ReadWrite|
-|Application|Tasks.Read, Tasks.ReadWrite|
+|Application|Tasks.Read.All, Tasks.ReadWrite.All|
## HTTP request
v1.0 Todotask List Linkedresources https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/todotask-list-linkedresources.md
One of the following permissions is required to call this API. To learn more, in
|Permission type|Permissions (from least to most privileged)| |:|:|
-|Delegated (work or school account)|Tasks.ReadWrite|
-|Delegated (personal Microsoft account)|Tasks.ReadWrite|
-|Application|Not supported.|
+|Delegated (work or school account)|Tasks.Read, Tasks.ReadWrite|
+|Delegated (personal Microsoft account)|Tasks.Read, Tasks.ReadWrite|
+|Application|Tasks.Read.All, Tasks.ReadWrite.All|
## HTTP request
v1.0 Todotask Post Attachments https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/todotask-post-attachments.md
One of the following permissions is required to call this API. To learn more, in
|:|:| |Delegated (work or school account)|Tasks.ReadWrite| |Delegated (personal Microsoft account)|Tasks.ReadWrite|
-|Application|Not supported.|
+|Application|Tasks.ReadWrite.All|
## HTTP request
v1.0 Todotask Post Checklistitems https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/todotask-post-checklistitems.md
One of the following permissions is required to call this API. To learn more, in
|:|:| |Delegated (work or school account)|Tasks.ReadWrite| |Delegated (personal Microsoft account)|Tasks.ReadWrite|
-|Application|Tasks.ReadWrite|
+|Application|Tasks.ReadWrite.All|
## HTTP request
v1.0 Todotask Post Linkedresources https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/todotask-post-linkedresources.md
One of the following permissions is required to call this API. To learn more, in
|:|:| |Delegated (work or school account)|Tasks.ReadWrite| |Delegated (personal Microsoft account)|Tasks.ReadWrite|
-|Application|Not supported.|
+|Application|Tasks.ReadWrite.All|
## HTTP request
v1.0 Todotask Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/todotask-update.md
One of the following permissions is required to call this API. To learn more, in
|Permission type|Permissions (from least to most privileged)| |:|:|
-|Delegated (work or school account)|Tasks.ReadWrite|
-|Delegated (personal Microsoft account)|Tasks.ReadWrite|
-|Application|Not supported|
+|Delegated (work or school account) | Tasks.ReadWrite |
+|Delegated (personal Microsoft account) | Tasks.ReadWrite |
+|Application| Tasks.ReadWrite.All |
## HTTP request
v1.0 Todotasklist Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/todotasklist-delete.md
One of the following permissions is required to call this API. To learn more, in
|:|:| |Delegated (work or school account)|Tasks.Read| |Delegated (personal Microsoft account)|Tasks.Read|
-|Application|Not supported|
+|Application|Tasks.ReadWrite.All |
## HTTP request
v1.0 Todotasklist Delta https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/todotasklist-delta.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.ReadWrite | |Delegated (personal Microsoft account) | Tasks.ReadWrite |
-|Application | Not supported |
+|Application|Tasks.Read.All, Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Todotasklist Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/todotasklist-get.md
One of the following permissions is required to call this API. To learn more, in
|:|:| |Delegated (work or school account)|Tasks.ReadWrite| |Delegated (personal Microsoft account)|Tasks.ReadWrite|
-|Application|Not supported.|
+|Application|Tasks.Read.All, Tasks.ReadWrite.All |
## HTTP request
v1.0 Todotasklist List Tasks https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/todotasklist-list-tasks.md
One of the following permissions is required to call this API. To learn more, in
|:|:| |Delegated (work or school account)|Tasks.ReadWrite| |Delegated (personal Microsoft account)|Tasks.ReadWrite|
-|Application|Not supported|
+|Application|Tasks.Read.All, Tasks.ReadWrite.All |
## HTTP request
v1.0 Todotasklist Post Tasks https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/todotasklist-post-tasks.md
One of the following permissions is required to call this API. To learn more, in
|:|:| |Delegated (work or school account)|Tasks.ReadWrite| |Delegated (personal Microsoft account)|Tasks.ReadWrite|
-|Application|Not supported.|
+|Application|Tasks.ReadWrite.All |
## HTTP request
v1.0 Todotasklist Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/todotasklist-update.md
One of the following permissions is required to call this API. To learn more, in
|:|:| |Delegated (work or school account)|Tasks.ReadWrite| |Delegated (personal Microsoft account)|Tasks.ReadWrite|
-|Application|Not supported|
+|Application|Tasks.ReadWrite.All |
## HTTP request
v1.0 Unifiedroledefinition Assignedprincipals https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/unifiedroledefinition-assignedprincipals.md
One of the following permissions is required to call this API. To learn more, in
|Delegated (personal Microsoft account)|Not supported.| |Application|RoleManagement.Read.Directory, Directory.Read.All, RoleManagement.ReadWrite.Directory|
-If the caller does not have the permission to read properties for some of the objects included in the result set, the response will follow the [limited information returned for inaccessible member objects](/graph/permissions-reference#limited-information-returned-for-inaccessible-member-objects) pattern.
+If the caller does not have the permission to read properties for some of the objects included in the result set, the response will follow the [limited information returned for inaccessible member objects](/graph/permissions-overview#limited-information-returned-for-inaccessible-member-objects) pattern.
To read the properties that may require permissions for the object, grant the permissions to retrieve information about the object. For more information, see permissions for [users](user-list.md#permissions), [groups](group-list.md#permissions), and [service principals](serviceprincipal-list.md#permissions).
v1.0 User Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/user-get.md
Title: "Get a user"
+ Title: "Get user"
description: "Retrieve the properties and relationships of user object." ms.localizationpriority: high
ms.prod: "users"
doc_type: apiPageType
-# Get a user
+# Get user
Namespace: microsoft.graph
Content-type: application/json
"customSecurityAttributes": null } ```
+### Example 5: Use `$filter` to retrieve specific users based on a property value
-### Example 5: Get the value of a schema extension for a user
+This example shows how to use the `$filter` query parameter along with the `endswith` clause to retrieve a user with a specific value in the **mail** attribute. This request filters and returns all users with a mail address ending with contoso.com.
+
+#### Request
++
+# [HTTP](#tab/http)
+<!-- {
+ "blockType": "request",
+ "name": "get_user_filter"
+} -->
+```msgraph-interactive
+GET https://graph.microsoft.com/beta/users?$count=true&ConsistencyLevel=eventual&$filter=endsWith(mail,'@contoso.com')
+```
+
+# [C#](#tab/csharp)
+
+# [JavaScript](#tab/javascript)
+
+# [Java](#tab/java)
+
+# [Go](#tab/go)
+
+# [PowerShell](#tab/powershell)
+
+# [PHP](#tab/php)
++++
+#### Response
+
+<!-- {
+ "blockType": "response",
+ "truncated": true,
+ "@odata.type": "microsoft.graph.user",
+ "name": "get_user_filter"
+} -->
+```http
+HTTP/1.1 200 OK
+Content-type: application/json
+
+{
+ "@odata.context": "https://graph.microsoft.com/beta/$metadata#users",
+ "@odata.count": 1350,
+ "@odata.nextLink": "https://graph.microsoft.com/v1.0/users?$count=true&$filter=endsWith(mail,'@contoso.com')&ConsistencyLevel=eventual&$skiptoken=m~AQAnOzEyN2NjN2I3NTQzYzQ0YzA4NjlhYjU5MzUzYmNhNGI2OzswOzA7",
+ "value": [
+ {
+ "businessPhones": [],
+ "displayName": "Phantom Space",
+ "givenName": "Space",
+ "jobTitle": null,
+ "mail": "Space.Phantom@cloudezzy.com",
+ "mobilePhone": null,
+ "officeLocation": null,
+ "preferredLanguage": null,
+ "surname": "Phantom",
+ "userPrincipalName": "Space.Phantom@contoso.com",
+ "id": "00111916-c5c5-4dd2-9e31-aab96af7511e"
+ }
+ ]
+}
+```
+
+### Example 6: Get the value of a schema extension for a user
In this example, the ID of the schema extension is `ext55gb1l09_msLearnCourses`.
Content-type: application/json
} ``` --- ## See also - [Add custom data to resources using extensions](/graph/extensibility-overview)
v1.0 User List Cloudpcs https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/user-list-cloudpcs.md
Content-Type: application/json
"status": "provisioned", "lastModifiedDateTime": "2020-11-03T10:29:57Z", "statusDetails": null,
- "gracePeriodEndDateTime": "2020-11-010T20:00:34Z"
+ "gracePeriodEndDateTime": "2020-11-010T20:00:34Z",
+ "diskEncryptionState": "encryptedUsingPlatformManagedKey"
} ] }
v1.0 User List Mailfolders https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/user-list-mailfolders.md
If successful, this method returns a `200 OK` response code and collection of [m
This example includes a **mailSearchFolder** object in the response. The mail search folder is a child folder under the Inbox with the display name "Weekly digests". #### Request
-Here is an example of the request.
+The following is an example of the request.
# [HTTP](#tab/http) <!-- {
GET https://graph.microsoft.com/beta/me/mailFolders
#### Response
-Here 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. <!-- {
GET https://graph.microsoft.com/beta/me/mailFolders/?includeHiddenFolders=true
#### Response
-Here is an example of the response.
+The following is an example of the response.
>**Note:** The response object shown here is shortened for readability, and doesn't include all the default folders in a user mailbox. <!-- {
v1.0 User Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/user-update.md
Namespace: microsoft.graph
Update the properties of a [user](../resources/user.md) object. Not all properties can be updated by Member or Guest users with their default permissions without Administrator roles. [Compare member and guest default permissions](/azure/active-directory/fundamentals/users-default-permissions?context=graph/context#compare-member-and-guest-default-permissions) to see properties they can manage. ## Permissions
-One of the following pefrmissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference).
+One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference).
|Permission type | Permissions (from least to most privileged) | |:--|:|
You can update or assign a value to a single property or all properties in the e
#### Request -
-# [HTTP](#tab/http)
<!-- { "blockType": "request", "name": "update_schemaextension_properties"
Content-type: application/json
} ```
-# [C#](#tab/csharp)
-
-# [JavaScript](#tab/javascript)
-
-# [Java](#tab/java)
-
-# [Go](#tab/go)
-
-# [PowerShell](#tab/powershell)
-
-# [PHP](#tab/php)
---
+To remove the value of the schema extension from the user object, set the **ext55gb1l09_msLearnCourses** property to `null`.
#### Response
Content-type: application/json
HTTP/1.1 204 No Content ```
->**Note:** To remove the value of the schema extension from the user object, set the property to `null`. For example:
->
->```http
->PATCH https://graph.microsoft.com/v1.0/users/4562bcc8-c436-4f95-b7c0-4f8ce89dca5e
->Content-type: application/json
->
->{
-> "ext55gb1l09_msLearnCourses": null
->}
->```
- ## See also - [Add custom data to resources using extensions](/graph/extensibility-overview)
v1.0 Verticalsection Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/verticalsection-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 Virtualendpoint List Cloudpcs https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/virtualendpoint-list-cloudpcs.md
Content-Type: application/json
"userPrincipalName": "pmitchell@cpccustomer001.onmicrosoft.com", "lastModifiedDateTime": "2020-11-03T10:29:57Z", "statusDetails": null,
- "gracePeriodEndDateTime": "2020-11-010T20:00:34Z"
+ "gracePeriodEndDateTime": "2020-11-010T20:00:34Z",
+ "diskEncryptionState": "encryptedUsingPlatformManagedKey"
} ] }
v1.0 Virtualendpoint List Onpremisesconnections https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/virtualendpoint-list-onpremisesconnections.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": "passed"
+ "healthCheckStatus": "passed",
+ "virtualNetworkLocation": "westus2"
} ] }
v1.0 Virtualendpoint List Supportedregions https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/virtualendpoint-list-supportedregions.md
Content-Type: application/json
"id": "109919f3-19f3-1099-f319-9910f3199910", "displayName": "Demo-1", "regionStatus": "available",
- "supportedSolution": "windows365"
+ "supportedSolution": "windows365",
+ "regionGroup": "usCentral"
} ] }
v1.0 Voiceauthenticationmethodconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/voiceauthenticationmethodconfiguration-delete.md
+
+ Title: "Delete voiceAuthenticationMethodConfiguration"
+description: "Delete a voiceAuthenticationMethodConfiguration object."
+
+ms.localizationpriority: medium
++
+# Delete voiceAuthenticationMethodConfiguration
+Namespace: microsoft.graph
++
+Revert the [voice call authentication method policy](../resources/voiceauthenticationmethodconfiguration.md) to its default configuration.
+
+## Permissions
+One of the following permissions is required to 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)|Policy.ReadWrite.AuthenticationMethod|
+|Delegated (personal Microsoft account)|Not supported.|
+|Application|Policy.ReadWrite.AuthenticationMethod|
+
+For delegated scenarios, the administrator needs one of the following [Azure AD roles](/azure/active-directory/users-groups-roles/directory-assign-admin-roles#available-roles):
+
+* Authentication Policy Administrator
+* Global Administrator
+
+## HTTP request
+
+<!-- {
+ "blockType": "ignored"
+}
+-->
+``` http
+DELETE /policies/authenticationMethodsPolicy/authenticationMethodConfigurations/voice
+```
+
+## 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_voiceauthenticationmethodconfiguration"
+}
+-->
+``` http
+DELETE https://graph.microsoft.com/beta/policies/authenticationMethodsPolicy/authenticationMethodConfigurations/voice
+```
+
+# [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 Voiceauthenticationmethodconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/voiceauthenticationmethodconfiguration-get.md
+
+ Title: "Get voiceAuthenticationMethodConfiguration"
+description: "Read the properties and relationships of a voiceAuthenticationMethodConfiguration object."
+
+ms.localizationpriority: medium
++
+# Get voiceAuthenticationMethodConfiguration
+Namespace: microsoft.graph
++
+Read the properties and relationships of a [voiceAuthenticationMethodConfiguration](../resources/voiceauthenticationmethodconfiguration.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)|Policy.Read.All, Policy.ReadWrite.AuthenticationMethod|
+|Delegated (personal Microsoft account)|Not supported.|
+|Application|Policy.Read.All, Policy.ReadWrite.AuthenticationMethod|
+
+For delegated scenarios, the administrator needs one of the following [Azure AD roles](/azure/active-directory/users-groups-roles/directory-assign-admin-roles#available-roles):
+
+* Global Reader
+* Authentication Policy Administrator
+* Global Administrator
+
+## HTTP request
+
+<!-- {
+ "blockType": "ignored"
+}
+-->
+``` http
+GET /policies/authenticationMethodsPolicy/authenticationMethodConfigurations/voice
+```
+
+## 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 [voiceAuthenticationMethodConfiguration](../resources/voiceauthenticationmethodconfiguration.md) object in the response body.
+
+## Examples
+
+### Request
+The following is an example of a request.
+
+# [HTTP](#tab/http)
+<!-- {
+ "blockType": "request",
+ "name": "get_voiceauthenticationmethodconfiguration"
+}
+-->
+``` http
+GET https://graph.microsoft.com/beta/policies/authenticationMethodsPolicy/authenticationMethodConfigurations/voice
+```
+
+# [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.voiceAuthenticationMethodConfiguration"
+}
+-->
+``` http
+HTTP/1.1 200 OK
+Content-Type: application/json
+
+{
+ "value": {
+ "@odata.type": "#microsoft.graph.voiceAuthenticationMethodConfiguration",
+ "id": "Voice",
+ "state": "enabled",
+ "includeTargets": [
+ {
+ "targetType": "group",
+ "id": "all_users",
+ "isRegistrationRequired": false
+ }
+ ],
+ "excludeTargets": [],
+ "isOfficePhoneAllowed": "true"
+ }
+}
+```
+
v1.0 Voiceauthenticationmethodconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/voiceauthenticationmethodconfiguration-update.md
+
+ Title: "Update voiceAuthenticationMethodConfiguration"
+description: "Update the properties of a voiceAuthenticationMethodConfiguration object."
+
+ms.localizationpriority: medium
++
+# Update voiceAuthenticationMethodConfiguration
+Namespace: microsoft.graph
++
+Update the properties of a [voiceAuthenticationMethodConfiguration](../resources/voiceauthenticationmethodconfiguration.md) object, which represents the voice call authentication method policy for the Azure AD 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)|Policy.ReadWrite.AuthenticationMethod|
+|Delegated (personal Microsoft account)|Not supported.|
+|Application|Policy.ReadWrite.AuthenticationMethod|
+
+For delegated scenarios, the administrator needs one of the following [Azure AD roles](/azure/active-directory/users-groups-roles/directory-assign-admin-roles#available-roles):
+
+* Authentication Policy Administrator
+* Global Administrator
+
+## HTTP request
+
+<!-- {
+ "blockType": "ignored"
+}
+-->
+``` http
+PATCH /policies/authenticationMethodsPolicy/authenticationMethodConfigurations/voice
+```
+
+## 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 [voiceAuthenticationMethodConfiguration](../resources/softwareoathauthenticationmethodconfiguration.md) object with the values of fields that should be updated. Existing properties that are not included in the request body will maintain their previous values or be recalculated based on changes to other property values. For best performance, don't include existing values that haven't changed.
+
+For the list of properties, see [voiceAuthenticationMethodConfiguration](../resources/softwareoathauthenticationmethodconfiguration.md).
+
+>**Note:** The `@odata.type` property with a value of `#microsoft.graph.voiceAuthenticationMethodConfiguration` must be included in the body.
+
+## Response
+
+If successful, this method returns a `204 No Content` response code. It does not return anything in the response body.
+
+## Examples
+
+### Request
+The following is an example of a request.
+
+# [HTTP](#tab/http)
+<!-- {
+ "blockType": "request",
+ "name": "update_voiceauthenticationmethodconfiguration"
+}
+-->
+``` http
+PATCH https://graph.microsoft.com/beta/policies/authenticationMethodsPolicy/authenticationMethodConfigurations/voice
+Content-Type: application/json
+
+{
+ "@odata.type": "#microsoft.graph.voiceAuthenticationMethodConfiguration",
+ "isOfficePhoneAllowed": "false"
+}
+```
+
+# [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 Webpart Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/webpart-get.md
If successful, this method returns a `200 OK` response code and a [standardWebPa
The following is an example of a request. +
+# [HTTP](#tab/http)
<!-- { "blockType": "request", "name": "get_webpart" } -->
-```http
+```msgraph-interactive
GET https://graph.microsoft.com/beta/sites/{sitesId}/pages/{sitePageId}/webParts/{webPartId} ```
+# [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
v1.0 Webpart Getposition https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/webpart-getposition.md
If successful, this method returns a `200 OK` response code and a [webPartPositi
The following is an example of a request. +
+# [HTTP](#tab/http)
<!-- { "blockType": "request", "name": "getposition_webpart" } -->
-```http
+```msgraph-interactive
GET https://graph.microsoft.com/beta/sites/{sitesId}/pages/{sitePageId}/webParts/{webPartId}/getPositionOfWebPart ```
+# [C#](#tab/csharp)
+
+# [JavaScript](#tab/javascript)
+
+# [Java](#tab/java)
+
+# [Go](#tab/go)
+
+# [PHP](#tab/php)
++++ ### Response The following is an example of the response
v1.0 Webpart List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/webpart-list.md
If successful, this method returns a `200 OK` response code and a collection of
The following is an example of a request. +
+# [HTTP](#tab/http)
<!-- { "blockType": "request", "name": "list_webpart" } -->
-```http
+```msgraph-interactive
GET https://graph.microsoft.com/beta/sites/{sitesId}/pages/{sitePageId}/canvasLayout/horizontalSections/{horizontalSectionId}/columns/{horizontalSectionColumnId}/webparts ```
+# [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
v1.0 Windowsupdates Deployment Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/windowsupdates-deployment-update.md
PATCH /admin/windows/updates/deployments/{deploymentId}
## Request body In the request body, supply a JSON representation of the [deployment](../resources/windowsupdates-deployment.md) object.
-The following table shows the properties that can be set when you update the [deployment](../resources/windowsupdates-deployment.md).
+The following table shows the properties that can be set when you update a [deployment](../resources/windowsupdates-deployment.md).
|Property|Type|Description| |:|:|:|
If successful, this method returns a `202 Accepted` response code and an updated
## Examples
-### Example: Pause a deployment
+### Example 1: Pause a deployment
-In this example, the deployment is paused by updating the `requestedValue` of the deployment `state`.
+In this example, the deployment is paused by updating the **requestedValue** of the deployment **state**.
#### Request
+The following is an example of a request.
+ # [HTTP](#tab/http) <!-- { "blockType": "request",
Content-Type: application/json
#### Response
+The following is an example of the response.
+ <!-- { "blockType": "response", "truncated": true,
Content-Type: application/json
} ```
-### Example: Update deployment settings to add a monitoring rule
+### Example 2: Update deployment settings to add a monitoring rule
-In this example, the `settings` property of the deployment is updated to add a monitoring rule.
+In this example, the **settings** property of the deployment is updated to add a monitoring rule.
#### Request
+The following is an example of a request.
+ # [HTTP](#tab/http) <!-- { "blockType": "request",
Content-Type: application/json
#### Response
+The following is an example of the response.
+ <!-- { "blockType": "response", "truncated": true,
v1.0 Workbook Createsession https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/workbook-createsession.md
If successful, this method returns a `201 Created` response code and a [workbook
### Example 1: Session creation with long-running operation pattern #### Request+
+# [HTTP](#tab/http)
<!-- { "blockType": "request", "name": "create_excel_session_with_long_running"
Content-type: application/json
} ```
+# [C#](#tab/csharp)
+
+# [JavaScript](#tab/javascript)
+
+# [Java](#tab/java)
++++ #### Response >**Note:** The response object shown here might be shortened for readability. <!-- {
v1.0 X509certificateauthenticationmethodconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/x509certificateauthenticationmethodconfiguration-get.md
Content-Type: application/json
"id": "all_users", "isRegistrationRequired": false }
- ]
+ ],
+ "excludeTargets": []
} ```
v1.0 X509certificateauthenticationmethodconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/x509certificateauthenticationmethodconfiguration-update.md
The following properties can be updated.
## Response
-If successful, this method returns a `204 No Content` response code and an updated [x509CertificateAuthenticationMethodConfiguration](../resources/x509certificateauthenticationmethodconfiguration.md) object in the response body.
+If successful, this method returns a `204 No Content` response code. It does not return anything in the response body.
## Examples
v1.0 Accounttargetcontent https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/accounttargetcontent.md
+
+ Title: "accountTargetContent resource type"
+description: "Represents included or excluded users for an attack simulation training campaign."
+
+ms.localizationpriority: medium
++
+# accountTargetContent resource type
+
+Namespace: microsoft.graph
++
+Represents included or excluded users for an attack simulation training campaign.
+
+Base type of [addressBookAccountTargetContent](../resources/addressbookaccounttargetcontent.md) and [includeAllAccountTargetContent](../resources/includeallaccounttargetcontent.md).
+
+## Properties
+
+|Property|Type|Description|
+|:|:|:|
+|type|[accountTargetContentType](#accounttargetcontenttype-values)| The type of account target content. Possible values are: `unknown`,`includeAll`, `addressBook`, `unknownFutureValue`.|
+
+### accountTargetContentType values
+
+|Member|Description |
+|:|:|
+|unknown| Unknown type. |
+|includeAll| Include all users under tenant boundary. |
+|addressBook| Account details uploaded via Azure Active Directory.|
+|unknownFutureValue| Evolvable enumeration sentinel value. Do not use. |
+
+## Relationships
+
+None.
+
+## JSON representation
+
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.accountTargetContent"
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.accountTargetContent",
+ "type": "String"
+}
+```
+
+## See also
+
+- [Simulate a phishing attack](/microsoft-365/security/office-365-security/attack-simulation-training?view=o365-worldwide&preserve-view=true)
+- [Get started using attack simulation training](/microsoft-365/security/office-365-security/attack-simulation-training-get-started?view=o365-worldwide&preserve-view=true#simulations).
v1.0 Addressbookaccounttargetcontent https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/addressbookaccounttargetcontent.md
+
+ Title: "addressBookAccountTargetContent resource type"
+description: "Represents included or excluded users' email addresses for an attack simulation training campaign."
+
+ms.localizationpriority: medium
++
+# addressBookAccountTargetContent resource type
+
+Namespace: microsoft.graph
++
+Represents included or excluded users' email addresses for an attack simulation training campaign.
+
+Inherits from [accountTargetContent](../resources/accounttargetcontent.md).
+
+## Properties
+
+|Property|Type|Description|
+|:|:|:|
+|accountTargetEmails|String collection|List of user emails targeted for an attack simulation training campaign.|
+|type|accountTargetContentType| The type of account target content contains targeted user email addresses. The possible values are: `unknown`, `includeAll`, `addressBook`, `unknownFutureValue`. Inherited from [accountTargetContent](../resources/accounttargetcontent.md).|
+
+## Relationships
+
+None.
+
+## JSON representation
+
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.addressBookAccountTargetContent",
+ "openType": true
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.security.addressBookAccountTargetContent",
+ "accountTargetEmails": [
+ "String"
+ ],
+ "type": {
+ "@odata.type": "microsoft.graph.accountTargetContentType"
+ }
+}
+```
+
+## See also
+
+- [Simulate a phishing attack](/microsoft-365/security/office-365-security/attack-simulation-training?view=o365-worldwide&preserve-view=true)
+- [Get started using attack simulation training](/microsoft-365/security/office-365-security/attack-simulation-training-get-started?view=o365-worldwide&preserve-view=true#simulations).
v1.0 Applicationsegment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/applicationsegment.md
+
+ Title: "applicationSegment resource type"
+description: "An abstract type that exposes properties used to configure segment configurations that are allowed for an on-premises wildcard application that's published through Azure AD Application Proxy."
+ms.localizationpriority: medium
+++
+# applicationSegment resource type
+
+Namespace: microsoft.graph
++
+This is an abstract type that exposes properties used to configure segment configurations that are allowed for an on-premises wildcard application that's published through Azure AD Application Proxy. The following types are derived from this abstract type:
++ [webaApplicationSegment](webapplicationsegment.md)+
+## Properties
+
+| Property | Type | Description |
+|:-|:|:|
+|id|String|The unique identifier that is assigned to an application segment by Azure AD. Not nullable. Read-only. Supports `$filter` (`eq`). |
+
+## JSON representation
+
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.applicationSegment"
+}
+-->
+``` json
+{
+ "@odata.type": "microsoft.graph.applicationSegment",
+ "id": "String (identifier)"
+}
+```
v1.0 Appliedauthenticationeventlistener https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/appliedauthenticationeventlistener.md
+
+ Title: "appliedAuthenticationEventListener resource type"
+description: "Represents the listeners, such as Azure Logic Apps and Azure Functions, that are triggered by the corresponding events in an sign-in event."
+
+ms.localizationpriority: medium
++
+# appliedAuthenticationEventListener resource type
+
+Namespace: microsoft.graph
++
+Represents the listeners, such as Azure Logic Apps and Azure Functions, that are triggered by the corresponding events in an sign-in event.
+
+## Properties
+|Property|Type|Description|
+|:|:|:|
+|eventType|authenticationEventType|The type of authentication event that triggered the custom extension request. The possible values are: `tokenIssuanceStart`, `pageRenderStart`, `unknownFutureValue`.|
+|executedListenerId|String|ID of the Event Listener that was executed.|
+|handlerResult|[authenticationEventHandlerResult](../resources/authenticationeventhandlerresult.md)|The result from the listening client, such as an Azure Logic App and Azure Functions, of this authentication event.|
+
+## Relationships
+None.
+
+## JSON representation
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.appliedAuthenticationEventListener"
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.appliedAuthenticationEventListener",
+ "eventType": "String",
+ "executedListenerId": "String",
+ "handlerResult": {
+ "@odata.type": "microsoft.graph.authenticationEventHandlerResult"
+ }
+}
+```
+
v1.0 Attacksimulationoperation https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/attacksimulationoperation.md
+
+ Title: "attackSimulationOperation resource type"
+description: "Represents the status of a long-running attack simulation training operation."
+
+ms.localizationpriority: medium
++
+# attackSimulationOperation resource type
+
+Namespace: microsoft.graph
++
+Represents the status of a long-running attack simulation training operation.
+
+Inherits from [longRunningOperation](../resources/longrunningoperation.md).
+
+## Methods
+
+|Method|Return type|Description|
+|:|:|:|
+|[Get attackSimulationOperation](../api/attacksimulationroot-get-operation.md)|[attackSimulationOperation](../resources/attacksimulationoperation.md)|Get an attack simulation operation to track a long-running operation request for a tenant.|
+
+## Properties
+
+|Property|Type|Description|
+|:|:|:|
+|createdDateTime|DateTimeOffset|Operation created date time. Inherited from [longRunningOperation](../resources/longrunningoperation.md).|
+|id|String|The unique identifier for the operation. Inherited from [entity](../resources/entity.md).|
+|lastActionDateTime|DateTimeOffset|The time of the last action in the operation. 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 [longRunningOperation](../resources/longrunningoperation.md).|
+|percentageCompleted|Int32| Percentage of completion of the respective operation.|
+|resourceLocation|String|URI of the resource location. Inherited from [longRunningOperation](../resources/longrunningoperation.md).|
+|status|longRunningOperationStatus|Operation status. The possible values are: `notStarted`, `running`, `succeeded`, `failed`, `unknownFutureValue`. Inherited from [longRunningOperation](../resources/longrunningoperation.md).|
+|statusDetail|String|Status detail of the operation. Inherited from [longRunningOperation](../resources/longrunningoperation.md).|
+|tenantId|String|Tenant identifier.|
+|type|attackSimulationOperationType|The attack simulation operation type. Possible values are: `createSimulation`, `updateSimulation`, `unknownFutureValue`.|
+
+### attackSimulationOperationType values
+
+|Member|Description |
+|:|:|
+|createSimulation| The simulation creation operation. |
+|updateSimulation| The simulation update operation. |
+|unknownFutureValue| Evolvable enumeration sentinel value. Do not use. |
+
+## Relationships
+
+None.
+
+## JSON representation
+
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "keyProperty": "id",
+ "@odata.type": "microsoft.graph.attackSimulationOperation",
+ "baseType": "microsoft.graph.longRunningOperation",
+ "openType": false
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.attackSimulationOperation",
+ "createdDateTime": "String (timestamp)",
+ "id": "String (identifier)",
+ "lastActionDateTime": "String (timestamp)",
+ "percentageCompleted": "Int32",
+ "resourceLocation": "String",
+ "status": {
+ "@odata.type": "microsoft.graph.longRunningOperationStatus"
+ },
+ "statusDetail": "String",
+ "tenantId": "String",
+ "type": {
+ "@odata.type": "microsoft.graph.attackSimulationOperationType"
+ }
+}
+```
+
+## See also
+
+- [Simulate a phishing attack](/microsoft-365/security/office-365-security/attack-simulation-training?view=o365-worldwide&preserve-view=true)
+- [Get started using attack simulation training](/microsoft-365/security/office-365-security/attack-simulation-training-get-started?view=o365-worldwide&preserve-view=true#simulations).
v1.0 Attacksimulationroot https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/attacksimulationroot.md
Namespace: microsoft.graph
|Method|Return type|Description| |:|:|:| |[List simulations](../api/attacksimulationroot-list-simulations.md)|[simulation](../resources/simulation.md) collection|Get a list of attack simulation campaigns for a tenant.|
+|[Get simulations](../api/attacksimulationroot-list-simulations.md)|[simulation](../resources/simulation.md) |Get an attack simulation campaigns for a tenant.|
+|[Create simulations](../api/attacksimulationroot-create-simulation.md)|[simulation](../resources/simulation.md)|Create a new attack simulation campaigns for a tenant.|
+|[Update simulations](../api/attacksimulationroot-update-simulation.md)|[simulation](../resources/simulation.md)|Update a attack simulation campaigns for a tenant.|
+|[Delete simulations](../api/attacksimulationroot-delete-simulation.md)|[simulation](../resources/simulation.md)|Delete a attack simulation campaigns for a tenant.|
|[List simulationAutomations](../api/attacksimulationroot-list-simulationautomations.md)|[simulationAutomation](../resources/simulationautomation.md) collection|Get a list of attack simulation automations for a tenant.|
+|[Get simulationAutomations](../api/attacksimulationroot-list-simulationautomations.md)|[simulationAutomation](../resources/simulationautomation.md) |Get an attack simulation automations for a tenant.|
+|[List payloads](../api/attacksimulationroot-list-payloads.md)|[payload](../resources/payload.md) collection|Get the payload resources from the payloads navigation property.|
+|[Get payloads](../api/attacksimulationroot-get-payload.md)|[payload](../resources/payload.md)|Get the payload resource from the payloads navigation property.|
+|[Get attackSimulationOperation](../api/attacksimulationroot-get-operation.md)|[attackSimulationOperation](../resources/attacksimulationoperation.md)|Get an attack simulation campaign operation for a tracking ID.|
+|[Get excludedAccountTarget](../api/attacksimulationroot-get-excludedaccounttarget.md)|[accountTargetContent](../resources/accountTargetContent.md)|Get excluded account targets (users) for an attack simulation campaign for a tenant.|
+|[Get includedAccountTarget](../api/attacksimulationroot-get-includedaccounttarget.md)|[accountTargetContent](../resources/accountTargetContent.md)|Get included account targets (users) for an attack simulation campaign for a tenant.|
## Properties None.
None.
## Relationships |Relationship|Type|Description| |:|:|:|
+|operations|[attackSimulationOperation](../resources/attacksimulationoperation.md) collection|Represents an attack simulation training operation.|
+|payloads|[payload](../resources/payload.md) collection|Represents an attack simulation training campaign payload in a tenant.|
|simulationAutomations|[simulationAutomation](../resources/simulationautomation.md) collection|Represents simulation automation created to run on a tenant.| |simulations|[simulation](../resources/simulation.md) collection|Represents an attack simulation training campaign in a tenant.|
v1.0 Authenticationeventhandlerresult https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/authenticationeventhandlerresult.md
+
+ Title: "authenticationEventHandlerResult resource type"
+description: "An abstract type that defines the result of authentication to event listeners in Azure AD sign-ins."
+
+ms.localizationpriority: medium
++
+# authenticationEventHandlerResult resource type
+
+Namespace: microsoft.graph
++
+An abstract type that defines the result of authentication to event listeners in Azure AD sign-ins. This abstract type is inherited by the [customExtensionCalloutResult](../resources/customextensioncalloutresult.md) resource type.
+
+## Properties
+None.
+
+## Relationships
+None.
+
+## JSON representation
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.authenticationEventHandlerResult"
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.authenticationEventHandlerResult"
+}
+```
+
v1.0 Authenticationmethod https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/authenticationmethod.md
Namespace: microsoft.graph
Represents an authentication method registered to a user. An [authentication method](/azure/active-directory/authentication/concept-authentication-methods) is something used by a user to authenticate or otherwise prove their identity to the system. Some examples include password, phone (usable via SMS or voice call), FIDO2 security keys, and more.
+The **authenticationMethod** resource type is an abstract type that's inherited by the following derived types:
+++ [emailAuthenticationMethod](emailauthenticationmethod.md)++ [fido2AuthenticationMethod](fido2authenticationmethod.md)++ [microsoftAuthenticatorAuthenticationMethod](microsoftauthenticatorauthenticationmethod.md)++ [passwordlessMicrosoftAuthenticatorAuthenticationMethod](passwordlessmicrosoftauthenticatorauthenticationmethod.md)++ [passwordAuthenticationMethod](passwordauthenticationmethod.md)++ [phoneAuthenticationMethod](phoneauthenticationmethod.md)++ [softwareOathAuthenticationMethod](softwareoathauthenticationmethod.md)++ [temporaryAccessPassAuthenticationMethod](temporaryaccesspassauthenticationmethod.md)++ [windowsHelloForBusinessAuthenticationMethod](windowshelloforbusinessauthenticationmethod.md)+ > [!IMPORTANT] > Listing users' authentication methods only returns methods supported on this API version and registered to the user. See [Azure AD authentication methods API overview](authenticationmethods-overview.md) for a list of currently supported methods.
v1.0 Authenticationmethodconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/authenticationmethodconfiguration.md
The following authentication methods are derived from the **authenticationMethod
## Properties |Property|Type|Description| |:|:|:|
+|excludeTargets|[excludeTarget](../resources/excludetarget.md) collection|Groups of users that are excluded from a policy.|
|id|String|The policy name.| |state|authenticationMethodState|The state of the policy. Possible values are: `enabled`, `disabled`.|
v1.0 Authenticationmethods Overview https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/authenticationmethods-overview.md
ms.localizationpriority: medium
ms.prod: "identity-and-sign-in" doc_type: "conceptualPageType" Last updated : 10/21/2022 # Azure AD authentication methods API overview
v1.0 Authenticationmethods Usage Insights Overview https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/authenticationmethods-usage-insights-overview.md
ms.localizationpriority: medium
ms.prod: "identity-and-access-reports" doc_type: "conceptualPageType" Last updated : 01/25/2022 # Working with the authentication methods usage report API
v1.0 Authenticationmethodspolicies Overview https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/authenticationmethodspolicies-overview.md
ms.localizationpriority: medium
ms.prod: "identity-and-sign-in" doc_type: "conceptualPageType" Last updated : 02/05/2022 # Azure AD authentication methods policies API overview
v1.0 Authenticationmethodspolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/authenticationmethodspolicy.md
Defines authentication methods and the users that are allowed to use them to sig
|id|String|The identifier of the policy. Inherited from [entity](../resources/entity.md).| |lastModifiedDateTime|DateTimeOffset|The date and time of the last update to the policy.| |policyVersion|String|The version of the policy in use.|
+|policyMigrationState|authenticationMethodsPolicyMigrationState|The state of migration of the authentication methods policy from the legacy multifactor authentication and self-service password reset (SSPR) policies. The possible values are: <br/><li>`premigration` - means the authentication methods policy is used for authentication only, legacy policies are respected. <li>`migrationInProgress` - means the authentication methods policy is used for both authenication and SSPR, legacy policies are respected. <li>`migrationComplete` - means the authentication methods policy is used for authentication and SSPR, legacy policies are ignored. <li>`unknownFutureValue` - Evolvable enumeration sentinel value. Do not use. |
+|reconfirmationInDays|Int32|Days before the user will be asked to reconfirm their method. |
|registrationEnforcement|[registrationEnforcement](../resources/registrationenforcement.md)|Enforce registration at sign-in time. This property can be used to remind users to set up targeted authentication methods.| ## Relationships
v1.0 Authenticationmethodtarget https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/authenticationmethodtarget.md
Title: "authenticationMethodTarget resource type"
-description: "A collection of users or groups enabled to use an authentication method as part of an authentication method policy."
+description: "A collection of groups that are enabled to use an authentication method as part of an authentication method policy."
ms.localizationpriority: medium ms.prod: "identity-and-sign-in"
Namespace: microsoft.graph
[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)]
-A collection of users or groups enabled to use an authentication method as part of an authentication method policy in Azure AD. Inherits from [entity](entity.md).
+A collection of groups that are enabled to use an authentication method as part of an authentication method policy in Azure AD. Inherits from [entity](entity.md).
## Properties
A collection of users or groups enabled to use an authentication method as part
|:|:|:| |id|String|Object identifier of an Azure AD user or group.| |isRegistrationRequired|Boolean|Determines if the user is enforced to register the authentication method.|
-|targetType|authenticationMethodTargetType| Possible values are: `user`, `group`, and `unknownFutureValue`.|
+|targetType|authenticationMethodTargetType| Possible values are: `group`, and `unknownFutureValue`. From December 2022, targeting individual users using `user` is no longer recommended. Existing targets will remain but we recommend to move the individual users to a targeted group.|
|useForSignIn|Boolean|Determines if the authentication method can be used to sign in to Azure AD.| ## Relationships
v1.0 Authenticationstrengths Overview https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/authenticationstrengths-overview.md
ms.localizationpriority: medium
ms.prod: "identity-and-sign-in" doc_type: "conceptualPageType" Last updated : 12/10/2022 # Azure AD authentication strengths API overview
v1.0 Azure Ad Auditlog Overview https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/azure-ad-auditlog-overview.md
ms.localizationpriority: high
doc_type: conceptualPageType ms.prod: "identity-and-access-reports" Last updated : 09/16/2022 # Activity reports API overview
v1.0 Azure Ad Overview https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/azure-ad-overview.md
ms.localizationpriority: high
doc_type: conceptualPageType ms.prod: "identity-and-access" Last updated : 11/29/2022 # Working with Azure Active Directory resources in Microsoft Graph
The following table lists some common use cases for Azure AD resources.
| Manage and monitor time-bound privileged access to directory and Azure resources for administrators and IT professionals with Privileged Identity Management (PIM). | [Privileged Identity Management API](../resources/privilegedidentitymanagement-root.md) | [What is Azure AD Privileged Identity Management?](/azure/active-directory/active-directory-privileged-identity-management-configure)| | Monitor identity risk events like users signing in from malware-infected devices or from unfamiliar locations. | [Identity Protection Service API](../resources/identityprotection-overview.md) | [Azure Active Directory Identity Protection](/azure/active-directory/active-directory-identityprotection)<br/><br/>[Azure Active Directory risk events](/azure/active-directory/active-directory-reporting-risk-events) | | **Manage devices** | | |
-| Manage devices registered in the organization. Devices are registered to users and include items like laptops, desktops, tablets, and mobile phones. Devices are typically created in the cloud using the Device Registration Service or by Microsoft Intune. They're used by conditional access policies for multifactor authentication. | [device](../resources/device.md) | [Getting started with Azure Active Directory device registration](/azure/active-directory/active-directory-device-registration-overview) |
+| Manage devices registered in the organization. Devices are registered to users and include items like laptops, desktops, tablets, and mobile phones. Devices are typically created in the cloud using the Device Registration Service or by Microsoft Intune. They're used by conditional access policies for multifactor authentication. | [device](../resources/device.md) | [Getting started with Azure Active Directory device registration](/mem/intune/enrollment/).<br/><br/>[What is Intune?](/mem/intune/fundamentals/what-is-intune)<br/><br/>[Enroll devices for management in Intune](/mem/intune/enrollment/) |
| **App management** | | | | Manage app configuration in a developer tenant. | [application](../resources/application.md) | [Application and service principal objects in Azure Active Directory](/azure/active-directory/develop/active-directory-application-objects) | | Manage apps installed in a tenant. | [servicePrinicpal](../resources/serviceprincipal.md) | [Application and service principal objects in Azure Active Directory](/azure/active-directory/develop/active-directory-application-objects) |
v1.0 Businessscenario Overview https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/businessscenario-overview.md
+
+ Title: "Use the business scenarios API in Microsoft Graph (preview)"
+description: "The business scenarios API allows for the creation and management of business scenarios that configure and manage the integration of data into Microsoft Graph."
+
+ms.localizationpriority: medium
++
+# Use the business scenarios API in Microsoft Graph (preview)
++
+The business scenarios API allows for the creation and management of business scenarios that configure and manage the integration of data into Microsoft Graph.
+
+## Structure of a business scenario
+
+A business scenario is represented by the [businessScenario](businessscenario.md) entity. A **businessScenario** resource specifies general information about the scenario, the apps that use that scenario, and configurations for entities that apps can manage to support the scenario. Apps can identify the instance of **businessScenario** by the **uniqueName** property using a reverse domain name format.
+
+### Entities available in business scenarios
+
+The business scenarios API is designed to allow Microsoft Graph services to extend it to support service-specific scenarios that are specific to customers.
+
+Currently, [Planner](businessscenario-planner-overview.md) has extended the API. The API supports custom scenario data for Planner in the [businessScenarioTask](businessscenariotask.md) entity.
+
+> [!Note]
+> Do you have a scenario that requires bringing in custom data as entities to another Microsoft 365 service? [Suggest the feature or vote for existing feature requests](https://developer.microsoft.com/en-us/graph/support).
+
+## Creating a business scenario
+
+Business scenarios can be created by applications using the delegated permission `BusinessScenarioConfig.ReadWrite.OwnedBy`. Creating a business scenario requires specifying a display name and a unique name. The unique name should be in the reverse DNS format to prevent conflict between independent scenarios. The reverse DNS format takes the domain name the scenario creator owns and reverses it. For example, if a developer who owns `apps.contoso.com` creates a scenario, the unique name of the scenario should start with `com.contoso.apps`. Then further segments can be added to differentiate scenarios or groups of scenarios; for example, `com.contoso.apps.customerSupport.ticketManagement`. The unique name of the scenario must be distinct from every other scenario deployed in a tenant.
+
+For more information, see [Create businessScenario](../api/solutionsroot-post-businessscenarios.md).
+
+## Configuring behaviors for entities
+
+Each service supported through business scenarios provides configurations in the scenario. Applications need to have the `BusinessScenarioConfig.Read.OwnedBy` permission to be able to access these configurations, and the `BusinessScenarioConfig.ReadWrite.OwnedBy` permission to be able to change them. Each configuration is specific for the service. For more details, see the following service-specific topics:
+
+* [Planner](businessscenario-planner-overview.md) provides the following configurations:
+ * [plannerPlanConfiguration](plannerplanconfiguration.md)
+ * [plannerTaskConfiguration](plannertaskconfiguration.md)
+
+## Creating and managing data for a business scenario
+
+Each service supported through business scenarios provides access to data within a scenario. Applications need to be listed as an owner in a scenario to work with the data in the scenario. Applications also need to have the `BusinessScenarioData.Read.OwnedBy` permission to be able to read the data, and the `BusinessScenarioData.ReadWrite.OwnedBy` permission to be able to create new data, or to modify previously created data. For more details, see the following service-specific topics:
+
+* [Planner](businessscenario-planner-overview.md), with the following supported entities:
+ * [businessScenarioTask](businessscenariotask.md)
+
+## Deleting a business scenario
+
+Applications that own a business scenario can delete the scenario if they have the `BusinessScenarioConfig.ReadWrite.OwnedBy` permission. Deleting the scenario removes all the data associated with the scenario as well.
+
+For more information, see [Delete businessScenario](../api/businessscenario-delete.md).
+
+## Common use cases
+
+| Use cases | REST resources | See also |
+|:-|:|:|
+|Create, read, update, and delete business scenarios|[businessScenario](businessscenario.md)|[Methods of businessScenario](businessscenario.md#methods)|
+|Configure business scenarios for Planner| [plannerPlanConfiguration](plannerplanconfiguration.md) [plannerTaskConfiguration](plannertaskconfiguration.md)|[Methods of plannerPlanConfiguration](plannerplanconfiguration.md#methods) [Methods of plannerTaskConfiguration](plannertaskconfiguration.md#methods)|
+|Create, read, update, and delete business scenario tasks in Planner| [businessScenarioTask](businessscenariotask.md)| [businessScenarioTask](businessscenariotask.md#methods)|
+
+## What's new
+
+Find out about the [latest new features and updates](/graph/whats-new-overview) for this API set.
+
+## Next steps
+
+The business scenarios API allows apps to model and integrate real work business processes with a Microsoft 365 service over Microsoft Graph. To learn more:
+
+* Drill down on the methods and properties of the resources most helpful to your scenario.
+* Try the API in the [Graph Explorer](https://developer.microsoft.com/graph/graph-explorer).
+
+Need more ideas? See [how some of our partners are using Microsoft Graph](https://developer.microsoft.com/graph/partners).
v1.0 Businessscenario Planner Overview https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/businessscenario-planner-overview.md
+
+ Title: "Use the business scenarios API in Microsoft Graph to integrate with Planner (preview)"
+description: "Learn how to use the business scenarios in Microsoft Graph to integrate with Planner."
+
+ms.localizationpriority: medium
++
+# Use the business scenarios API in Microsoft Graph to integrate with Planner (preview)
++
+The [business scenarios API](businessscenario-overview.md) allows the creation of Planner tasks with scenario-controlled policies, in a specified target.
+
+## Planner configuration
+
+Apps can configure Planner entities in two ways when they use the business scenarios API. The following lists the supported ways:
+- The plan configuration that defines the elements of the plans created to host scenario tasks
+- The task configuration that controls how created tasks behave for users and applications
+
+### Plan configuration
+
+Plan configuration is represented by the [plannerPlanConfiguration](plannerplanconfiguration.md) entity. In plan configuration, the application can configure the buckets that appear in the plan, the order of these buckets, as well as the title of the plan and the name of the buckets. Each bucket is identified by an external ID that can be used when you create or update tasks to put them in the correct bucket. The buckets configured in the plan configuration do not specify any names to be used, instead this information is part of the localized names. Plan configuration also specifies localized names for the plan and the buckets as well as the default language code. Currently, created items use the default language.
+
+### Task configuration
+
+Task configuration is represented by the [plannerTaskConfiguration](plannertaskconfiguration.md) entity. In task configuration, the application can configure the policies that restrict the access to the applications and users that use the tasks managed by the scenario. The policies are grouped by [roles](plannerrelationshipbasedusertype.md). Each role identifies a group of callers, and each group can have different rules specified for them. The rules that apply to a specific call are picked in the following order. Only the first specified rules apply when a request modifies a task.
+
+- `taskAssignees`: Applies if the target task is assigned to the user who makes the call.
+- `groupOwners`: Applies if the user who makes the call is an owner of the container that the plan of the target task is in.
+- `groupMembers`: Applies if the user who makes the call is a member of the container that the plan of the task is in.
+- `applications`: Applies if the caller is application permissions, therefore the call isn't associated with a user.
+- `defaultRules`: Applies when none of the other conditions match.
+
+>**Note:** These rules restrict what the caller can do, but they cannot allow the caller to perform operations that they would otherwise not be permitted to.
+
+Each role specifies a default rule, and rules for specific actions and fields on task. The default rule must be either `allow` or `block`. If an action or field doesn't have a rule defined for it, the default rule is used to either keep it unrestricted for `allow`, or blocked from getting used for `block`. Keep in mind that this applies when new properties and actions are available to be configured, but the scenario configuration is not yet updated to specify rules for these.
+
+For more information about how to use rules, see [Configuring task rules in Planner](/graph/planner-task-rules-overview).
+
+## How to target tasks
+
+Created tasks are placed in plans based on the specified target when they are created. In the current version, a [group](group.md) can be targeted. The task is placed in the [plan](plannerplan.md) associated with the scenario in that group. If the group doesn't have a plan for the scenario, a new plan is created based on the plan configuration.
+
+## Task metadata and behavior
+
+As part of the tasks, [scenario properties](businessscenarioproperties.md) are required. These properties include the external ID of the task, which is required to be specified for each task. This value must be unique within the tenant. If you create a second task with the same external ID, it causes the first task to be returned without any modifications. You can also use the external ID as an alternate key when you work with tasks. Additionally, you can specify a context ID for each task. This value can be used to query the tasks with the same context ID, allowing the applications to group tasks across plans.
v1.0 Businessscenario https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/businessscenario.md
+
+ Title: "businessScenario resource type"
+description: "Represents a scenario that collects relevant data and configuration for a specific problem domain."
+
+ms.localizationpriority: medium
++
+# businessScenario resource type
+
+Namespace: microsoft.graph
++
+Represents a scenario that collects relevant data and configuration for a specific problem domain. For more details about business scenarios, see [Business scenarios API overview](/graph/businessscenarios-concept-overview).
+
+Inherits from [entity](../resources/entity.md).
+
+> [!Note]
+> Currently the business scenario API supports only Planner. The API allows app developers to define a [configuration for a Planner plan](/graph/api/resources/plannerplanconfiguration?view=graph-rest-beta&preserve-view=true) to host scenario-specific tasks, and bring in custom data in each [scenario-specific task](/graph/api/resources/businessscenariotask?view=graph-rest-beta&preserve-view=true).
+>
+> Do you have a scenario that requires bringing in custom data as entities to another Microsoft 365 service? [Suggest the feature or vote for existing feature requests](https://developer.microsoft.com/en-us/graph/support).
+
+## Methods
+
+|Method|Return type|Description|
+|:|:|:|
+|[List businessScenarios](../api/solutionsroot-list-businessscenarios.md)|[businessScenario](../resources/businessscenario.md) collection|Get a list of all [businessScenario](../resources/businessscenario.md) objects in an organization.|
+|[Create businessScenario](../api/solutionsroot-post-businessscenarios.md)|[businessScenario](../resources/businessscenario.md)|Create a new [businessScenario](../resources/businessscenario.md) object.|
+|[Get businessScenario](../api/businessscenario-get.md)|[businessScenario](../resources/businessscenario.md)|Read the properties and relationships of a [businessScenario](../resources/businessscenario.md) object.|
+|[Update businessScenario](../api/businessscenario-update.md)|[businessScenario](../resources/businessscenario.md)|Update the properties of a [businessScenario](../resources/businessscenario.md) object.|
+|[Delete businessScenario](../api/businessscenario-delete.md)|None|Delete a [businessScenario](../resources/businessscenario.md) object. The deletion of a scenario causes all data associated with the scenario to be deleted.|
+|[Get businessScenarioPlanner](../api/businessscenarioplanner-get.md)|[businessScenarioPlanner](../resources/businessscenarioplanner.md)|Read the properties and relationships of a [businessScenarioPlanner](../resources/businessscenarioplanner.md) object.|
+
+## Properties
+
+|Property|Type|Description|
+|:|:|:|
+|createdBy|[identitySet](../resources/identityset.md)|The identity of the user who created the scenario.|
+|createdDateTime|DateTimeOffset|The date and time when the scenario was created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is `2014-01-01T00:00:00Z`.|
+|displayName|String|Display name of the scenario.|
+|id|String|The unique identifier for the scenario. Inherited from [entity](../resources/entity.md).|
+|lastModifiedBy|[identitySet](../resources/identityset.md)|The identity of the user who last modified the scenario.|
+|lastModifiedDateTime|DateTimeOffset|The date and time when the scenario was last modified. 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`.|
+|ownerAppIds|String collection|Identifiers of applications that are authorized to work with this scenario.|
+|uniqueName|String|Unique name of the scenario. To avoid conflicts, the recommended value for the unique name is a reverse domain name format, owned by the author of the scenario. For example, a scenario authored by *Contoso.com* would have a unique name that starts with `com.contoso`.|
+
+## Relationships
+
+|Relationship|Type|Description|
+|:|:|:|
+|planner|[businessScenarioPlanner](../resources/businessscenarioplanner.md)|Planner content related to the scenario.|
+
+## JSON representation
+
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "keyProperty": "id",
+ "@odata.type": "microsoft.graph.businessScenario",
+ "baseType": "microsoft.graph.entity",
+ "openType": false
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.businessScenario",
+ "createdBy": {"@odata.type": "microsoft.graph.identitySet"},
+ "createdDateTime": "String (timestamp)",
+ "displayName": "String",
+ "id": "String (identifier)",
+ "lastModifiedBy": {"@odata.type": "microsoft.graph.identitySet"},
+ "lastModifiedDateTime": "String (timestamp)",
+ "ownerAppIds": ["String"],
+ "uniqueName": "String"
+}
+```
v1.0 Businessscenariogrouptarget https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/businessscenariogrouptarget.md
+
+ Title: "businessScenarioGroupTarget resource type"
+description: "Represents a [group](../resources/group.md) which will be used as the target when creating tasks in a [businessScenario](businessscenario.md)."
+
+ms.localizationpriority: medium
++
+# businessScenarioGroupTarget resource type
+
+Namespace: microsoft.graph
++
+Represents a [group](../resources/group.md) which will be used as the target when creating tasks in a [businessScenario](businessscenario.md).
+
+Inherits from [businessScenarioTaskTargetBase](../resources/businessscenariotasktargetbase.md).
+
+## Properties
+
+|Property|Type|Description|
+|:|:|:|
+|groupId|String|The unique identifier for the group. |
+|taskTargetKind|plannerTaskTargetKind|Represents the kind of the target. The possible values are: `group`, `unknownFutureValue`. The value of this property will be `group`. Inherited from [businessScenarioTaskTargetBase](../resources/businessscenariotasktargetbase.md).|
+
+## Relationships
+
+None.
+
+## JSON representation
+
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.businessScenarioGroupTarget"
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.businessScenarioGroupTarget",
+ "groupId": "String",
+ "taskTargetKind": "String"
+}
+```
v1.0 Businessscenarioplanner https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/businessscenarioplanner.md
+
+ Title: "businessScenarioPlanner resource type"
+description: "Contains Microsoft Planner-related content for the scenario, allowing both configuration of Planner behavior and accessing the scenario data in Planner."
+
+ms.localizationpriority: medium
++
+# businessScenarioPlanner resource type
+
+Namespace: microsoft.graph
++
+Contains Microsoft Planner-related content for the scenario, allowing both configuration of Planner behavior and accessing the scenario data in Planner.
+
+Inherits from [entity](../resources/entity.md).
+
+## Methods
+
+|Method|Return type|Description|
+|:|:|:|
+|[Get businessScenarioPlanner](../api/businessscenarioplanner-get.md)|[businessScenarioPlanner](../resources/businessscenarioplanner.md)|Read the properties and relationships of a [businessScenarioPlanner](../resources/businessscenarioplanner.md) object.|
+|[getPlan](../api/businessscenarioplanner-getplan.md)|[businessScenarioPlanReference](../resources/businessscenarioplanreference.md)|Get information about the [plannerPlan](../resources/plannerplan.md) mapped to a given target.|
+|[Get plannerPlanConfiguration](../api/plannerplanconfiguration-get.md)|[plannerPlanConfiguration](../resources/plannerplanconfiguration.md)|Get the **plannerPlanConfiguration** from the **planConfiguration** navigation property.|
+|[Get plannerTaskConfiguration](../api/plannertaskconfiguration-get.md)|[plannerTaskConfiguration](../resources/plannertaskconfiguration.md)|Get the **plannerTaskConfiguration** from the **taskConfiguration** navigation property.|
+|[List tasks](../api/businessscenarioplanner-list-tasks.md)|[businessScenarioTask](../resources/businessscenariotask.md) collection|Get the **businessScenarioTasks** from the **tasks** navigation property.|
+|[Create businessScenarioTask](../api/businessscenarioplanner-post-tasks.md)|[businessScenarioTask](../resources/businessscenariotask.md)|Create a new **businessScenarioTask** object.|
+
+## Properties
+
+|Property|Type|Description|
+|:|:|:|
+|id|String|The unique identifier for the **businessScenarioPlanner** object. Inherited from [entity](../resources/entity.md). Read-only.|
+
+## Relationships
+
+|Relationship|Type|Description|
+|:|:|:|
+|planConfiguration|[plannerPlanConfiguration](../resources/plannerplanconfiguration.md)|The configuration of Planner plans that will be created for the scenario.|
+|taskConfiguration|[plannerTaskConfiguration](../resources/plannertaskconfiguration.md)|The configuration of Planner tasks that will be created for the scenario.|
+|tasks|[businessScenarioTask](../resources/businessscenariotask.md) collection|The Planner tasks for the scenario.|
+
+## JSON representation
+
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "keyProperty": "id",
+ "@odata.type": "microsoft.graph.businessScenarioPlanner",
+ "baseType": "microsoft.graph.entity",
+ "openType": false
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.businessScenarioPlanner",
+ "id": "String (identifier)"
+}
+```
v1.0 Businessscenarioplanreference https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/businessscenarioplanreference.md
+
+ Title: "businessScenarioPlanReference resource type"
+description: "Represents a reference to a plannerPlan object."
+
+ms.localizationpriority: medium
++
+# businessScenarioPlanReference resource type
+
+Namespace: microsoft.graph
++
+Represents a reference to a [plannerPlan](../resources/plannerplan.md) object.
+
+Inherits from [entity](../resources/entity.md).
+
+## Methods
+
+|Method|Return type|Description|
+|:|:|:|
+|[getPlan](../api/businessscenarioplanner-getplan.md)|[businessScenarioPlanReference](../resources/businessscenarioplanreference.md)|Get information about the [plannerPlan](../resources/plannerplan.md) mapped to a given target.|
+
+## Properties
+
+|Property|Type|Description|
+|:|:|:|
+|id|String|The unique identifier for the **plannerPlan**. Inherited from [entity](../resources/entity.md). Read-only.|
+|title|String|The title property of the **plannerPlan**.|
+
+## Relationships
+
+None.
+
+## JSON representation
+
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "keyProperty": "id",
+ "@odata.type": "microsoft.graph.businessScenarioPlanReference",
+ "baseType": "microsoft.graph.entity",
+ "openType": false
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.businessScenarioPlanReference",
+ "id": "String (identifier)",
+ "title": "String"
+}
+```
v1.0 Businessscenarioproperties https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/businessscenarioproperties.md
+
+ Title: "businessScenarioProperties resource type"
+description: "Represents scenario metadata for a businessScenarioTask object."
+
+ms.localizationpriority: medium
++
+# businessScenarioProperties resource type
+
+Namespace: microsoft.graph
++
+Represents scenario metadata for a [businessScenarioTask](../resources/businessscenariotask.md) object.
+
+## Properties
+
+|Property|Type|Description|
+|:|:|:|
+|externalBucketId|String|The identifier for the [bucketDefinition](../resources/plannerplanconfigurationbucketdefinition.md) configured in the [plannerPlanConfiguration](../resources/plannerplanconfiguration.md) for the scenario. The task will be placed in the corresponding [plannerBucket](../resources/plannerbucket.md) in the target plan. Required.|
+|externalContextId|String|The identifier for the context of the task. Context is an application controlled value, and tasks can be queried by their **externalContextId**. Optional.|
+|externalObjectId|String|Application-specific identifier for the task. Every task for the same scenario must have a unique identifier specified for this property. Required.|
+|externalObjectVersion|String|Application-specific version of the task. Optional.|
+|webUrl|String|The URL to the application-specific experience for this task. Optional.|
+
+## Relationships
+
+None.
+
+## JSON representation
+
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.businessScenarioProperties"
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.businessScenarioProperties",
+ "externalBucketId": "String",
+ "externalContextId": "String",
+ "externalObjectId": "String",
+ "externalObjectVersion": "String",
+ "webUrl": "String"
+}
+```
v1.0 Businessscenariotask https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/businessscenariotask.md
+
+ Title: "businessScenarioTask resource type"
+description: "Represents a plannerTask that is associated with a businessScenario and contains additional scenario data."
+
+ms.localizationpriority: medium
++
+# businessScenarioTask resource type
+
+Namespace: microsoft.graph
++
+Represents a [plannerTask](../resources/plannertask.md) that is associated with a [businessScenario](../resources/businessscenario.md) and contains additional scenario data.
+
+Inherits from [plannerTask](../resources/plannertask.md).
+
+## Methods
+
+|Method|Return type|Description|
+|:|:|:|
+|[List businessScenarioTasks](../api/businessscenarioplanner-list-tasks.md)|[businessScenarioTask](../resources/businessscenariotask.md) collection|Get a list of the [businessScenarioTask](../resources/businessscenariotask.md) objects and their properties.|
+|[Create businessScenarioTask](../api/businessscenarioplanner-post-tasks.md)|[businessScenarioTask](../resources/businessscenariotask.md)|Create a new [businessScenarioTask](../resources/businessscenariotask.md) object.|
+|[Get businessScenarioTask](../api/businessscenariotask-get.md)|[businessScenarioTask](../resources/businessscenariotask.md)|Read the properties and relationships of a [businessScenarioTask](../resources/businessscenariotask.md) object.|
+|[Update businessScenarioTask](../api/businessscenariotask-update.md)|[businessScenarioTask](../resources/businessscenariotask.md)|Update the properties of a [businessScenarioTask](../resources/businessscenariotask.md) object.|
+|[Delete businessScenarioTask](../api/businessscenarioplanner-delete-tasks.md)|None|Delete a [businessScenarioTask](../resources/businessscenariotask.md) object.|
+
+## Properties
+
+|Property|Type|Description|
+|:|:|:|
+|activeChecklistItemCount|Int32|Number of checklist items with value set to `false`, representing incomplete items. Inherited from [plannerTask](../resources/plannertask.md).|
+|appliedCategories|[plannerAppliedCategories](../resources/plannerappliedcategories.md)|The categories to which the task has been applied. For possible values, see [plannerAppliedCategories](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](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. 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.|
+|checklistItemCount|Int32|Number of checklist items that are present on the task. Inherited from [plannerTask](../resources/plannertask.md).|
+|completedBy|[identitySet](../resources/identityset.md)|Identity of the user who completed the task. Inherited from [plannerTask](../resources/plannertask.md). Read-Only.|
+|completedDateTime|DateTimeOffset|Date and time at which the **percentComplete** of the task is set to `100`. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is `2014-01-01T00:00:00Z`. Inherited from [plannerTask](../resources/plannertask.md). Read-only.|
+|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).|
+|createdBy|[identitySet](../resources/identityset.md)|Identity of the user who created the task. Inherited from [plannerTask](../resources/plannertask.md). Read-Only.|
+|createdDateTime|DateTimeOffset|Date and time at which the task is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is `2014-01-01T00:00:00Z` Inherited from [plannerTask](../resources/plannertask.md). Read-only.|
+|creationSource|[plannerTaskCreation](../resources/plannertaskcreation.md)|Contains information about the origin of the task. 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).|
+|hasDescription|Boolean|`True` indicates that the details object of the task has a non-empty description; otherwise, `false`. Inherited from [plannerTask](../resources/plannertask.md). Read-only.|
+|id|String|The unique identifier for the task. Inherited from [entity](../resources/entity.md). Read-only.|
+|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](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).|
+|previewType|plannerPreviewType|This sets the type of preview that shows up on the task. Possible values are: `automatic`, `noPreview`, `checklist`, `description`, `reference`. 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).|
+|referenceCount|Int32|Number of external references that exist on the task. 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. Must be specified when creating a task.|
+|title|String|Title of the task. Inherited from [plannerTask](../resources/plannertask.md).|
+
+## Relationships
+
+|Relationship|Type|Description|
+|:|:|:|
+|assignedToTaskBoardFormat|[plannerAssignedToTaskBoardTaskFormat](../resources/plannerassignedtotaskboardtaskformat.md)|Used to render the task correctly in the task board view when grouped by **assignedTo**. Inherited from [plannerTask](../resources/plannertask.md).|
+|bucketTaskBoardFormat|[plannerBucketTaskBoardTaskFormat](../resources/plannerbuckettaskboardtaskformat.md)|Used to render the task correctly in the task board view when grouped by **bucket**. Inherited from [plannerTask](../resources/plannertask.md).|
+|details|[plannerTaskDetails](../resources/plannertaskdetails.md)|Additional details about the task. Inherited from [plannerTask](../resources/plannertask.md).|
+|progressTaskBoardFormat|[plannerProgressTaskBoardTaskFormat](../resources/plannerprogresstaskboardtaskformat.md)|Used to render the task correctly in the task board view when grouped by **progress**. Inherited from [plannerTask](../resources/plannertask.md).|
+
+## JSON representation
+
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "keyProperty": "id",
+ "@odata.type": "microsoft.graph.businessScenarioTask",
+ "baseType": "microsoft.graph.plannerTask",
+ "openType": false
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.businessScenarioTask",
+ "activeChecklistItemCount": "Int32",
+ "appliedCategories": {"@odata.type": "microsoft.graph.plannerAppliedCategories"},
+ "assigneePriority": "String",
+ "assignments": {"@odata.type": "microsoft.graph.plannerAssignments"},
+ "bucketId": "String",
+ "businessScenarioProperties": {"@odata.type": "microsoft.graph.businessScenarioProperties"},
+ "checklistItemCount": "Int32",
+ "completedBy": {"@odata.type": "microsoft.graph.identitySet"},
+ "completedDateTime": "String (timestamp)",
+ "conversationThreadId": "String",
+ "createdBy": {"@odata.type": "microsoft.graph.identitySet"},
+ "createdDateTime": "String (timestamp)",
+ "creationSource": {"@odata.type": "microsoft.graph.plannerTaskCreation"},
+ "dueDateTime": "String (timestamp)",
+ "hasDescription": "Boolean",
+ "id": "String (identifier)",
+ "orderHint": "String",
+ "percentComplete": "Int32",
+ "planId": "String",
+ "previewType": "String",
+ "priority": "Int32",
+ "referenceCount": "Int32",
+ "startDateTime": "String (timestamp)",
+ "target": {"@odata.type": "microsoft.graph.businessScenarioTaskTargetBase"},
+ "title": "String"
+}
+```
v1.0 Businessscenariotasktargetbase https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/businessscenariotasktargetbase.md
+
+ Title: "businessScenarioTaskTargetBase resource type"
+description: "An abstract type that represents a base object for all targets that can be specified for creating tasks for a scenario."
+
+ms.localizationpriority: medium
++
+# businessScenarioTaskTargetBase resource type
+
+Namespace: microsoft.graph
++
+An abstract type that represents a base object for all targets that can be specified for creating tasks for a scenario.
+
+Base type of [businessScenarioGroupTarget](businessscenariogrouptarget.md).
+
+## Properties
+
+|Property|Type|Description|
+|:|:|:|
+|taskTargetKind|plannerTaskTargetKind|Represents the kind of the target. The possible values are: `group`, `unknownFutureValue`.|
+
+## Relationships
+
+None.
+
+## JSON representation
+
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.businessScenarioTaskTargetBase"
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.businessScenarioTaskTargetBase",
+ "taskTargetKind": "String"
+}
+```
v1.0 Chat https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/chat.md
A chat is a collection of [chatMessages](chatmessage.md) between one or more par
### chatType values
-| Member | Value | Description |
-| :-- | :- | : |
-|oneOnOne | 0 | Indicates that the chat is a 1:1 chat. The roster size is fixed for this type of chat; members cannot be removed/added.|
-|group | 1 | Indicates that the chat is a group chat. The roster size (of at least two people) can be updated for this type of chat. Members can be removed/added later.|
-|meeting | 2 | Indicates that the chat is associated with an online meeting. This type of chat is only created as part of the creation of an online meeting.|
-|unknownFutureValue | 3 | Evolvable enumeration sentinel value. Do not use. |
+| Member | Description |
+| :-- | : |
+|oneOnOne | Indicates that the chat is a 1:1 chat. The roster size is fixed for this type of chat; members cannot be removed/added.|
+|group | Indicates that the chat is a group chat. The roster size (of at least two people) can be updated for this type of chat. Members can be removed/added later.|
+|meeting | Indicates that the chat is associated with an online meeting. This type of chat is only created as part of the creation of an online meeting.|
+|unknownFutureValue | Evolvable enumeration sentinel value. Do not use. |
## Relationships
The following is a JSON representation of the resource.
```json {
+ "chatType": "string",
+ "createdDateTime": "dateTimeOffset",
"id": "string (identifier)",
+ "lastUpdatedDateTime": "dateTimeOffset",
+ "onlineMeetingInfo": {
+ "@odata.type": "microsoft.graph.teamworkOnlineMeetingInfo"
+ },
+ "tenantId": "string",
"topic": "string",
- "createdDateTime": "dateTimeOffset",
- "lastUpdatedDateTime": "dateTimeOffset",
- "chatType": "string",
- "webUrl": "string",
- "tenantId": "string",
"viewpoint": { "@odata.type": "microsoft.graph.chatViewpoint" },
- "onlineMeetingInfo": {
- "@odata.type": "microsoft.graph.teamworkOnlineMeetingInfo"
- }
+ "webUrl": "string"
} ```
v1.0 Cloudpc Api Overview https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/cloudpc-api-overview.md
Microsoft Graph controls access to resources via permissions. As a developer, yo
|List, get, create, update delete, update AD domain password, and run health checks for on-premises network connections|[cloudPcOnPremisesConnection](../resources/cloudpconpremisesconnection.md)|[On-premises network connection overview](/windows-365/enterprise/on-premises-network-connections)| |List audit events for Cloud PCs, get a specific audit event, and get audit activity types|[cloudPcAuditEvent](../resources/cloudpcauditevent.md)|[Get Cloud PC audit logs](/windows-365/enterprise/get-cloud-pc-audit-logs-using-powershell)| |List, get, create, update, delete or assign user settings|[cloudPcUserSetting](../resources/cloudpcusersetting.md)|[User settings overview](../resources/cloudpcusersetting.md)|
+|Set up rules to alert issues on the Microsoft Endpoint Manager admin center with provisioning Cloud PCs, uploading Cloud PC images, and checking Azure network connections. |[alertRecord](devicemanagement-alertrecord.md), [alertRule](devicemanagement-alertrule.md) | [Alert monitoring API](devicemanagement-monitoring.md) |
## What's new
v1.0 Cloudpc https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/cloudpc.md
Represents a cloud-managed virtual desktop. This Cloud PC is also enrolled into
|[List for user](../api/user-list-cloudpcs.md)|[cloudPC](../resources/cloudpc.md) collection|List the [cloudPC](../resources/cloudpc.md) devices that are attributed to the signed-in user.| |[Get launch info for user](../api/cloudpc-getcloudpclaunchinfo.md)|[cloudPCLaunchInfo](../resources/cloudpclaunchinfo.md)|Get the [cloudPCLaunchInfo](../resources/cloudpclaunchinfo.md) for the signed-in user.| |[Get connectivity history](../api/cloudpc-getcloudpcconnectivityhistory.md)|[cloudPcConnectivityEvent](../resources/cloudpcconnectivityevent.md) collection|Get the Cloud PC connectivity history.|
+|[Get supported remote actions](../api/cloudpc-getsupportedcloudpcremoteactions.md)|[cloudPcRemoteActionCapability](../resources/cloudpcremoteactioncapability.md) collection|Get a list of supported Cloud PC remote actions for a specific Cloud PC device, including the action names and capabilities.|
|[Retry partner agent installation](../api/cloudpc-retrypartneragentinstallation.md)|None|Retry installation for the partner agents which failed to install on the [cloudPC](../resources/cloudpc.md).| ## Properties
Represents a cloud-managed virtual desktop. This Cloud PC is also enrolled into
|:|:|:| |aadDeviceId|String|The Azure Active Directory (Azure AD) device ID of the Cloud PC.| |connectivityResult|[cloudPcConnectivityResult](../resources/cloudpcconnectivityresult.md)|The connectivity health check result of a Cloud PC, including the updated timestamp and whether the Cloud PC is able to be connected or not.|
+|diskEncryptionState|[cloudPcDiskEncryptionState](#cloudpcdiskencryptionstate-values)|The disk encryption applied to the Cloud PC. Possible values: `notAvailable`, `notEncrypted`, `encryptedUsingPlatformManagedKey`, `encryptedUsingCustomerManagedKey`, and `unknownFutureValue`.|
|displayName|String|The display name of the Cloud PC.| |gracePeriodEndDateTime|DateTimeOffset|The date and time when the grace period ends and reprovisioning/deprovisioning happens. Required only if the status is `inGracePeriod`. The timestamp is shown in ISO 8601 format and Coordinated Universal Time (UTC). For example, midnight UTC on Jan 1, 2014 is `2014-01-01T00:00:00Z`.| |id|String|The unique identifier for the Cloud PC. Read-only.|
Represents a cloud-managed virtual desktop. This Cloud PC is also enrolled into
|userAccountType|[cloudPcUserAccountType](../resources/cloudpcorganizationsettings.md#cloudpcuseraccounttype-values)|The account type of the user on provisioned Cloud PCs. Possible values are: `standardUser`, `administrator`, and `unknownFutureValue`.| |userPrincipalName|String|The user principal name (UPN) of the user assigned to the Cloud PC.|
+### cloudPcDiskEncryptionState values
+
+|Member|Description|
+|:|:|
+|notAvailable|The Cloud PC is not provisioned, or is in a state where encryption is not available.|
+|notEncrypted|The Cloud PC should be encrypted, but the encryption is not done yet (reserved, should not happen).|
+|encryptedUsingPlatformManagedKey|The Cloud PC is encrypted using a platform managed key. This is the default value if the customer-managed key is not enabled.|
+|encryptedUsingCustomerManagedKey|The Cloud PC is encrypted using the customer-managed key.|
+|unknownFutureValue|Evolvable enumeration sentinel value. Do not use.|
+ ### cloudPcStatus values |Member|Description|
The following is a JSON representation of the resource.
"osVersion": "String", "lastRemoteActionResult": "String", "lastLoginResult": "String",
- "connectivityResult": "String"
+ "connectivityResult": "String",
+ "diskEncryptionState": "String"
} ```
v1.0 Cloudpcexportjob https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/cloudpcexportjob.md
Namespace: microsoft.graph
[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)]
-Represents the export job created for downloading reports.
+Represents the export job for downloading a specified Cloud PC report.
## Methods
-|Method|Return type|Description|
-|:|:|:|
-|[Create cloudPcExportJob](../api/cloudpcreports-post-exportjobs.md)|[cloudPcExportJob](../resources/cloudpcexportjob.md)|Create a new [cloudPcExportJob](../resources/cloudpcexportjob.md) object.|
-|[Get cloudPcExportJob](../api/cloudpcexportjob-get.md)|[cloudPcExportJob](../resources/cloudpcexportjob.md)|Read the properties and relationships of a [cloudPcExportJob](../resources/cloudpcexportjob.md) object.|
+| Method | Return type | Description |
+| : | : | : |
+| [Create cloudPcExportJob](../api/cloudpcreports-post-exportjobs.md) | [cloudPcExportJob](../resources/cloudpcexportjob.md) | Create a new [cloudPcExportJob](../resources/cloudpcexportjob.md) object to initiate downloading the entire or specified portion of a report. |
+| [Get cloudPcExportJob](../api/cloudpcexportjob-get.md) | [cloudPcExportJob](../resources/cloudpcexportjob.md) | Read the properties and relationships of a [cloudPcExportJob](../resources/cloudpcexportjob.md) object. |
## Properties
-|Property|Type|Description|
-|:|:|:|
-|expirationDateTime|DateTimeOffset|The date time when the export job expires.|
-|exportJobStatus|[cloudPcExportJobStatus](#cloudpcexportjobstatus-values)|The status of the export job.The possible values are: `notStarted`, `inProgress`, `completed`, `unknownFutureValue`. Read-only.|
-|exportUrl|String|The storage account url of the exported report, it can be used to download the file.|
-|filter|String|The filter applied on the report.|
-|format|String|The format of the exported report.|
-|id|String|The unique identifier for the report. Read-only.|
-|reportName|[cloudPcReportName](#cloudpcreportname-values)|The report name.The possible values are: `remoteConnectionHistoricalReports`, `dailyAggregatedRemoteConnectionReports`, `totalAggregatedRemoteConnectionReports`, `unknownFutureValue`.|
-|requestDateTime|DateTimeOffset|The date time when the export job was requested.|
-|select|String collection|The selected columns of the report.|
-
-## Relationships
-None.
+| Property | Type | Description |
+| :-- | :- | :-- |
+| expirationDateTime | DateTimeOffset | The date and time when the export job expires. |
+| exportJobStatus | [cloudPcExportJobStatus](#cloudpcexportjobstatus-values) | The status of the export job. The possible values are: `notStarted`, `inProgress`, `completed`, `unknownFutureValue`. Read-only. |
+| exportUrl | String | The storage account URL of the exported report. It can be used to download the file. |
+| filter | String | The filter applied on the report. |
+| format | String | The format of the exported report. |
+| id | String | The unique identifier for the report. Read-only. |
+| reportName | [cloudPcReportName](#cloudpcreportname-values) | The report name. The possible values are: `remoteConnectionHistoricalReports`, `dailyAggregatedRemoteConnectionReports`, `totalAggregatedRemoteConnectionReports`, `sharedUseLicenseUsageReport`, `sharedUseLicenseUsageRealTimeReport`, or `unknownFutureValue`. |
+| requestDateTime | DateTimeOffset | The date and time when the export job was requested. |
+| select | String collection | The selected columns of the report. |
### cloudPcExportJobStatus values
-|Member|Description|
-|:|:|
-|notStarted|The export job doesn't start yet.|
-|inProgress|The export job is in progress.|
-|completed|The export job is completed with export url returned. |
-|failed|The export job is failed. |
-|unknownFutureValue|Evolvable enumeration sentinel value. Do not use. |
+| Member | Description |
+| :-- | :- |
+| notStarted | The export job doesn't start yet. |
+| inProgress | The export job is in progress. |
+| completed | The export job is completed with export URL returned. |
+| failed | The export job has failed. |
+| unknownFutureValue | Evolvable enumeration sentinel value. Do not use. |
### cloudPcReportName values
-|Member|Description|
-|:|:|
-|remoteConnectionHistoricalReports|The historical remote connections report.|
-|dailyAggregatedRemoteConnectionReports|The daily aggregated remote connections report. |
-|totalAggregatedRemoteConnectionReports|The total aggregated remote connections report.|
-|unknownFutureValue|Evolvable enumeration sentinel value. Do not use. |
+| Member | Description |
+| :- | : |
+| remoteConnectionHistoricalReports | The historical remote connections report. |
+| dailyAggregatedRemoteConnectionReports | The daily aggregated remote connections report. |
+| totalAggregatedRemoteConnectionReports | The total aggregated remote connections report. |
+| sharedUseLicenseUsageReport | Indicates daily/hourly aggregated shared use license usage report. |
+| sharedUseLicenseUsageRealTimeReport | Indicates real-time data for shared use license usage. |
+| unknownFutureValue | Evolvable enumeration sentinel value. Do not use. |
++
+## Relationships
+None.
## JSON representation The following is a JSON representation of the resource.
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.cloudPcExportJob",
+ "expirationDateTime": "String (timestamp)",
+ "exportJobStatus": "String",
+ "exportUrl": "String",
+ "filter": "String",
+ "format": "String",
"id": "String (identifier)", "reportName": "String",
- "filter": "String",
+ "requestDateTime": "String (timestamp)",
"select": [ "String"
- ],
- "format": "String",
- "expirationDateTime": "String (timestamp)",
- "requestDateTime": "String (timestamp)",
- "exportJobStatus": "String",
- "exportUrl": "String"
+ ]
} ```-
v1.0 Cloudpconpremisesconnection https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/cloudpconpremisesconnection.md
Represents a defined collection of Azure resource information that can be used t
|healthCheckStatusDetails|[cloudPcOnPremisesConnectionStatusDetails](../resources/cloudpconpremisesconnectionstatusdetails.md)|The details of the connection's health checks and the corresponding results. Returned only on `$select`. For an example that shows how to get the **inUse** property, see [Example 2: Get the selected properties of an Azure network connection, including healthCheckStatusDetails](../api/cloudpconpremisesconnection-get.md). Read-only.| |id|String|Unique identifier for the Azure network connection. Read-only.| |inUse|Boolean|When `true`, the Azure network connection is in use. When `false`, the connection is not in use. You cannot delete a connection thatΓÇÖs in use. Returned only on `$select`. For an example that shows how to get the **inUse** property, see [Example 2: Get the selected properties of an Azure network connection, including healthCheckStatusDetails](../api/cloudpconpremisesconnection-get.md). Read-only.|
-|managedBy|[cloudPcManagementService](#cloudpcmanagementservice-values)|Specifies which services manage the Azure network connection. Possible values are: `windows365`, `devBox,` `unknownFutureValue`. Read-only.|
+|managedBy|[cloudPcManagementService](#cloudpcmanagementservice-values)|Specifies which services manage the Azure network connection. Possible values are: `windows365`, `devBox`, `unknownFutureValue`, `rpaBox`. Note that you must use the `Prefer: include-unknown-enum-members` request header to get the following value(s) in this [evolvable enum](/graph/best-practices-concept#handling-future-members-in-evolvable-enumerations): `rpaBox`. Read-only.|
|organizationalUnit|String|The organizational unit (OU) in which the computer account is created. If left null, the OU thatΓÇÖs configured as the default (a well-known computer object container) in your Active Directory domain (OU) is used. Optional.|
+|virtualNetworkLocation|String|Indicates resource location of the virtual target network. Read-only, computed value.|
|resourceGroupId|String|The ID of the target resource group. Required format: `/subscriptions/{subscription-id}/resourceGroups/{resourceGroupName}`.| |subnetId|String|The ID of the target subnet. Required format: `/subscriptions/{subscription-id}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkId}/subnets/{subnetName}`.| |subscriptionId|String|The ID of the target Azure subscription thatΓÇÖs associated with your tenant.|
Represents a defined collection of Azure resource information that can be used t
### cloudPcManagementService values
-|Member| Value |Description|
-|:|:|:|
-|windows365|1| Azure network connection was successfully created through Windows365.|
-|devBox|2| Azure network connection was successfully created through Project Fidalgo.|
-|unknownFutureValue|4| Evolvable enumeration sentinel value. Do not use.|
+| Member | Description |
+|:-|:|
+| windows365 | Azure network connection was successfully created through Windows365. |
+| devBox | Azure network connection was successfully created through Project Fidalgo. |
+| unknownFutureValue | Evolvable enumeration sentinel value. Do not use. |
+| rpaBox | The Azure network connection was successfully created through the Power Automate project. |
### cloudPcOnPremisesConnectionType values
v1.0 Cloudpcprovisioningpolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/cloudpcprovisioningpolicy.md
Represents a Cloud PC provisioning policy.
|imageId|String|The ID of the OS image you want to provision on Cloud PCs. The format for a gallery type image is: {publisher_offer_sku}. Supported values for each of the parameters are as follows:<ul><li>publisher: Microsoftwindowsdesktop.</li> <li>offer: windows-ent-cpc.</li> <li>sku: 21h1-ent-cpc-m365, 21h1-ent-cpc-os, 20h2-ent-cpc-m365, 20h2-ent-cpc-os, 20h1-ent-cpc-m365, 20h1-ent-cpc-os, 19h2-ent-cpc-m365 and 19h2-ent-cpc-os.</li></ul>| |imageType|cloudPcProvisioningPolicyImageType|The type of OS image (custom or gallery) you want to provision on Cloud PCs. Possible values are: `gallery`, `custom`.| |localAdminEnabled|Boolean|Indicates whether the local admin option is enabled. If the local admin option is enabled, the end user can be an admin of the Cloud PC device. Read-only.|
-|managedBy|[cloudPcManagementService](../resources/cloudpconpremisesconnection.md#cloudpcmanagementservice-values)|Specifies which services manage the Azure network connection. Possible values are: `windows365`, `devBox`, `unknownFutureValue`. Read-only.|
+|managedBy|[cloudPcManagementService](../resources/cloudpconpremisesconnection.md#cloudpcmanagementservice-values)|Specifies which services manage the Azure network connection. Possible values are: `windows365`, `devBox`, `unknownFutureValue`, `rpaBox`. Note that you must use the `Prefer: include-unknown-enum-members` request header to get the following value(s) in this [evolvable enum](/graph/best-practices-concept#handling-future-members-in-evolvable-enumerations): `rpaBox`. Read-only.|
|microsoftManagedDesktop|[microsoftManagedDesktop](../resources/microsoftManagedDesktop.md)|The specific settings for the Microsoft Managed Desktop, which enables customers to get a managed device experience for the Cloud PC. Before you can enable Microsoft Managed Desktop, an admin must configure it.| |onPremisesConnectionId|String|The ID of the cloudPcOnPremisesConnection. To ensure that Cloud PCs have network connectivity and that they domain join, choose a connection with a virtual network thatΓÇÖs validated by the Cloud PC service.| |windowsSettings|[cloudPcWindowsSettings](../resources/cloudpcwindowssettings.md)|Specific Windows settings to configure while creating Cloud PCs for this provisioning policy.|
v1.0 Cloudpcremoteactioncapability https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/cloudpcremoteactioncapability.md
+
+ Title: "cloudPcRemoteActionCapability resource type"
+description: "Represents the action name and capability of a supported Cloud PC remote action."
+
+ms.localizationpriority: medium
++
+# cloudPcRemoteActionCapability resource type
+
+Namespace: microsoft.graph
++
+Represents the action name and capability of a supported Cloud PC remote action.
+
+## Properties
+
+|Property|Type|Description|
+|:|:|:|
+|actionCapability|[actionCapability](#actioncapability-values)|Indicates the state of the supported action capability to perform a Cloud PC remote action. Possible values are: `enabled`, `disabled`. Default value is `enabled`.|
+|actionName|[cloudPcRemoteActionName](#cloudpcremoteactionname-values)|The name of the supported Cloud PC remote action. Possible values are: `unknown`, `restart`, `rename`, `restore`, `resize`, `reprovision`, `troubleShoot`, `changeUserAccountType`, `placeUnderReview`. Default value is `unknown`.|
+
+### cloudPcRemoteActionName values
+
+|Member|Description|
+|:|:|
+|unknown|Indicates the remote action name as `unknown` when the remote action name is unknown and not in the list. Default.|
+|restart|Indicates the remote action name as `restart`. Use this action to restart a Cloud PC.|
+|rename|Indicates the remote action name as `rename`. Use this action to update the display name of a Cloud PC.|
+|resize|Indicates the remote action name as `resize`. Use this action to upgrade or downgrade a Cloud PC by changing its service plan. For example, from 2 vCPU to 4 vCPU.|
+|restore|Indicates the remote action name as `restore`. Use this action to restore a Cloud PC to a previous state from a snapshot.|
+|reprovision|Indicates the remote action name as `reprovision`. Use this action to re-create a Cloud PC by a given Cloud PC ID if any unresolvable issue occurs.|
+|changeUserAccountType|Indicates the remote action name as `changeUserAccountType`. Use this action to change the account type of the user of a Cloud PC. For example, from a standard user to an administrator.|
+|troubleshoot|Indicates the remote action name as `troubleshoot`. Use this action to check the health status of the Cloud PC and the session host.|
+|placeUnderReview|Indicates the remote action name as `placeUnderReview`. Use this action to set the Cloud PC to review state or set it back, when the Cloud PC is considered suspicious.|
+|unknownFutureValue|Evolvable enumeration sentinel value. Do not use.|
+
+#### actionCapability values
+
+|Member|Description|
+|:|:|
+|enabled|Indicates that the remote action is allowed to run on the Cloud PC. Default.|
+|disabled|Indicates that the remote action is currently disabled for the Cloud PC.|
+|unknownFutureValue|Evolvable enumeration sentinel value. Do not use.|
+
+## Relationships
+
+None.
+
+## JSON representation
+
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.cloudPcRemoteActionCapability"
+}
+-->
+
+``` json
+{
+ "@odata.type": "#microsoft.graph.cloudPcRemoteActionCapability",
+ "actionCapability": "String",
+ "actionName": "String"
+}
+```
v1.0 Cloudpcreports https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/cloudpcreports.md
Namespace: microsoft.graph
Represents the Windows 365 Cloud PC-related reports, including the Windows 365 Cloud PC remote connections report.
+Use a method in the [Methods](#methods) section to get the corresponding report data in the response. Alternatively, you can use the [cloudPCExportJob](cloudpcexportjob.md) resource and specify a storage account URL to download the specfic report.
+ ## Methods |Method|Return type|Description| |:|:|:|
Represents the Windows 365 Cloud PC-related reports, including the Windows 365 C
|[getRealTimeRemoteConnectionLatency](../api/cloudpcreports-getrealtimeremoteconnectionlatency.md)|Stream|Get the real-time remote connection latency reports like current round trip time and available bandwidth of a Cloud PC.| |[getRealTimeRemoteConnectionStatus](../api/cloudpcreports-getrealtimeremoteconnectionstatus.md)|Stream|Get the real-time remote connection status reports like sign in status, or days since last use of a Cloud PC.| |[getRemoteConnectionHistoricalReports](../api/cloudpcreports-getremoteconnectionhistoricalreports.md)|Stream|Get a Cloud PC's remote connection historical reports, such as **signInDateTime**, **signOutDateTime**, or **usageInHour**, in a given period.|
+|[getSharedUseLicenseUsageReport](../api/cloudpcreports-getshareduselicenseusagereport.md)|Stream|Get the shared use license usage reports, such as **servicePlanId**, **licenseCount**, and **claimedLicenseCount**, for real-time, 7 days, or 28 days trend.|
|[getTotalAggregatedRemoteConnectionReports](../api/cloudpcreports-gettotalaggregatedremoteconnectionreports.md)|Stream|Get the total aggregated remote connection reports, like usage and **daysSinceLastUse**, in a given period.| - ## Properties |Property|Type|Description| |:|:|:|
The following is a JSON representation of the resource.
"id": "String (identifier)" } ```-
v1.0 Cloudpcsupportedregion https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/cloudpcsupportedregion.md
Represents a supported region to establish an Azure network connection for Cloud
## Properties
-|Property|Type|Description|
-|:|:|:|
+| Property | Type | Description |
+|: |: |: |
|displayName|String|The name for the supported region. Read-only.| |id|String|The unique identifier for the supported region. Read-only.|
+|regionGroup|[cloudPcRegionGroup](#cloudpcregiongroup-values)|The geographic group this region belongs to. Multiple regions can belong to one region group. For example, the `europeUnion` region group contains the Northern Europe and Western Europe regions. A customer can select a region group when provisioning a Cloud PC; however, the Cloud PC will be put under one of the regions under the group based on resource capacity. The region with more quota will be chosen. Possible values are: `default`, `australia`, `canada`, `usCentral`, `usEast`, `usWest`, `france`, `germany`, `europeUnion`, `unitedKingdom`, `japan`, `asia`, `india`, `southAmerica`, `euap`, `usGovernment`, `usGovernmentDOD`, `unknownFutureValue`, `norway`, `switzerland`,`southKorea`. Note that you must use the `Prefer: include-unknown-enum-members` request header to get the following value(s) in this [evolvable enum](/graph/best-practices-concept#handling-future-members-in-evolvable-enumerations): `norway`, `switzerland`,`southKorea`. Read-only.|
|regionStatus|[cloudPcSupportedRegionStatus](#cloudpcsupportedregionstatus-values)|The status of the supported region. Possible values are: `available`, `restricted`, `unavailable`, `unknownFutureValue`. Read-only.|
-|supportedSolution|[cloudPcManagementService](../resources/cloudpconpremisesconnection.md#cloudpcmanagementservice-values)|The supported service or solution for the region. The possible values are: `windows365`, `devBox`, `unknownFutureValue`. Read-only.|
+|supportedSolution|[cloudPcManagementService](../resources/cloudpconpremisesconnection.md#cloudpcmanagementservice-values)|The supported service or solution for the region. The possible values are: `windows365`, `devBox`, `unknownFutureValue`, `rpaBox`. Note that you must use the `Prefer: include-unknown-enum-members` request header to get the following value(s) in this [evolvable enum](/graph/best-practices-concept#handling-future-members-in-evolvable-enumerations): `rpaBox`. Read-only.|
### cloudPcSupportedRegionStatus values
Represents a supported region to establish an Azure network connection for Cloud
|unavailable|The region has no support for Cloud PC provisioning.| |unknownFutureValue|Evolvable enumeration sentinel value. Do not use.|
+### cloudPcRegionGroup values
+
+| Member | Description |
+|:-|:--|
+| default | The region belongs to the default region group. |
+| australia | The region belongs to the region group: Australia. |
+| canada | The region belongs to the region group: Canada. |
+| usCentral | The region belongs to the region group: Central US. |
+| usEast | The region belongs to the region group: East US. |
+| usWest | The region belongs to the region group: West US. |
+| france | The region belongs to the region group: France. |
+| germany | The region belongs to the region group: Germany. |
+| europeUnion | The region belongs to the region group: European Union. |
+| unitedKingdom | The region belongs to the region group: United Kingdom. |
+| japan | The region belongs to the region group: Japan. |
+| asia | The region belongs to the region group: Asia. |
+| india | The region belongs to the region group: India. |
+| southAmerica | The region belongs to the region group: South America. |
+| euap | The region belongs to the region group: Early Update Access Program. |
+| usGovernment | The region belongs to the region group: US Government. |
+| usGovernmentDOD | The region belongs to the region group: US Government Department of Defense (DOD). |
+| unknownFutureValue | Evolvable enumeration sentinel value. Do not use. |
+| norway | The region belongs to the region group: Norway. |
+| switzerland | The region belongs to the region group: Switzerland. |
+| southKorea | The region belongs to the region group: South Korea. |
+ ## Relationships None.
The following is a JSON representation of the resource.
"@odata.type": "#microsoft.graph.cloudPcSupportedRegion", "displayName": "String", "id": "String (identifier)",
+ "regionGroup": "String",
"regionStatus": "microsoft.graph.cloudPcSupportedRegionStatus", "supportedSolution": "String" }
v1.0 Coachmarklocation https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/coachmarklocation.md
+
+ Title: "coachmarkLocation detail"
+description: "Represents details about a coachmark location."
+
+ms.localizationpriority: medium
++
+# coachmarkLocation resource type
+
+Namespace: microsoft.graph
++
+Represents details about a coachmark location.
+
+## Properties
+
+|Property|Type|Description|
+|:|:|:|
+|length|Int32|Length of coachmark.|
+|offset|Int32|Offset of coachmark.|
+|type|coachmarkLocationType|Type of coachmark location. The possible values are: `unknown`, `fromEmail`, `subject`, `externalTag`, `displayName`, `messageBody`, `unknownFutureValue`.|
+
+### coachmarkLocationType values
+
+|Member|Description |
+|:|:|
+|unknown| Coachmark location type as unknown. |
+|fromEmail| Coachmark from email address. |
+|subject| Coachmark from email subject. |
+|externalTag| Coachmark from external tag. |
+|displayName| Coachmark from display name. |
+|messageBody| Coachmark from email body. |
+|unknownFutureValue| Evolvable enumeration sentinel value. Do not use. |
+
+## JSON representation
+
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.coachmarkLocation"
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.coachmarkLocation",
+ "offset": "Int32",
+ "length": "Int32",
+ "type": "String"
+}
+```
v1.0 Consentrequests Overview https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/consentrequests-overview.md
ms.localizationpriority: medium
ms.prod: "governance" doc_type: conceptualPageType Last updated : 09/28/2022 # Azure Active Directory consent requests
v1.0 Corsconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/corsconfiguration.md
Title: "corsConfiguration resource type"
+ Title: "corsConfiguration resource type (deprecated)"
description: "Represents the CORS settings for an on-premises application segment published via Application Proxy." ms.localizationpriority: medium
ms.prod: "applications"
doc_type: "resourcePageType"
-# corsConfiguration resource type
+# corsConfiguration resource type (deprecated)
Namespace: microsoft.graph
v1.0 Corsconfiguration_V2 https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/corsconfiguration_v2.md
+
+ Title: "corsConfiguration_v2 resource type"
+description: "Represents the CORS settings for an on-premises web application segment published via Application Proxy."
+ms.localizationpriority: medium
+++
+# corsConfiguration_v2 resource type
+
+Namespace: microsoft.graph
++
+Represents the CORS settings for the [webApplicationSegment](webapplicationsegment.md) resource when publishing an on-premises application through Azure AD Application Proxy. For more information, see [Understand and solve Azure Active Directory Application Proxy CORS issues](/azure/active-directory/app-proxy/application-proxy-understand-cors-issues).
++
+## Properties
+
+| Property | Type | Description |
+|:-|:|:|
+|allowedHeaders|String Collection|The request headers that the origin domain may specify on the CORS request. The wildcard character `*` indicates that any header beginning with the specified prefix is allowed.|
+|allowedMethods|String Collection|The HTTP request methods that the origin domain may use for a CORS request.|
+|allowedOrigins|String Collection|The origin domains that are permitted to make a request against the service via CORS. The origin domain is the domain from which the request originates. The origin must be an exact case-sensitive match with the origin that the user agent sends to the service. |
+|id|String|The unique identifier for the CORS configuration that is assigned to a CORS rule by Azure AD. Not nullable. Read-only. Supports `$filter` (`eq`). |
+|maxAgeInSeconds|Integer|The maximum amount of time that a browser should cache the response to the preflight **OPTIONS** request.|
+|resource|String|Resource within the application segment for which CORS permissions are granted. `/` grants permission for the whole app segment.|
++
+## JSON representation
+
+The following is a JSON representation of the resource.
+
+<!-- {
+ "blockType": "resource",
+ "optionalProperties": [
+
+ ],
+ "@odata.type": "microsoft.graph.corsConfiguration_v2",
+ "baseType": null
+}-->
+
+```json
+{
+ "@odata.type": "microsoft.graph.corsConfiguration_v2",
+ "allowedHeaders": [
+ "String"
+ ],
+ "allowedMethods": [
+ "String"
+ ],
+ "allowedOrigins": [
+ "String"
+ ],
+ "id": "String (identifier)",
+ "maxAgeInSeconds": "Integer",
+ "resource": "String"
+}
+```
+
+<!-- {
+ "type": "#page.annotation",
+ "description": "corsConfiguration resource",
+ "keywords": "",
+ "section": "documentation",
+ "tocPath": ""
+}-->
v1.0 Crosstenantaccesspolicy Overview https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/crosstenantaccesspolicy-overview.md
description: "Cross-tenant access settings let you manage both B2B collaboration
ms.localizationpriority: medium ms.prod: "identity-and-sign-in"
-doc_type: resourcePageType
Last updated : 09/13/2022 # Cross-tenant access settings API overview
For example, when you configure your trust settings to trust MFA, your MFA polic
Inbound trust settings also enable you to trust devices that are compliant, or hybrid Azure AD joined in their home directories. With inbound trust settings in cross-tenant access settings, you can now protect access to your apps and resources by requiring that external users use compliant, or hybrid Azure AD joined devices.
+## Inbound cross-tenant sync in cross-tenant access settings
+
+You can enable cross-tenant synchronization to synchronize users from a partner tenant. Cross-tenant synchronization is a one-way synchronization service in Azure AD that automates creating, updating, and deleting B2B collaboration users across tenants in an organization. You create a user synchronization policy to streamline collaboration between users in multi-tenant organizations. Partner user synchronization settings are defined using the [crossTenantIdentitySyncPolicyPartner](../resources/crosstenantidentitysyncpolicypartner.md) resource type.
+ ## Collaborate with organizations using Azure Active Directory in different Microsoft clouds Cross-tenant access settings is used to enable collaboration with Azure AD organizations in separate Microsoft clouds. The `allowedCloudEndpoints` property enables you to specify which Microsoft clouds you'd like to extend your collaboration to. B2B collaboration is supported between the following Microsoft clouds:
v1.0 Crosstenantaccesspolicyconfigurationdefault https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/crosstenantaccesspolicyconfigurationdefault.md
The default configuration defined for inbound and outbound settings of Azure AD
| b2bDirectConnectInbound |[crossTenantAccessPolicyB2BSetting](../resources/crosstenantaccesspolicyb2bsetting.md) | Defines your default configuration for users from other organizations accessing your resources via Azure AD B2B direct connect. | | b2bDirectConnectOutbound | [crossTenantAccessPolicyB2BSetting](../resources/crosstenantaccesspolicyb2bsetting.md) |Defines your default configuration for users in your organization going outbound to access resources in another organization via Azure AD B2B direct connect. | | inboundTrust | [crossTenantAccessPolicyInboundTrust](../resources/crosstenantaccesspolicyinboundtrust.md) | Determines the default configuration for trusting other Conditional Access claims from external Azure AD organizations. |
+| automaticUserConsentSettings | [inboundOutboundPolicyConfiguration](../resources/inboundoutboundpolicyconfiguration.md) | Determines the default configuration for automatic user consent settings. `inboundAllowed` and `outboundAllowed` will always be false and cannot be updated in the default configuration. **Read only**. |
| isServiceDefault | Boolean | If `true`, the default configuration is set to the system default configuration. If `false`, the default settings have been customized. | ## Relationships
The following is a JSON representation of the resource.
"b2bDirectConnectInbound": { "@odata.type": "microsoft.graph.crossTenantAccessPolicyB2BSetting" },
+ "automaticUserConsentSettings": {
+ "@odata.type": "microsoft.graph.inboundOutboundPolicyConfiguration"
+ },
"isServiceDefault": "Boolean" } ```
v1.0 Crosstenantaccesspolicyconfigurationpartner https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/crosstenantaccesspolicyconfigurationpartner.md
For any partner-specific property that is `null`, these settings will inherit th
|Property|Type|Description| |:|:|:|
+| automaticUserConsentSettings | [inboundOutboundPolicyConfiguration](../resources/inboundoutboundpolicyconfiguration.md) | Determines the partner-specific configuration for automatic user consent settings. Unless specifically configured, the `inboundAllowed` and `outboundAllowed` properties will be **null** and inherit from the default settings, which is always `false`. |
| b2bCollaborationInbound | [crossTenantAccessPolicyB2BSetting](../resources/crosstenantaccesspolicyb2bsetting.md) | Defines your partner-specific configuration for users from other organizations accessing your resources via Azure AD B2B collaboration. | | b2bCollaborationOutbound | [crossTenantAccessPolicyB2BSetting](../resources/crosstenantaccesspolicyb2bsetting.md) | Defines your partner-specific configuration for users in your organization going outbound to access resources in another organization via Azure AD B2B collaboration. | | b2bDirectConnectInbound | [crossTenantAccessPolicyB2BSetting](../resources/crosstenantaccesspolicyb2bsetting.md) | Defines your partner-specific configuration for users from other organizations accessing your resources via Azure B2B direct connect. |
For any partner-specific property that is `null`, these settings will inherit th
## Relationships
-None.
+|Relationship|Type|Description|
+|:|:|:|
+|identitySynchronization|[crossTenantIdentitySyncPolicyPartner](../resources/crosstenantidentitysyncpolicypartner.md)|Defines the cross-tenant policy for synchronization of users from a partner tenant. Use this user synchronization policy to streamline collaboration between users in a multi-tenant organization by automating creating, updating, and deleting users from one tenant to another.|
## JSON representation
The following is a JSON representation of the resource.
"b2bDirectConnectInbound": { "@odata.type": "microsoft.graph.crossTenantAccessPolicyB2BSetting" },
+ "automaticUserConsentSettings": {
+ "@odata.type": "microsoft.graph.inboundOutboundPolicyConfiguration"
+ },
"isServiceProvider": "Boolean" } ```
v1.0 Crosstenantidentitysyncpolicypartner https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/crosstenantidentitysyncpolicypartner.md
+
+ Title: "crossTenantIdentitySyncPolicyPartner resource type"
+description: "Defines the cross-tenant policy for synchronization of users from a partner tenant. Use this user synchronization policy to streamline collaboration between users in a multi-tenant organization by automating creating, updating, and deleting users from one tenant to another."
+
+ms.localizationpriority: medium
++
+# crossTenantIdentitySyncPolicyPartner resource type
+
+Namespace: microsoft.graph
++
+Defines the cross-tenant policy for synchronization of users from a partner tenant. Use this user synchronization policy to streamline collaboration between users in a multi-tenant organization by automating creating, updating, and deleting users from one tenant to another.
+
+## Methods
+|Method|Return type|Description|
+|:|:|:|
+|[Create crossTenantIdentitySyncPolicyPartner](../api/crosstenantaccesspolicyconfigurationpartner-put-identitysynchronization.md)|None|Create a cross-tenant user synchronization policy for a partner-specific configuration.|
+|[Get crossTenantIdentitySyncPolicyPartner](../api/crosstenantidentitysyncpolicypartner-get.md)|[crossTenantIdentitySyncPolicyPartner](../resources/crosstenantidentitysyncpolicypartner.md)|Read the user synchronization policy of a partner-specific configuration.|
+|[Update crossTenantIdentitySyncPolicyPartner](../api/crosstenantidentitysyncpolicypartner-update.md)|None|Update the user synchronization policy of a partner-specific configuration.|
+|[Delete crossTenantIdentitySyncPolicyPartner](../api/crosstenantidentitysyncpolicypartner-delete.md)|None|Delete the user synchronization policy for a partner-specific configuration.|
+
+## Properties
+|Property|Type|Description|
+|:|:|:|
+|displayName|String|Display name for the cross-tenant user synchronization policy. Use the name of the partner Azure AD tenant to easily identify the policy. Optional.|
+|tenantId|String|Tenant identifier for the partner Azure AD organization. Read-only.|
+|userSyncInbound|[crossTenantUserSyncInbound](../resources/crosstenantusersyncinbound.md)|Defines whether users can be synchronized from the partner tenant. Key. |
+
+## Relationships
+None.
+
+## JSON representation
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "keyProperty": "tenantId",
+ "@odata.type": "microsoft.graph.crossTenantIdentitySyncPolicyPartner",
+ "openType": false
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.crossTenantIdentitySyncPolicyPartner",
+ "tenantId": "String (identifier)",
+ "displayName": "String",
+ "userSyncInbound": {
+ "@odata.type": "microsoft.graph.crossTenantUserSyncInbound"
+ }
+}
+```
+
v1.0 Crosstenantusersyncinbound https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/crosstenantusersyncinbound.md
+
+ Title: "crossTenantUserSyncInbound resource type"
+description: "Defines whether users can be synchronized from the partner tenant."
+
+ms.localizationpriority: medium
++
+# crossTenantUserSyncInbound resource type
+
+Namespace: microsoft.graph
++
+Defines whether users can be synchronized from the partner tenant.
+
+## Properties
+|Property|Type|Description|
+|:|:|:|
+|isSyncAllowed|Boolean|Defines whether user objects should be synchronized from the partner tenant. If set to `false`, any current user synchronization from the source tenant to the target tenant will stop. There is no impact on existing users that have already been synchronized.|
+
+## Relationships
+None.
+
+## JSON representation
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.crossTenantUserSyncInbound"
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.crossTenantUserSyncInbound",
+ "isSyncAllowed": "Boolean"
+}
+```
+
v1.0 Custom Security Attributes Overview https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/custom-security-attributes-overview.md
ms.localizationpriority: medium ms.prod: "directory-management" doc_type: conceptualPageType Last updated : 04/01/2022 # Overview of custom security attributes using the Microsoft Graph API (Preview)
Custom security attributes can be assigned to the following objects by using the
+ [user](/graph/api/resources/user?view=graph-rest-beta&preserve-view=true) + [servicePrincipal](/graph/api/resources/serviceprincipal?view=graph-rest-beta&preserve-view=true)
+For examples of working with custom security attributes on supported resources, see [Assign, update, or remove custom security attributes using Microsoft Graph](/graph/custom-security-attributes-examples).
+ ## Limits and constraints For a list of the limits and constraints for custom security attributes, see [Limits and constraints](/azure/active-directory/fundamentals/custom-security-attributes-overview#limits-and-constraints).
v1.0 Customextensioncalloutresult https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/customextensioncalloutresult.md
+
+ Title: "customExtensionCalloutResult resource type"
+description: "Indicates the result of an an API request to the custom extension endpoint. This object is used by the appliedEventListeners object of sign-ins. This object is used by the appliedEventListeners object of sign-ins."
+
+ms.localizationpriority: medium
++
+# customExtensionCalloutResult resource type
+
+Namespace: microsoft.graph
++
+Indicates the result of an API request to the custom extension endpoint. This object is used by the **appliedEventListeners** object of [sign-ins](../resources/signin.md).
+
+Inherits from [authenticationEventHandlerResult](../resources/authenticationeventhandlerresult.md).
+
+## Properties
+|Property|Type|Description|
+|:|:|:|
+|calloutDateTime|DateTimeOffset|When the API transaction was initiated, the date and time information uses ISO 8601 format and is always in UTC time. Example: midnight on Jan 1, 2014, is reported as `2014-01-01T00:00:00Z`.|
+|customExtensionId|String|Identifier of the custom extension that was called.|
+|errorCode|Int32|Error code that was returned when the last API attempt failed.|
+|httpStatus|Int32|The HTTP status code that was returned by the target API endpoint after the last API attempt.|
+|numberOfAttempts|Int32|The number of API calls to the customer's API.|
+
+## Relationships
+None.
+
+## JSON representation
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.customExtensionCalloutResult"
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.customExtensionCalloutResult",
+ "customExtensionId": "String",
+ "calloutDateTime": "String (timestamp)",
+ "numberOfAttempts": "Integer",
+ "httpStatus": "Integer",
+ "errorCode": "Integer"
+}
+```
+
v1.0 Devicemanagement Alertimpact https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/devicemanagement-alertimpact.md
Namespace: microsoft.graph.deviceManagement
Represents the impact of an alert event. + ## Properties |Property|Type|Description| |:|:|:|
-|aggregationType|[microsoft.graph.deviceManagement.aggregationType](../resources/devicemanagement-ruleThreshold.md#aggregationtype-values)|The aggregation type of the impact. The possible values are: `count`, `percentage`, `affectedCloudPcCount`, `affectedCloudPcPercentage`, `unknownFutureValue`.|
-|value|Int32|The number value of the impact.|
+|aggregationType|[microsoft.graph.deviceManagement.aggregationType](../resources/devicemanagement-ruleThreshold.md#aggregationtype-values)|The aggregation type of the impact. The possible values are: `count`, `percentage`, `affectedCloudPcCount`, `affectedCloudPcPercentage`, `unknownFutureValue`. |
+|value|Int32|The number value of the impact. For the aggregation types of `count` and `affectedCloudPcCount`, the value indicates the number of affected instances. For example, `6 affectedCloudPcCount` means that 6 Cloud PCs are affected. For the aggregation types of `percentage` and `affectedCloudPcPercentage`, the value indicates the percent of affected instances. For example, `12 affectedCloudPcPercentage` means that 12% of Cloud PCs are affected. |
## Relationships
v1.0 Devicemanagement Alertrecord https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/devicemanagement-alertrecord.md
Namespace: microsoft.graph.deviceManagement
[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)]
-This entity represents the record of an alert event triggered by a rule. When the threshold of an alert rule is reached, a record of the alert event will be generated and stored, and administrators will receive notifications via defined notification channels.
+Represents the record of an alert event in the Microsoft Endpoint Manager admin center triggered by an [alertRule](devicemanagement-alertrule.md).
+
+When the threshold of an **alertRule** is reached, an **alertRecord** is generated and stored, and administrators receive notifications via defined notification channels.
+
+For more information, see the [monitoring](devicemanagement-monitoring.md) resource.
+ ## Methods
This entity represents the record of an alert event triggered by a rule. When th
|:|:|:| |[List alertRecords](../api/devicemanagement-alertrecord-list.md)|[microsoft.graph.deviceManagement.alertRecord](../resources/devicemanagement-alertrecord.md) collection|Get a list of the [alertRecord](../resources/devicemanagement-alertrecord.md) objects and their properties.| |[Get alertRecord](../api/devicemanagement-alertrecord-get.md)|[microsoft.graph.deviceManagement.alertRecord](../resources/devicemanagement-alertrecord.md)|Read the properties and relationships of an [alertRecord](../resources/devicemanagement-alertrecord.md) object.|
-|[getPortalNotifications](../api/devicemanagement-alertrecord-getportalnotifications.md)|[microsoft.graph.deviceManagement.portalNotification](../resources/devicemanagement-portalnotification.md) collection|Get a list of all portal notifications that one or more users can access.|
-|[setPortalNotificationAsSent](../api/devicemanagement-alertrecord-setportalnotificationassent.md)|None|Set a single portal notification status to published.|
+|[getPortalNotifications](../api/devicemanagement-alertrecord-getportalnotifications.md)|[microsoft.graph.deviceManagement.portalNotification](../resources/devicemanagement-portalnotification.md) collection|Get a list of all portal notifications that one or more users can access, from the Microsoft Endpoint Manager admin center.|
+|[setPortalNotificationAsSent](../api/devicemanagement-alertrecord-setportalnotificationassent.md)|None|Set the status of the specified notification on the Microsoft EndPoint Manager admin center as sent.|
## Properties |Property|Type|Description| |:|:|:|
-|alertImpact|[microsoft.graph.deviceManagement.alertImpact](../resources/devicemanagement-alertimpact.md)|The impact of the alert event. Consists of a number followed by the aggregation type. For example, `6 Count` and `12 AffectedCloudPcPercentage`.|
+|alertImpact|[microsoft.graph.deviceManagement.alertImpact](../resources/devicemanagement-alertimpact.md)|The impact of the alert event. Consists of a number followed by the aggregation type. For example, `6 affectedCloudPcCount` means that 6 Cloud PCs are affected. `12 affectedCloudPcPercentage` means 12% of Cloud PCs are affected.|
|alertRuleId|String|The corresponding ID of the alert rule.| |alertRuleTemplate|[microsoft.graph.deviceManagement.alertRuleTemplate](../resources/devicemanagement-alertrule.md#alertruletemplate-values)|The rule template of the alert event. The possible values are: `cloudPcProvisionScenario`, `cloudPcImageUploadScenario`, `cloudPcOnPremiseNetworkConnectionCheckScenario`, `unknownFutureValue`.| |detectedDateTime|DateTimeOffset|The date and time when the alert event was detected. The Timestamp type represents date and time information using ISO 8601 format. For example, midnight UTC on Jan 1, 2014 is `2014-01-01T00:00:00Z`.|
v1.0 Devicemanagement Alertrule https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/devicemanagement-alertrule.md
Namespace: microsoft.graph.deviceManagement
[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)]
-Represents the rules that IT administrators can configure to trigger alerts.
+Represents a rule that an IT administrator with the appropriate roles can configure to monitor issues and trigger alerts on the Microsoft Endpoint Manager admin center.
+
+When the threshold of an **alertRule** is reached, an [alertRecord](devicemanagement-alertrecord.md) is generated and stored, and administrators receive notifications via defined notification channels.
+
+For more information, see the [monitoring](devicemanagement-monitoring.md) resource.
+ |Method|Return type|Description| |:|:|:|
Represents the rules that IT administrators can configure to trigger alerts.
|displayName|String|The display name of the rule.| |enabled|Boolean|The status of the rule that indicates whether the rule is enabled or disabled. If `true`, the rule is enabled; otherwise, the rule is disabled.| |id|String|The unique identifier for the alert rule. Inherited from [entity](../resources/entity.md).|
-|isSystemRule|Boolean|Indicates whether the rule is a system rule. If `true`, the rule is a system rule; otherwise, the rule is a custom defined rule and can be edited. System rules are built-in and only
-a few properties can be edited.|
+|isSystemRule|Boolean|Indicates whether the rule is a system rule. If `true`, the rule is a system rule; otherwise, the rule is a custom defined rule and can be edited. System rules are built-in and only a few properties can be edited.|
|notificationChannels|[microsoft.graph.deviceManagement.notificationChannel](../resources/devicemanagement-notificationchannel.md) collection|The notification channels of the rule selected by the user.| |severity|[microsoft.graph.deviceManagement.ruleSeverityType](#ruleseveritytype-values)|The severity of the rule. The possible values are: `unknown`, `informational`, `warning`, `critical`, `unknownFutureValue`.|
-|threshold|[microsoft.graph.deviceManagement.ruleThreshold](../resources/devicemanagement-rulethreshold.md)|The threshold of the rule.|
+|threshold|[microsoft.graph.deviceManagement.ruleThreshold](../resources/devicemanagement-rulethreshold.md)|The conditions to send alerts. For example, send alert when provisioning has failed for greater than or equal to 6 Cloud PCs.|
### alertRuleTemplate values
v1.0 Devicemanagement Monitoring https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/devicemanagement-monitoring.md
Title: "monitoring resource type"
-description: "Represents the entry point entity type to access all alert-related resources."
+description: "Represents the entry point entity type to access all resources related to alerts in the Microsoft Endpoint Manager admin center."
ms.localizationpriority: medium ms.prod: "cloud-pc"
Namespace: microsoft.graph.deviceManagement
[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)]
-Represents the entry point entity type to access all alert-related resources.
+Represents the entry point to access all resources related to alerts in the [Microsoft Endpoint Manager admin center](https://endpoint.microsoft.com).
+
+The alert monitoring API provide a programmatic alert experience in the Microsoft Endpoint Manager admin center. A Microsoft Endpoint Manager admin can create an [alert rule](devicemanagement-alertrule.md) with preferred notification channels, and receive alerts when conditions set as thresholds in alert rules are met. Notification channels may include email and Microsoft Endpoint Manager admin center notifications. Each alert is recorded as an [alert record](devicemanagement-alertrecord.md). Admins can review alert records to learn about alert impact, severity, status, and more.
+
+Only the role of Windows 365 admin has access to the alert monitoring API. Admins also need a role of global admin, Intune admin, or Cloud PC admin to successfully make API calls.
+ ## Properties
v1.0 Devicemanagement Notificationchannel https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/devicemanagement-notificationchannel.md
Namespace: microsoft.graph.deviceManagement
[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)]
-Represents information about the notification channels of an alert rule selected by a user.
+Represents information about the notification channels of an [alert rule](../resources/devicemanagement-alertrule.md) selected by a user.
+ ## Properties
v1.0 Devicemanagement Notificationreceiver https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/devicemanagement-notificationreceiver.md
Namespace: microsoft.graph.deviceManagement
Represents the locale and contact information provided by a user in a [notification channel](../resources/devicemanagement-notificationchannel.md). + ## Properties |Property|Type|Description|
v1.0 Devicemanagement Portalnotification https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/devicemanagement-portalnotification.md
Namespace: microsoft.graph.deviceManagement
[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)]
-Represents the portal notification associated with the alert record of a user.
+Represents the portal notification associated with the [alert record](devicemanagement-alertrecord.md) of a user.
+ ## Properties
Represents the portal notification associated with the alert record of a user.
|alertRuleName|String|The associated alert rule name.| |alertRuleTemplate|[microsoft.graph.deviceManagement.alertRuleTemplate](../resources/devicemanagement-alertrule.md#alertruletemplate-values)|The associated alert rule template. The possible values are: `cloudPcProvisionScenario`, `cloudPcImageUploadScenario`, `cloudPcOnPremiseNetworkConnectionCheckScenario`, `unknownFutureValue`.| |id|String|The unique identifier for the portal notification.|
-|isPortalNotificationSent|Boolean|If `true`, the portal notification has already been sent for the user; otherwise, the portal notification hasn't been sent yet.|
+|isPortalNotificationSent|Boolean|`true` if the portal notification has already been sent to the user; `false` otherwise.|
|severity|[microsoft.graph.deviceManagement.ruleSeverityType](../resources/devicemanagement-alertrule.md#ruleseveritytype-values)|The associated alert rule severity. The possible values are: `unknown`, `informational`, `warning`, `critical`, `unknownFutureValue`.| ## Relationships
v1.0 Devicemanagement Rulethreshold https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/devicemanagement-rulethreshold.md
Namespace: microsoft.graph.deviceManagement
[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)]
-Represents details about the threshold settings of an alert rule.
+Represents details about the threshold settings of an [alert rule](devicemanagement-alertrule.md).
+ ## Properties
v1.0 Dynamics Account https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/dynamics-account.md
Title: accounts resource type
-description: An account object in Dynamics 365 Business Central.
-
+ Title: "accounts resource type"
+description: "Represents an account object in Dynamics 365 Business Central."
+ documentationcenter: ''-+ ms.localizationpriority: medium ms.prod: "dynamics-365-business-central" doc_type: resourcePageType
Represents an account object in Dynamics 365 Business Central.
## Properties | Property | Type |Description| |:|:--|:-|
-|id|GUID|The unique ID of the account.|
-|number|string, maximum size 20|Specifies the number of the G/L account.|
-|displayName|string, maximum size 50|Specifies the name of the G/L account.|
-|category|string, maximum size 20|Specifies the category of the G/L account.|
-|subCategory|string, maximum size 80|Specifies the subcategory of the account category of the G/L account.|
-|blocked|boolean|Specifies that entries cannot be posted to the G/L account. **True** indicates account is blocked and posting is not allowed.|
-|lastModifiedDateTime|datetime|The last datetime the account was modified.|
-
+|blocked|Boolean|Specifies that entries cannot be posted to the G/L account. `True` indicates that the account is blocked and posting is not allowed.|
+|category|String|Specifies the category of the G/L account. Maximum size is 20.|
+|displayName|String|Specifies the name of the G/L account. Maximum size is 50.|
+|id|GUID|The unique identifier for the account.|
+|lastModifiedDateTime|Datetime|The date and time when the account was last modified.|
+|number|String |Specifies the number of the G/L account. Maximum size is 20.|
+|subCategory|String|Specifies the subcategory of the account category of the G/L account. Maximum size is 80.|
## Relationships
-None
+None.
## JSON representation
-Here is a JSON representation of the resource.
+The following is a JSON representation of the resource.
```json {
+ "blocked": "Boolean",
+ "category": "String",
+ "displayName": "String",
"id": "GUID",
- "number": "string",
- "displayName": "string",
- "category": "string",
- "subCategory": "string",
- "blocked": "boolean",
- "lastModifiedDateTime": "datetime"
+ "lastModifiedDateTime": "Datetime"
+ "number": "String",
+ "subCategory": "String"
} ```
v1.0 Dynamics Paymentterms https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/dynamics-paymentterms.md
Namespace: microsoft.graph
[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)]
-Represents a payment term in Dynamics 365 Business Central.
+Represents a [payment term](../resources/dynamics-paymentterms.md) in Dynamics 365 Business Central.
## Methods | Method | Return Type|Description | |:|:--|:-|
-|[Get paymentTerms](../api/dynamics-paymentterms-get.md) |paymentTerms|Get a payment terms object. |
-|[Post paymentTerms](../api/dynamics-create-paymentterms.md) |paymentTerms|Create a payment terms object.|
-|[Patch paymentTerms](../api/dynamics-paymentterms-update.md) |paymentTerms|Update a payment terms object.|
-|[Delete paymentTerms](../api/dynamics-paymentterms-delete.md)|none |Delete a payment terms object.|
+|[Get paymentTerms](../api/dynamics-paymentterms-get.md) |**paymentTerms**|Get a payment terms object. |
+|[Post paymentTerms](../api/dynamics-create-paymentterms.md) |**paymentTerms**|Create a payment terms object.|
+|[Patch paymentTerms](../api/dynamics-paymentterms-update.md) |**paymentTerms**|Update a payment terms object.|
+|[Delete paymentTerms](../api/dynamics-paymentterms-delete.md)|none |Delete a payment terms object.|
## Properties | Property | Type |Description | |:--|:-|:-|
-|id |GUID |The unique ID of the paymentTerms. Non-editable. |
+|calculateDiscountOnCreditMemos|Boolean |Specifies whether the discount should be applied to credit memos. `True` indicates a discount will be given; `false`* indicates a discount will not be given.|
|code |string |Specifies the payment term code. |
-|displayName |string |Specifies the payment term display name. |
-|dueDateCalculation |string |Specifies the formula that is used to calculate the date that a payment must be made.|
|discountDateCalculation |string |Specifies the formula that is used to calculate the date that a payment must be made in order to obtain a discount.| |discountPercent |decimal |Specifies the discount percentage that is applied for early payment of an invoice amount.|
-|calculateDiscountOnCreditMemos|boolean |Specifies if the discount should be applied to credit memos. **True** indicates a discount will be given, **false** indicates a discount will not be given.|
-|lastModifiedDateTime |datetime|The last datetime the paymentTerms was modified. Read-Only.|
+|displayName |string |Specifies the payment term display name. |
+|dueDateCalculation |string |Specifies the formula that is used to calculate the date that a payment must be made.|
+|id |GUID |The unique identifier for the **paymentTerms**. Non-editable. |
+|lastModifiedDateTime |datetime|The date and time when the **paymentTerms** were last modified. Read-Only.|
## Relationships
-None
+None.
## JSON representation
-Here is a JSON representation of the paymentTerms.
+The following is a JSON representation of the resource.
```json {
- "id": "GUID",
+ "calculateDiscountOnCreditMemos": "boolean",
"code": "string",
- "displayName": "string",
- "dueDateCalculation": "string",
"discountDateCalculation": "string", "discountPercent": "decimal",
- "calculateDiscountOnCreditMemos": "boolean",
+ "displayName": "string",
+ "dueDateCalculation": "string",
+ "id": "GUID",
"lastModifiedDateTime": "datetime" }- ```
v1.0 Educationresource https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/educationresource.md
Title: "educationResource resource type"
-description: "A base class for all resource objects in the system."
+description: "An abstract type that represents the base class for all education-related resource objects in a system."
ms.localizationpriority: medium ms.prod: "education"
Namespace: microsoft.graph
[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)]
-A base class for [educationExcelResource](../resources/educationexcelresource.md), [educationFileResource](../resources/educationfileresource.md), [educationLinkResource](../resources/educationlinkresource.md), [educationPowerPointResource](../resources/educationpowerpointresource.md), [educationWordResource](../resources/educationwordresource.md), [educationMediaResource](../resources/educationmediaresource.md), [educationExternalResource](../resources/educationexternalresource.md) and [educationTeamsAppResource](../resources/educationteamsappresource.md).
+An abstract type that represents the base class for all education-related resource objects in a system.
+
+Base type of [educationExcelResource](../resources/educationexcelresource.md), [educationFileResource](../resources/educationfileresource.md), [educationLinkResource](../resources/educationlinkresource.md), [educationPowerPointResource](../resources/educationpowerpointresource.md), [educationWordResource](../resources/educationwordresource.md), [educationMediaResource](../resources/educationmediaresource.md), [educationExternalResource](../resources/educationexternalresource.md), and [educationTeamsAppResource](../resources/educationteamsappresource.md).
An educationResource is associated with an [assignment](educationassignment.md) and/or [submission](educationsubmission.md), which represents the learning object that is being handed out or handed in. You cannot instantiate a resource directly; you must make a subclass that will represent the type of resource being used.
v1.0 Educationteamsappresource https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/educationteamsappresource.md
Title: "educationTeamsAppResource resource type"
-description: "Corresponds to an [installed Microsoft Teams app](teamsappinstallation.md). This allows education service users to create and share assignments with embedded Teams applications."
+description: "Corresponds to an installed Microsoft Teams app."
ms.localizationpriority: medium ms.prod: "education"
Namespace: microsoft.graph
[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)]
-An education resource that corresponds to an [installed Microsoft Teams app](teamsappinstallation.md). This allows education service users to create and share assignments with embedded Teams applications, such as YouTube or FlipGrid.
+Corresponds to an [installed Microsoft Teams app](teamsappinstallation.md). This allows education service users to create and share assignments with embedded Teams applications, such as YouTube or Flip.
-For information about using FlipGrid for education on Microsoft Teams, see [introduction to FlipGrid](https://education.microsoft.com/en-us/resource/13cb22b1).
+For information about using Flip for education on Microsoft Teams, see [introduction to Flip](/training/educator-center/product-guides/flip).
-Inherites from [educationResource](educationresource.md).
+Inherits from [educationResource](educationresource.md).
## Properties
-| Property | Type |Description|
-|:|:--|:-|
-|displayName|string|The display name of the resource.|
-|appId|string|Teams App ID of the application.|
-|appIconWebUrl|string|URL that points to the app's icon.|
-|teamsEmbeddedContentUrl|string|URL for the app resource that will be opened by Teams.|
-|webUrl|string|URL for the app resource that can be opened in the browser.|
-|createdBy|String|The display name of the user that created this resource. Inherited from **educationResource**.|
-|createdDateTime|DateTimeOffset|Date time the resoruce was added. Inherited from **educationResource**.|
-|lastModifiedBy|[identitySet](identityset.md)|The last user to modify the resource. Inherited from **educationResource**.|
-|lastModifiedDateTime|DateTimeOffset|The date and time when the resource was last modified. 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 **educationResource**.|
+| Property | Type | Description |
+|:|:|:--|
+| appIconWebUrl | String | URL that points to the icon of the app. |
+| appId | String | Teams app ID of the application. |
+| createdBy | [identitySet](identityset.md) | Identity of the user who created this resource. Inherited from **educationResource**. |
+| createdDateTime | DateTimeOffset | The date and time when the resource was added. 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 **educationResource**. |
+| displayName | String | The display name of the resource. Inherited from **educationResource**. |
+| lastModifiedBy | [identitySet](identityset.md) | Identity of the user who last modified the resource. Inherited from **educationResource**. |
+| lastModifiedDateTime | DateTimeOffset | The date and time when the resource was last modified. 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 **educationResource**. |
+| teamsEmbeddedContentUrl | String | URL for the app resource that will be opened by Teams. |
+| webUrl | String | URL for the app resource that can be opened in the browser. |
## JSON representation
The following is a JSON representation of the resource.
```json {
- "displayName": "String",
- "appId": "Unique String",
- "appIconWebUrl": "String URL",
- "teamsEmbeddedContentUrl": "String URL",
- "webUrl": "String URL",
+ "appIconWebUrl": "String",
+ "appId": "String",
"createdBy": {"@odata.type": "microsoft.graph.identitySet"}, "createdDateTime": "String (timestamp)",
+ "displayName": "String",
"lastModifiedBy": {"@odata.type": "microsoft.graph.identitySet"},
- "lastModifiedDateTime": "String (timestamp)"
+ "lastModifiedDateTime": "String (timestamp)",
+ "teamsEmbeddedContentUrl": "String",
+ "webUrl": "String"
}- ``` <!-- uuid: 8fcb5dbc-d5aa-4681-8e31-b001d5168d79
The following is a JSON representation of the resource.
<!-- { "type": "#page.annotation",
- "description": "educationExcelResource resource",
+ "description": "educationTeamsAppResource resource",
"keywords": "", "section": "documentation", "tocPath": "", "suppressions": [] } -->--
v1.0 Emailauthenticationmethod https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/emailauthenticationmethod.md
Namespace: microsoft.graph
A representation of an email address registered to a user. Email is an authentication method available only to self-service password reset (SSPR). Users may only have one email authentication method.
+This is a derived type that inherits from the [authenticationMethod](authenticationmethod.md) resource type.
## Methods |Method|Return type|Description|
v1.0 Emailauthenticationmethodconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/emailauthenticationmethodconfiguration.md
Title: "emailAuthenticationMethodConfiguration resource type" description: "Represents an email OTP authentication methods policy"-+ ms.localizationpriority: medium ms.prod: "identity-and-sign-in" doc_type: "resourcePageType"
Represents this tenant's email OTP authentication methods policy. Authentication
|Method|Return type|Description| |:|:|:| |[Get emailAuthenticationMethodConfiguration](../api/emailauthenticationmethodconfiguration-get.md)|[emailAuthenticationMethodConfiguration](../resources/emailauthenticationmethodconfiguration.md)|Read the properties and relationships of an emailAuthenticationMethodConfiguration object.|
-|[Update emailAuthenticationMethodConfiguration](../api/emailauthenticationmethodconfiguration-update.md)|[emailAuthenticationMethodConfiguration](../resources/emailauthenticationmethodconfiguration.md)|Update the properties of an emailAuthenticationMethodConfiguration object.|
-|[Delete emailAuthenticationMethodConfiguration](../api/emailauthenticationmethodconfiguration-delete.md)|None|Deletes an emailAuthenticationMethodConfiguration object.|
+|[Update emailAuthenticationMethodConfiguration](../api/emailauthenticationmethodconfiguration-update.md)|None|Update the properties of an emailAuthenticationMethodConfiguration object.|
+|[Delete emailAuthenticationMethodConfiguration](../api/emailauthenticationmethodconfiguration-delete.md)|None|Reverts the emailAuthenticationMethodConfiguration object to its default configuration.|
## Properties |Property|Type|Description| |:|:|:|
+|excludeTargets|[excludeTarget](../resources/excludetarget.md) collection|Groups of users that are excluded from the policy.|
|id|String|The authentication method policy identifier. Inherited from [authenticationMethodConfiguration](../resources/authenticationmethodconfiguration.md).| |state|authenticationMethodState|Indicates whether this authentication method is enabled or not. Possible values are: `enabled`, `disabled`.| |allowExternalIdToUseEmailOtp|externalEmailOtpState|Determines whether email OTP is usable by external users for authentication. Possible values are: `default`, `enabled`, `disabled`, `unknownFutureValue`. Tenants in the `default` state who did not use public preview will automatically have email OTP enabled beginning in October 2021.|
Represents this tenant's email OTP authentication methods policy. Authentication
|Relationship|Type|Description| |:|:|:|
-|includeTargets|[authenticationMethodTarget](../resources/authenticationmethodtarget.md) collection|A collection of users or groups who are enabled to use the authentication method.|
+|includeTargets|[authenticationMethodTarget](../resources/authenticationmethodtarget.md) collection|A collection of groups that are enabled to use the authentication method.|
## JSON representation
The following is a JSON representation of the resource.
"@odata.type": "#microsoft.graph.emailAuthenticationMethodConfiguration", "id": "String (identifier)", "state": "String",
+ "excludeTargets": [
+ {
+ "@odata.type": "microsoft.graph.excludeTarget"
+ }
+ ],
"allowExternalIdToUseEmailOtp": "String", "includeTargets": [ { "@odata.type": "microsoft.graph.authenticationMethodTarget" } ] }
v1.0 Emailpayloaddetail https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/emailpayloaddetail.md
+
+ Title: "emailPayloadDetail resource type"
+description: "Represents details of an email type payload."
+
+ms.localizationpriority: medium
++
+# emailPayloadDetail resource type
+
+Namespace: microsoft.graph
++
+Represents details of an email type payload.
+
+Inherits from [payloadDetail](../resources/payloaddetail.md).
+
+## Properties
+
+|Property|Type|Description|
+|:|:|:|
+|coachmarks|[payloadCoachmark](../resources/payloadcoachmark.md)|Payload coachmark details. Inherited from [payloadDetail](../resources/payloaddetail.md).|
+|content|String|Payload content details. Inherited from [payloadDetail](../resources/payloaddetail.md).|
+|fromEmail|String|Email address of the user.|
+|fromName|String|Display name of the user.|
+|isExternalSender|Boolean|Indicates whether the sender is not from the user's organization.|
+|phishingUrl|String|Phishing URL used to target a user. Inherited from [payloadDetail](../resources/payloaddetail.md).|
+|subject|String|The subject of the email address sent to the user.|
+
+## Relationships
+
+None.
+
+## JSON representation
+
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.emailPayloadDetail"
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.emailPayloadDetail",
+ "coachMarks": [
+ {
+ "@odata.type": "microsoft.graph.payloadCoachmark"
+ }
+ ],
+ "content": "String",
+ "fromEmail": "String",
+ "fromName": "String",
+ "isExternalSender": "Boolean",
+ "phishingUrl": "String",
+ "subject": "String"
+}
+```
v1.0 Entitlementmanagement Overview https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/entitlementmanagement-overview.md
ms.localizationpriority: medium
ms.prod: "governance" doc_type: "conceptualPageType" Last updated : 11/11/2022 # Working with the Azure AD entitlement management API
v1.0 Enums https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/enums.md
Possible values for user account types (group membership), per Windows definitio
|actionUndefined| |unknownFutureValue|
+### plannerRelationshipUserRoles values
+
+|Member|
+|:|
+|defaultRules|
+|groupOwners|
+|groupMembers|
+|taskAssignees|
+|applications|
+|unknownFutureValue|
+
+### plannerRuleKind values
+
+|Member|
+|:|
+|taskRule|
+|bucketRule|
+|planRule|
+|unknownFutureValue|
+
+### plannerUserRoleKind values
+
+|Member|
+|:|
+|relationship|
+|unknownFutureValue|
+
+### plannerTaskTargetKind values
+
+|Member|
+|:|
+|group|
+|unknownFutureValue|
+ ### onPremisesDirectorySynchronizationDeletionPreventionType values |Member|
Possible values for user account types (group membership), per Windows definitio
|disabled| |enabledForCount| |enabledForPercentage|
+|enabledForPercentage|
|unknownFutureValue|+
+### authenticationMethodTargetType values
+
+|Member|
+|:--|
+|group|
+|unknownFutureValue|
+
+### authenticationMethodsPolicyMigrationState values
+
+|Member|
+|:--|
+|premigration|
+|migrationInProgress|
+|migrationComplete|
+
+### authenticationEventType values
+
+|Member|
+|:|
+|tokenIssuanceStart|
+|pageRenderStart|
+|unknownFutureValue|
v1.0 Excludetarget https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/excludetarget.md
Represents the users or groups of users that are excluded from a policy.
## Properties |Property|Type|Description| |:|:|:|
-|id|String|The object identifier of an Azure AD user or group.|
-|targetType|authenticationMethodTargetType|The type of the authentication method target. Possible values are: `user`, `group`, `unknownFutureValue`.|
+|id|String|The object identifier of an Azure AD group.|
+|targetType|authenticationMethodTargetType|The type of the authentication method target. Possible values are: `group` and `unknownFutureValue`.|
## Relationships None.
v1.0 Federatedidentitycredentials Overview https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/federatedidentitycredentials-overview.md
ms.localizationpriority: medium ms.prod: "applications" doc_type: conceptualPageType Last updated : 08/03/2022 # Overview of federated identity credentials in Azure Active Directory
v1.0 Fido2authenticationmethod https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/fido2authenticationmethod.md
Namespace: microsoft.graph
A representation of a FIDO2 security key registered to a user. FIDO2 is a sign-in authentication method.
+This is a derived type that inherits from the [authenticationMethod](authenticationmethod.md) resource type.
## Methods |Method|Return type|Description|
v1.0 Fido2authenticationmethodconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/fido2authenticationmethodconfiguration.md
Represents a FIDO2 authentication methods policy. Authentication methods policie
|Method|Return type|Description| |:|:|:| |[Get](../api/fido2authenticationmethodconfiguration-get.md)|[fido2AuthenticationMethodConfiguration](../resources/fido2authenticationmethodconfiguration.md)|Read the properties and relationships of a fido2AuthenticationMethodConfiguration object.|
-|[Update](../api/fido2authenticationmethodconfiguration-update.md)|[fido2AuthenticationMethodConfiguration](../resources/fido2authenticationmethodconfiguration.md)|Update the properties of a fido2AuthenticationMethodConfiguration object.|
+|[Update](../api/fido2authenticationmethodconfiguration-update.md)|None|Update the properties of a fido2AuthenticationMethodConfiguration object.|
|[Delete](../api/fido2authenticationmethodconfiguration-delete.md)|None|Reverts the fido2AuthenticationMethodConfiguration object to its default configuration.| ## Properties |Property|Type|Description| |:|:|:|
+|excludeTargets|[excludeTarget](../resources/excludetarget.md) collection|Groups of users that are excluded from the policy.|
|id|String|The authentication method policy identifier.| |isAttestationEnforced|Boolean|Determines whether attestation must be enforced for FIDO2 security key registration.| |isSelfServiceRegistrationAllowed|Boolean|Determines if users can register new FIDO2 security keys.|
Represents a FIDO2 authentication methods policy. Authentication methods policie
## Relationships |Relationship|Type|Description| |:|:|:|
-|includeTargets|[authenticationMethodTarget](../resources/authenticationmethodtarget.md) collection|A collection of users or groups who are enabled to use the authentication method.|
+|includeTargets|[authenticationMethodTarget](../resources/authenticationmethodtarget.md) collection|A collection of groups that are enabled to use the authentication method.|
## JSON representation The following is a JSON representation of the resource.
The following is a JSON representation of the resource.
"@odata.type": "#microsoft.graph.fido2AuthenticationMethodConfiguration", "id": "String (identifier)", "state": "String",
+ "excludeTargets": [
+ {
+ "@odata.type": "microsoft.graph.excludeTarget"
+ }
+ ],
"isSelfServiceRegistrationAllowed": "Boolean", "isAttestationEnforced": "Boolean", "keyRestrictions": {
v1.0 Group https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/group.md
This resource supports:
| [Delete group](../api/group-delete.md) | None | Delete group object. | | [List groups](../api/group-list.md) | [group](group.md) | Read properties and relationships of all group objects. | | [delta](../api/group-delta.md) | group collection | Get incremental changes for groups. |
-| [Add members](../api/group-post-members.md) | [directoryObject](directoryobject.md) | Add a user or group to this group by posting to the **members** navigation property (supported for security groups and Microsoft 365 groups only). |
+| [Add members](../api/group-post-members.md) | [directoryObject](directoryobject.md) | Add a member to this group by posting to the **members** navigation property (supported for security groups and Microsoft 365 groups only). |
| [Add owners](../api/group-post-owners.md) | [directoryObject](directoryobject.md) | Add a new owner for the group by posting to the **owners** navigation property (supported for security groups and Microsoft 365 groups only). |
-| [Create setting](../api/group-post-settings.md) | [directorySetting](directorysetting.md) | Create a setting object based on a directorySettingTemplate. The POST request must provide settingValues for all the settings defined in the template. Only groups specific templates may be used for this operation. |
-| [Delete setting](../api/directorysetting-delete.md) | None | Delete a setting object. |
| [Get endpoint](../api/endpoint-get.md) | [endpoint](endpoint.md) | Read properties and relationships of an endpoint object. |
-| [Get setting](../api/directorysetting-get.md) | [directorySetting](directorysetting.md) | Read properties of a specific setting object. |
| [List endpoints](../api/group-list-endpoints.md) | [endpoint](endpoint.md) collection | Get an endpoint object collection. | | [List members](../api/group-list-members.md) | [directoryObject](directoryobject.md) collection | Get the users and groups that are direct members of this group from the **members** navigation property. | | [List memberOf](../api/group-list-memberof.md) | [directoryObject](directoryobject.md) collection | Get the groups and administrative units that this group is a direct member of from the memberOf navigation property. | | [List groupLifecyclePolicies](../api/group-list-grouplifecyclepolicies.md) | [groupLifecyclePolicy](grouplifecyclepolicy.md) collection | List group lifecycle policies. | | [List owners](../api/group-list-owners.md) | [directoryObject](directoryobject.md) collection | Get the owners of the group from the **owners** navigation property. |
-| [List settings](../api/group-list-settings.md) | [directorySetting](directorysetting.md) collection | List properties of all setting objects. |
| [List transitive members](../api/group-list-transitivemembers.md) | [directoryObject](directoryobject.md) collection | Get the users, groups, devices, and service principals that are members, including nested members of this group. | | [List transitive memberOf](../api/group-list-transitivememberof.md) | [directoryObject](directoryobject.md) collection | List the groups and administrative units that this group is a member of. This operation is transitive and includes the groups that this group is a nested member of. | | [Remove owner](../api/group-delete-owners.md) | None | Remove an owner from a Microsoft 365 group or a security group through the **owners** navigation property. | | [Remove member](../api/group-delete-members.md) | None | Remove a member from a Microsoft 365 group or a security group through the **members** navigation property. |
-| [Update setting](../api/directorysetting-update.md) | [directorySetting](directorysetting.md) | Update a setting object. |
| [assignLicense](../api/group-assignlicense.md) | [group](group.md) | Add or remove subscriptions for the group. You can also enable and disable specific plans associated with a subscription. | | [evaluateDynamicMembership](../api/group-evaluatedynamicmembership.md) | [evaluateDynamicMembershipResult](evaluatedynamicmembershipresult.md) | Evaluate whether a user or device is or would be a member of a dynamic group. | | [renew](../api/group-renew.md) | Boolean | Renews a group's expiration. When a group is renewed, the group expiration is extended by the number of days defined in the policy. |
This resource supports:
| [getMemberGroups](../api/directoryobject-getmembergroups.md) | String collection | Return all the groups that the group is a member of. The function is transitive. | | [checkMemberObjects](../api/directoryobject-checkmemberobjects.md) | String collection | Check for membership in a list of group, directory role, or administrative unit objects. The function is transitive. | | [getMemberObjects](../api/directoryobject-getmemberobjects.md) | String collection | Return all of the groups and administrative units that the group is a member of. The function is transitive. |
+| **Group settings** | | |
+| [Create setting](../api/group-post-settings.md) | [directorySetting](directorysetting.md) | Create a setting object based on a directorySettingTemplate. The POST request must provide settingValues for all the settings defined in the template. Only groups specific templates may be used for this operation. |
+| [Get setting](../api/directorysetting-get.md) | [directorySetting](directorysetting.md) | Read properties of a specific setting object. |
+| [List settings](../api/group-list-settings.md) | [directorySetting](directorysetting.md) collection | List properties of all setting objects. |
+| [Update setting](../api/directorysetting-update.md) | None | Update a setting object. |
+| [Delete setting](../api/directorysetting-delete.md) | None | Delete a setting object. |
+| [Get setting template](../api/directorysettingtemplate-get.md) | None | Read properties of a setting template. |
+| [List setting templates](../api/directorysettingtemplate-list.md) | None | List properties of all setting templates. |
| **Open extensions** | | | | [Create open extension](../api/opentypeextension-post-opentypeextension.md) | [openTypeExtension](opentypeextension.md) | Create an open extension and add custom properties to a new or existing resource. | | [Get open extension](../api/opentypeextension-get.md) | [openTypeExtension](opentypeextension.md) collection | Get an open extension identified by the extension name. |
This resource supports:
| hideFromOutlookClients | Boolean | `true` if the group is not displayed in Outlook clients, such as Outlook for Windows and Outlook on the web, false otherwise. Default value is `false`. <br><br>Returned only on `$select`. Supported only on the Get group API (`GET /groups/{ID}`). | | id | String | The unique identifier for the group. <br><br>Returned by default. Inherited from [directoryObject](directoryobject.md). Key. Not nullable. Read-only. <br><br>Supports `$filter` (`eq`, `ne`, `not`, `in`). | | isArchived | Boolean | When a group is associated with a team, this property determines whether the team is in read-only mode. <br/>To read this property, use the `/group/{groupId}/team` endpoint or the [Get team](../api/team-get.md) API. To update this property, use the [archiveTeam](../api/team-archive.md) and [unarchiveTeam](../api/team-unarchive.md) APIs. |
-| isAssignableToRole | Boolean | Indicates whether this group can be assigned to an Azure Active Directory role. Optional. <br><br>This property can only be set while creating the group and is immutable. If set to `true`, the **securityEnabled** property must also be set to `true` and the group cannot be a dynamic group (that is, **groupTypes** cannot contain `DynamicMembership`). <br/><br/>Only callers in Global Administrator and Privileged Role Administrator roles can set this property. The caller must also be assigned the _RoleManagement.ReadWrite.Directory_ permission to set this property or update the membership of such groups. For more, see [Using a group to manage Azure AD role assignments](https://go.microsoft.com/fwlink/?linkid=2103037)<br><br>Returned by default. Supports `$filter` (`eq`, `ne`, `not`). |
+| isAssignableToRole | Boolean | Indicates whether this group can be assigned to an Azure Active Directory role. Optional. <br><br>This property can only be set while creating the group and is immutable. If set to `true`, the **securityEnabled** property must also be set to `true`, **visibility** must be `Hidden`, and the group cannot be a dynamic group (that is, **groupTypes** cannot contain `DynamicMembership`). <br/><br/>Only callers in Global Administrator and Privileged Role Administrator roles can set this property. The caller must also be assigned the _RoleManagement.ReadWrite.Directory_ permission to set this property or update the membership of such groups. For more, see [Using a group to manage Azure AD role assignments](https://go.microsoft.com/fwlink/?linkid=2103037)<br><br>Using this feature requires a Azure AD Premium P1 license. Returned by default. Supports `$filter` (`eq`, `ne`, `not`). |
| infoCatalogs | String collection | Identifies the info segments assigned to the group. Returned by default. Supports `$filter` (`eq`, `not`, `ge`, `le`, `startsWith`). | | isSubscribedByMail | Boolean | Indicates whether the signed-in user is subscribed to receive email conversations. Default value is `true`. <br><br>Returned only on `$select`. Supported only on the Get group API (`GET /groups/{ID}`). | | licenseProcessingState | String | Indicates status of the group license assignment to all members of the group. Possible values: `QueuedForProcessing`, `ProcessingInProgress`, and `ProcessingComplete`. <br><br>Returned only on `$select`. Read-only. |
v1.0 Groups Overview https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/groups-overview.md
ms.localizationpriority: high ms.prod: "groups" doc_type: conceptualPageType Last updated : 12/15/2022 # Working with groups in Microsoft Graph
Content-type: application/json
} ```
-## Dynamic membership
+## Group membership
-All types of groups can have dynamic membership rules that automatically add or remove members from the group based on the principal's properties. For example, a "Marketing employees" group can define a dynamic membership rule that only users with their department property set to "Marketing" can be members of the group. In this case, any user's who leave the department are automatically removed from the group.
+Not all object types can be members of both Microsoft 365 and security groups.
-The dynamic membership rules are specified through the **membershipRule** property during group creation. For example, `"membershipRule": 'user.department -eq "Marketing"'`. The **groupType** property must also include `"DynamicMembership"` value in the collection. The dynamic membership rule can be turned on or off through the **membershipRuleProcessingState** property.
+
+### Dynamic membership
+
+Microsoft 365 and security groups can have dynamic membership rules that automatically add or remove members from the group based on the principal's properties. For example, a "Marketing employees" group can define a dynamic membership rule that only users with their department property set to "Marketing" can be members of the group. In this case, any user's who leave the department are automatically removed from the group.
+
+Only users and devices are supported as members in dynamic membership groups. You can create a dynamic membership group for devices or users, but not both.
+
+The dynamic membership rules are specified through the **membershipRule** property during group creation. A single expression follows this syntax: `Property Operator Value`.
+
+- The `Property` is defined following this syntax: `object.property`. For example `user.department` or `device.accountEnabled`.
+- The rule syntax supports various operators. For more information, see [Supported expression operators](/azure/active-directory/enterprise-users/groups-dynamic-membership).
+- A `Value` of type String must be enclosed in double quotes ("). You must use a backslash to escape any double quotes inside double quotes. This requirement doesn't apply when using the rule builder in the Azure portal because the expression isn't enclosed in double quotes.
+
+The following example shows shows a complete rule.
+
+`"membershipRule": "user.department -eq \"Marketing\""`.
+
+You can combine multiple expressions in a rule using the `and`, `or`, and `not` operators.
+
+The **groupType** property must also include the `"DynamicMembership"` value in the collection. The dynamic membership rule can be turned on or off through the **membershipRuleProcessingState** property. You can update a group with assigned membership to have dynamic membership.
The following example request creates a new Microsoft 365 group that can only include employees in the Marketing department.
+<!-- {
+ "blockType": "request",
+ "name": "groups_overview_createdynamicgroup"
+}-->
```http POST https://graph.microsoft.com/beta/groups Content-type: application/json
Content-type: application/json
"mailEnabled": true, "mailNickname": "marketing", "securityEnabled": false,
- "membershipRule": "'user.department -eq 'Marketing'",
+ "membershipRule": "user.department -eq \"Marketing\"",
"membershipRuleProcessingState": "on" } ```
+The request returns a `201 Created` response code and the newly created group object in the response body.
+
+>**Note:** The response object shown here might be shortened for readability.
+<!-- {
+ "blockType": "response",
+ "truncated": true,
+ "@odata.type": "microsoft.graph.group"
+} -->
+```http
+HTTP/1.1 201 Created
+Content-type: application/json
+
+{
+ "@odata.context": "https://graph.microsoft.com/beta/$metadata#groups/$entity",
+ "id": "6f7cd676-5445-47c4-9c2b-c47da4671da2",
+ "createdDateTime": "2023-01-20T07:00:31Z",
+ "description": "Marketing department folks",
+ "displayName": "Marketing department",
+ "groupTypes": [
+ "Unified",
+ "DynamicMembership"
+ ],
+ "mail": "marketing@contoso.com",
+ "mailEnabled": true,
+ "mailNickname": "marketing",
+ "membershipRule": "user.department -eq \"Marketing\"",
+ "membershipRuleProcessingState": "On"
+}
+```
+ To learn more about formulating membership rules, see [Dynamic membership rules for groups in Azure Active Directory](/azure/active-directory/enterprise-users/groups-dynamic-membership).
-> **Note**: Dynamic membership rules requires the tenant to have at least an Azure AD Premium P1 license for each unique user that is a member of one or more dynamic groups.
+> [!NOTE]
+> Dynamic membership rules requires the tenant to have at least an Azure AD Premium P1 license for each unique user that is a member of one or more dynamic groups.
## Other types of groups
-Microsoft 365 groups in Yammer are used to facilitate user collaboration through Yammer posts. This type of group can be returned through a read request, but their posts can't be accessed through the API. When Yammer posts and conversation feeds are enabled on a group, default Microsoft 365 group conversations are disabled. To learn more, see [Yammer developer API docs](https://developer.yammer.com/docs).
+Microsoft 365 groups in Yammer are used to facilitate user collaboration through Yammer posts. This type of group can be returned through a read request, but their posts can't be accessed through the API. When Yammer posts and conversation feeds are enabled on a group, default Microsoft 365 group conversations are disabled. To learn more, see [Yammer developer API docs](/rest/api/yammer/).
## Group search limitations for guest users in organizations
v1.0 Identitygovernance Lifecycleworkflows Overview https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/identitygovernance-lifecycleworkflows-overview.md
ms.localizationpriority: medium
ms.prod: "governance" doc_type: conceptualPageType Last updated : 11/29/2022 # Overview of Lifecycle Workflows APIs
v1.0 Identitygovernance Lifecycleworkflows Reporting Overview https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/identitygovernance-lifecycleworkflows-reporting-overview.md
ms.localizationpriority: medium
ms.prod: "governance" doc_type: conceptualPageType Last updated : 11/17/2022 # Lifecycle Workflow reporting API Overview
v1.0 Identitygovernance Overview https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/identitygovernance-overview.md
ms.localizationpriority: medium
ms.prod: "governance" doc_type: conceptualPageType Last updated : 11/29/2022 # Overview of Azure AD Identity Governance using Microsoft Graph
v1.0 Identitygovernance Task https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/identitygovernance-task.md
Inherits from [entity](../resources/entity.md).
|:|:|:| |[List tasks](../api/identitygovernance-workflow-list-task.md)|[microsoft.graph.identityGovernance.task](../resources/identitygovernance-task.md) collection|Get a list of the [task](../resources/identitygovernance-task.md) objects and their properties.| |[Get task](../api/identitygovernance-task-get.md)|[microsoft.graph.identityGovernance.task](../resources/identitygovernance-task.md)|Read the properties and relationships of a [task](../resources/identitygovernance-task.md) object.|
+|[Update task](../api/identitygovernance-task-update.md)|[microsoft.graph.identityGovernance.task](../resources/identitygovernance-task.md)|update the properties of a [task](../resources/identitygovernance-task.md) object.|
## Properties
v1.0 Identityprotection Overview https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/identityprotection-overview.md
ms.localizationpriority: medium ms.prod: "identity-and-sign-in" doc_type: conceptualPageType Last updated : 12/06/2022 # Use the Microsoft Graph identity protection APIs
v1.0 Inboundoutboundpolicyconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/inboundoutboundpolicyconfiguration.md
+
+ Title: "inboundOutboundPolicyConfiguration resource type"
+description: "Defines the inbound and outbound rulesets for particular configurations within cross-tenant access settings."
+
+ms.localizationpriority: medium
++
+# inboundOutboundPolicyConfiguration resource type
+
+Namespace: microsoft.graph
++
+Defines the inbound and outbound rulesets for particular configurations within cross-tenant access settings.
+
+## Properties
+
+|Property|Type|Description|
+|:|:|:|
+| inboundAllowed | Boolean | Defines whether external users coming inbound are allowed. |
+| outboundAllowed | Boolean | Defines whether internal users are allowed to go outbound. |
+
+## Relationships
+
+None.
+
+## JSON representation
+
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.inboundOutboundPolicyConfiguration"
+}
+-->
+
+``` json
+{
+ "@odata.type": "#microsoft.graph.inboundOutboundPolicyConfiguration",
+ "inboundAllowed": {
+ "@odata.type": "Boolean"
+ },
+ "applications": {
+ "@odata.type": "Boolean"
+ }
+}
+```
v1.0 Includeallaccounttargetcontent https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/includeallaccounttargetcontent.md
+
+ Title: "includeAllAccountTargetContent resource type"
+description: "Represents all users of a tenant who should be selected for a targeted phishing simulation."
+
+ms.localizationpriority: medium
++
+# includeAllAccountTargetContent resource type
+
+Namespace: microsoft.graph
++
+Represents all users of a tenant who should be selected for a targeted phishing simulation.
+
+Inherits from [accountTargetContent](../resources/accounttargetcontent.md).
+
+## Properties
+
+|Property|Type|Description|
+|:|:|:|
+|type|accountTargetContentType| The type of account target content. The possible values are: `unknown`, `includeAll`, `addressBook`, `unknownFutureValue`. Inherited from [accountTargetContent](../resources/accounttargetcontent.md).|
+
+## Relationships
+
+None.
+
+## JSON representation
+
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.includeAllAccountTargetContent",
+ "openType": true
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.security.includeAllAccountTargetContent",
+ "type": "String"
+}
+```
+
+## See also
+
+- [Simulate a phishing attack](/microsoft-365/security/office-365-security/attack-simulation-training?view=o365-worldwide&preserve-view=true)
+- [Get started using attack simulation training](/microsoft-365/security/office-365-security/attack-simulation-training-get-started?view=o365-worldwide&preserve-view=true#simulations).
v1.0 Indexing Api Overview https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/indexing-api-overview.md
The use cases for the APIs in this section involve building [Microsoft Graph con
The following are current known limitations: -- Organizations are limited to a maximum of 10 connections.-- You can create only four `externalItem` resources items per second.-- An application is limited to four concurrent operations on a connection.-- Connections have a capacity limit of 700,000 items or ~70 GB of data.
+- Organizations are limited to a maximum of 10 connections (reach out if you need more).
+- You can create up to 25 `externalItem` resources items per second.
+- An application is limited to 25 concurrent operations on a connection.
+- Connections have a capacity limit of 5,000,000 items or ~350 GB of data.
- Maximum size of an `externalItem` entity is 4 MB. - Sorting results is not supported.
v1.0 Internaldomainfederation https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/internaldomainfederation.md
Title: "internalDomainFederation resource type" description: "Represents configurations of the domains in a tenant that are federated with Azure AD."-+ ms.localizationpriority: medium ms.prod: "identity-and-sign-in" doc_type: resourcePageType
v1.0 Intune Androidforwork Androiddeviceownerenrollmentmode https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-androidforwork-androiddeviceownerenrollmentmode.md
Title: "androidDeviceOwnerEnrollmentMode enum type" description: "The enrollment mode for an enrollment profile."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
The enrollment mode for an enrollment profile.
|corporateOwnedWorkProfile|2|Not yet documented| |corporateOwnedAOSPUserlessDevice|3|Corporate owned, userless Android Open Source Project (AOSP) device, without Google Mobile Services.| |corporateOwnedAOSPUserAssociatedDevice|4|Corporate owned, user-associated Android Open Source Project (AOSP) device, without Google Mobile Services.|-----
v1.0 Intune Androidforwork Androiddeviceownerenrollmentprofile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-androidforwork-androiddeviceownerenrollmentprofile.md
Title: "androidDeviceOwnerEnrollmentProfile resource type" description: "Enrollment Profile used to enroll Android Enterprise devices using Google's Cloud Management."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Enrollment Profile used to enroll Android Enterprise devices using Google's Clou
|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.|
## Relationships None
Here is a JSON representation of the resource.
"wifiSsid": "String", "wifiPassword": "String", "wifiSecurityType": "String",
- "wifiHidden": true
+ "wifiHidden": true,
+ "isTeamsDeviceProfile": true
} ```-----
v1.0 Intune Androidforwork Androiddeviceownerenrollmenttokentype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-androidforwork-androiddeviceownerenrollmenttokentype.md
Title: "androidDeviceOwnerEnrollmentTokenType enum type" description: "The enrollment token type for an enrollment profile."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
The enrollment token type for an enrollment profile.
|:|:|:| |default|0|Default token type.| |corporateOwnedDedicatedDeviceWithAzureADSharedMode|1|Token type for Azure AD shared dedicated device enrollment. It applies to CorporateOwnedDedicatedDevice enrollment mode only.|-----
v1.0 Intune Androidforwork Androidenrollmentcompanycode https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-androidforwork-androidenrollmentcompanycode.md
Title: "androidEnrollmentCompanyCode resource type" description: "A class to hold specialty enrollment data used for enrolling via Google's Android Management API, such as Token, Url, and QR code content"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Androidforwork Androidforworkappconfigurationschema https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-androidforwork-androidforworkappconfigurationschema.md
Title: "androidForWorkAppConfigurationSchema resource type" description: "Schema describing an Android for Work application's custom configurations."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Androidforwork Androidforworkappconfigurationschemaitem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-androidforwork-androidforworkappconfigurationschemaitem.md
Title: "androidForWorkAppConfigurationSchemaItem resource type" description: "Single configuration item inside an Android for Work application's custom configuration schema."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Single configuration item inside an Android for Work application's custom config
|defaultStringValue|String|Default value for string type items, if specified by the app developer| |defaultStringArrayValue|String collection|Default value for string array type items, if specified by the app developer| |dataType|[androidForWorkAppConfigurationSchemaItemDataType](../resources/intune-androidforwork-androidforworkappconfigurationschemaitemdatatype.md)|The type of value this item describes. Possible values are: `bool`, `integer`, `string`, `choice`, `multiselect`, `bundle`, `bundleArray`, `hidden`.|
-|selections|[keyValuePair](../resources/intune-shared-keyvaluepair.md) collection|List of human readable name/value pairs for the valid values that can be set for this item (Choice and Multiselect items only)|
+|selections|[keyValuePair](../resources/intune-androidforwork-keyvaluepair.md) collection|List of human readable name/value pairs for the valid values that can be set for this item (Choice and Multiselect items only)|
## Relationships None
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Androidforwork Androidforworkappconfigurationschemaitemdatatype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-androidforwork-androidforworkappconfigurationschemaitemdatatype.md
Title: "androidForWorkAppConfigurationSchemaItemDataType enum type" description: "Data type for a configuration item inside an Android for Work application's custom configuration schema"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Data type for a configuration item inside an Android for Work application's cust
|bundle|5|Not yet documented| |bundleArray|6|Not yet documented| |hidden|7|Not yet documented|-----
v1.0 Intune Androidforwork Androidforworkbindstatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-androidforwork-androidforworkbindstatus.md
Title: "androidForWorkBindStatus enum type" description: "Bind status of the tenant with the Google EMM API"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Bind status of the tenant with the Google EMM API
|bound|1|Not yet documented| |boundAndValidated|2|Not yet documented| |unbinding|3|Not yet documented|-----
v1.0 Intune Androidforwork Androidforworkenrollmentprofile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-androidforwork-androidforworkenrollmentprofile.md
Title: "androidForWorkEnrollmentProfile resource type" description: "Enrollment Profile used to enroll COSU devices using Google's Cloud Management."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Androidforwork Androidforworkenrollmenttarget https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-androidforwork-androidforworkenrollmenttarget.md
Title: "androidForWorkEnrollmentTarget enum type" description: "Android for Work device management targeting type for the account"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Android for Work device management targeting type for the account
|all|1|Not yet documented| |targeted|2|Not yet documented| |targetedAsEnrollmentRestrictions|3|Not yet documented|-----
v1.0 Intune Androidforwork Androidforworksettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-androidforwork-androidforworksettings.md
Title: "androidForWorkSettings resource type" description: "Settings for Android For Work."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"deviceOwnerManagementEnabled": true } ```-----
v1.0 Intune Androidforwork Androidforworksyncstatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-androidforwork-androidforworksyncstatus.md
Title: "androidForWorkSyncStatus enum type" description: "Sync status of the tenant with the Google EMM API"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Sync status of the tenant with the Google EMM API
|managementServiceError|3|Not yet documented| |unknownError|4|Not yet documented| |none|5|Not yet documented|-----
v1.0 Intune Androidforwork Androidmanagedstoreaccountappsyncstatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-androidforwork-androidmanagedstoreaccountappsyncstatus.md
Title: "androidManagedStoreAccountAppSyncStatus enum type" description: "Sync status of the tenant with the Google EMM API"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Sync status of the tenant with the Google EMM API
|managementServiceError|3|Not yet documented| |unknownError|4|Not yet documented| |none|5|Not yet documented|-----
v1.0 Intune Androidforwork Androidmanagedstoreaccountbindstatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-androidforwork-androidmanagedstoreaccountbindstatus.md
Title: "androidManagedStoreAccountBindStatus enum type" description: "Bind status of the tenant with the Google EMM API"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Bind status of the tenant with the Google EMM API
|bound|1|Not yet documented| |boundAndValidated|2|Not yet documented| |unbinding|3|Not yet documented|-----
v1.0 Intune Androidforwork Androidmanagedstoreaccountenrollmenttarget https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-androidforwork-androidmanagedstoreaccountenrollmenttarget.md
Title: "androidManagedStoreAccountEnrollmentTarget enum type" description: "Android for Work device management targeting type for the account"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Android for Work device management targeting type for the account
|all|1|Not yet documented| |targeted|2|Not yet documented| |targetedAsEnrollmentRestrictions|3|Not yet documented|-----
v1.0 Intune Androidforwork Androidmanagedstoreaccountenterprisesettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-androidforwork-androidmanagedstoreaccountenterprisesettings.md
Title: "androidManagedStoreAccountEnterpriseSettings resource type" description: "Enterprise settings for an Android managed store account."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Androidforwork Androidmanagedstoreappconfigurationschema https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-androidforwork-androidmanagedstoreappconfigurationschema.md
Title: "androidManagedStoreAppConfigurationSchema resource type" description: "Schema describing an Android application's custom configurations."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Androidforwork Androidmanagedstoreappconfigurationschemaitem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-androidforwork-androidmanagedstoreappconfigurationschemaitem.md
Title: "androidManagedStoreAppConfigurationSchemaItem resource type" description: "Single configuration item inside an Android application's custom configuration schema."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Single configuration item inside an Android application's custom configuration s
|defaultStringValue|String|Default value for string type items, if specified by the app developer| |defaultStringArrayValue|String collection|Default value for string array type items, if specified by the app developer| |dataType|[androidManagedStoreAppConfigurationSchemaItemDataType](../resources/intune-androidforwork-androidmanagedstoreappconfigurationschemaitemdatatype.md)|The type of value this item describes. Possible values are: `bool`, `integer`, `string`, `choice`, `multiselect`, `bundle`, `bundleArray`, `hidden`.|
-|selections|[keyValuePair](../resources/intune-shared-keyvaluepair.md) collection|List of human readable name/value pairs for the valid values that can be set for this item (Choice and Multiselect items only)|
+|selections|[keyValuePair](../resources/intune-androidforwork-keyvaluepair.md) collection|List of human readable name/value pairs for the valid values that can be set for this item (Choice and Multiselect items only)|
## Relationships None
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Androidforwork Androidmanagedstoreappconfigurationschemaitemdatatype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-androidforwork-androidmanagedstoreappconfigurationschemaitemdatatype.md
Title: "androidManagedStoreAppConfigurationSchemaItemDataType enum type" description: "Data type for a configuration item inside an Android application's custom configuration schema"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Data type for a configuration item inside an Android application's custom config
|bundle|5|Not yet documented| |bundleArray|6|Not yet documented| |hidden|7|Not yet documented|-----
v1.0 Intune Androidforwork Aospwifisecuritytype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-androidforwork-aospwifisecuritytype.md
Title: "aospWifiSecurityType enum type" description: "This enum represents Wi-Fi Security Types for Android Device Owner AOSP Scenarios."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
This enum represents Wi-Fi Security Types for Android Device Owner AOSP Scenario
|none|0|No security type.| |wpa|1|WPA-Pre-shared-key| |wep|2|WEP-Pre-shared-key|-----
v1.0 Intune Androidforwork Keyvaluepair https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-androidforwork-keyvaluepair.md
Title: "keyValuePair resource type" description: "Key value pair for storing custom settings"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"value": "String" } ```----
v1.0 Intune Androidfotaservice Androidfotadeploymentassignment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-androidfotaservice-androidfotadeploymentassignment.md
Title: "androidFotaDeploymentAssignment resource type" description: "Describes deployment security group to assign a deployment to. The backend will expand the security Group ID to extract device serial numbers prior sending a create deployment request to Zebra."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Androidfotaservice Androidfotadeploymentassignmenttarget https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-androidfotaservice-androidfotadeploymentassignmenttarget.md
Title: "androidFotaDeploymentAssignmentTarget resource type" description: "The AAD Group we are deploying firmware updates to"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"groupId": "String" } ```-----
v1.0 Intune Androidfotaservice Devicemanagementreports https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-androidfotaservice-devicemanagementreports.md
Title: "deviceManagementReports resource type" description: "Device management reports entity"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"@odata.type": "#microsoft.graph.deviceManagementReports" } ```-----
v1.0 Intune Androidfotaservice Zebrafotaartifact https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-androidfotaservice-zebrafotaartifact.md
Title: "zebraFotaArtifact resource type" description: "Describes a single artifact for a specific device model."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"description": "String" } ```-----
v1.0 Intune Androidfotaservice Zebrafotaconnector https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-androidfotaservice-zebrafotaconnector.md
Title: "zebraFotaConnector resource type" description: "The Zebra FOTA connector entity that represents the tenant's authorization status for Intune to call Zebra Update Services."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"fotaAppsApproved": true } ```-----
v1.0 Intune Androidfotaservice Zebrafotaconnectorstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-androidfotaservice-zebrafotaconnectorstate.md
Title: "zebraFotaConnectorState enum type" description: "Represents various states for Zebra FOTA connector."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Represents various states for Zebra FOTA connector.
|connected|1|Connected state indicates that Intune is linked to Zebra Update Services for the current tenant.| |disconnected|2|Disconnected state indicates that the account was connected in the past and later disconnected.| |unknownFutureValue|99|Unknown future enum value.|-----
v1.0 Intune Androidfotaservice Zebrafotadeployment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-androidfotaservice-zebrafotadeployment.md
Title: "zebraFotaDeployment resource type" description: "The Zebra FOTA deployment entity that describes settings, deployment device groups required to create a FOTA deployment, and deployment status."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Androidfotaservice Zebrafotadeploymentsettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-androidfotaservice-zebrafotadeploymentsettings.md
Title: "zebraFotaDeploymentSettings resource type" description: "The Zebra FOTA deployment complex type that describes the settings required to create a FOTA deployment."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"batteryRuleRequireCharger": true } ```-----
v1.0 Intune Androidfotaservice Zebrafotadeploymentstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-androidfotaservice-zebrafotadeploymentstate.md
Title: "zebraFotaDeploymentState enum type" description: "Represents the state of Zebra FOTA deployment."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Represents the state of Zebra FOTA deployment.
|pendingCancel|5|Admin has requested to cancel a deployment but Zebra has not confirmed cancellation.| |canceled|6|Deployment has been successfully canceled by Zebra.| |unknownFutureValue|99|Unknown future enum value.|-----
v1.0 Intune Androidfotaservice Zebrafotadeploymentstatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-androidfotaservice-zebrafotadeploymentstatus.md
Title: "zebraFotaDeploymentStatus resource type" description: "Describes the status for a single FOTA deployment."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"lastUpdatedDateTime": "String (timestamp)" } ```-----
v1.0 Intune Androidfotaservice Zebrafotanetworktype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-androidfotaservice-zebrafotanetworktype.md
Title: "zebraFotaNetworkType enum type" description: "Represents various network types for Zebra FOTA deployment."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Represents various network types for Zebra FOTA deployment.
|cellular|2|The device will install the update only when connected a Cellular network.| |wifiAndCellular|3|The device will install the update when connected both WiFi and Cellular.| |unknownFutureValue|99|Unknown future enum value.|-----
v1.0 Intune Androidfotaservice Zebrafotaschedulemode https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-androidfotaservice-zebrafotaschedulemode.md
Title: "zebraFotaScheduleMode enum type" description: "Represents various schedule modes for Zebra FOTA deployment."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Represents various schedule modes for Zebra FOTA deployment.
|installNow|0|Instructs the device to install the update as soon as it is received.| |scheduled|1|Schedule an update to be installed at a specified date and time.| |unknownFutureValue|99|Unknown future enum value.|-----
v1.0 Intune Androidfotaservice Zebrafotaupdatetype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-androidfotaservice-zebrafotaupdatetype.md
Title: "zebraFotaUpdateType enum type" description: "Represents various update types for Zebra FOTA deployment."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Represents various update types for Zebra FOTA deployment.
|latest|1|The latest released update becomes the target OS. Latest may update the device to a new Android version.| |auto|2|The device always looks for the latest package available in the repo and tries to update whenever a new package is available. This continues until the admin cancels the auto update.| |unknownFutureValue|99|Unknown future enum value.|-----
v1.0 Intune App Conceptual https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-app-conceptual.md
Title: "How to protect your company app data with Microsoft Intune - Microsoft Graph API" description: "Lists Microsoft Graph API for Intune endpoints (REST) that manage apps and their policies for a tenant organization."-+ ms.localizationpriority: medium ms.prod: "intune"
v1.0 Intune Apps Androidforworkapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-androidforworkapp.md
Title: "androidForWorkApp resource type" description: "Contains properties and inherited properties for Android for Work (AFW) Apps."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"appStoreUrl": "String" } ```-----
v1.0 Intune Apps Androidforworkmobileappconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-androidforworkmobileappconfiguration.md
Title: "androidForWorkMobileAppConfiguration resource type" description: "Contains properties, inherited properties and actions for AFW mobile app configurations."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"connectedAppsEnabled": true } ```-----
v1.0 Intune Apps Androidlobapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-androidlobapp.md
Title: "androidLobApp resource type" description: "Contains properties and inherited properties for Android Line Of Business apps."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"identityVersion": "String" } ```-----
v1.0 Intune Apps Androidmanagedstoreapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-androidmanagedstoreapp.md
Title: "androidManagedStoreApp resource type" description: "Contains properties and inherited properties for Android Managed Store Apps."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"supportsOemConfig": true } ```-----
v1.0 Intune Apps Androidmanagedstoreappconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-androidmanagedstoreappconfiguration.md
Title: "androidManagedStoreAppConfiguration resource type" description: "Contains properties, inherited properties and actions for Android Enterprise mobile app configurations."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"connectedAppsEnabled": true } ```-----
v1.0 Intune Apps Androidmanagedstoreapptrack https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-androidmanagedstoreapptrack.md
Title: "androidManagedStoreAppTrack resource type" description: "Contains track information for Android Managed Store apps."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"trackAlias": "String" } ```-----
v1.0 Intune Apps Androidmanagedstorewebapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-androidmanagedstorewebapp.md
Title: "androidManagedStoreWebApp resource type" description: "Contains properties and inherited properties for web apps configured to be distributed via the managed Android app store."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"supportsOemConfig": true } ```-----
v1.0 Intune Apps Androidminimumoperatingsystem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-androidminimumoperatingsystem.md
Title: "androidMinimumOperatingSystem resource type" description: "Contains properties for the minimum operating system required for an Android mobile app."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Contains properties for the minimum operating system required for an Android mob
## Properties |Property|Type|Description| |:|:|:|
-|v4_0|Boolean|Version 4.0 or later.|
-|v4_0_3|Boolean|Version 4.0.3 or later.|
-|v4_1|Boolean|Version 4.1 or later.|
-|v4_2|Boolean|Version 4.2 or later.|
-|v4_3|Boolean|Version 4.3 or later.|
-|v4_4|Boolean|Version 4.4 or later.|
-|v5_0|Boolean|Version 5.0 or later.|
-|v5_1|Boolean|Version 5.1 or later.|
-|v6_0|Boolean|Version 6.0 or later.|
-|v7_0|Boolean|Version 7.0 or later.|
-|v7_1|Boolean|Version 7.1 or later.|
-|v8_0|Boolean|Version 8.0 or later.|
-|v8_1|Boolean|Version 8.1 or later.|
-|v9_0|Boolean|Version 9.0 or later.|
-|v10_0|Boolean|Version 10.0 or later.|
-|v11_0|Boolean|Version 11.0 or later.|
+|v4_0|Boolean|When TRUE, only Version 4.0 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.|
+|v4_0_3|Boolean|When TRUE, only Version 4.0.3 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.|
+|v4_1|Boolean|When TRUE, only Version 4.1 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.|
+|v4_2|Boolean|When TRUE, only Version 4.2 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.|
+|v4_3|Boolean|When TRUE, only Version 4.3 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.|
+|v4_4|Boolean|When TRUE, only Version 4.4 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.|
+|v5_0|Boolean|When TRUE, only Version 5.0 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.|
+|v5_1|Boolean|When TRUE, only Version 5.1 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.|
+|v6_0|Boolean|When TRUE, only Version 6.0 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.|
+|v7_0|Boolean|When TRUE, only Version 7.0 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.|
+|v7_1|Boolean|When TRUE, only Version 7.1 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.|
+|v8_0|Boolean|When TRUE, only Version 8.0 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.|
+|v8_1|Boolean|When TRUE, only Version 8.1 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.|
+|v9_0|Boolean|When TRUE, only Version 9.0 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.|
+|v10_0|Boolean|When TRUE, only Version 10.0 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.|
+|v11_0|Boolean|When TRUE, only Version 11.0 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.|
## Relationships None
Here is a JSON representation of the resource.
"v11_0": true } ```-----
v1.0 Intune Apps Androidpermissionaction https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-androidpermissionaction.md
Title: "androidPermissionAction resource type" description: "Mapping between an Android app permission and the action Android should take when that permission is requested."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"action": "String" } ```-----
v1.0 Intune Apps Androidpermissionactiontype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-androidpermissionactiontype.md
Title: "androidPermissionActionType enum type" description: "Android action taken when an app requests a dangerous permission."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Android action taken when an app requests a dangerous permission.
|prompt|0|Not yet documented| |autoGrant|1|Not yet documented| |autoDeny|2|Not yet documented|-----
v1.0 Intune Apps Androidprofileapplicability https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-androidprofileapplicability.md
Title: "androidProfileApplicability enum type" description: "Android profile applicability"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Android profile applicability
|default|0|Not yet documented| |androidWorkProfile|1|Not yet documented| |androidDeviceOwner|2|Not yet documented|-----
v1.0 Intune Apps Androidstoreapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-androidstoreapp.md
Title: "androidStoreApp resource type" description: "Contains properties and inherited properties for Android store apps."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Apps Appconfigurationsettingitem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-appconfigurationsettingitem.md
Title: "appConfigurationSettingItem resource type" description: "Contains properties for App configuration setting item."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"appConfigKeyValue": "String" } ```-----
v1.0 Intune Apps Certificatestatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-certificatestatus.md
Title: "certificateStatus enum type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Not yet documented
|:|:|:| |notProvisioned|0|Not yet documented| |provisioned|1|Not yet documented|-----
v1.0 Intune Apps Enterprisecodesigningcertificate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-enterprisecodesigningcertificate.md
Title: "enterpriseCodeSigningCertificate resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"uploadDateTime": "String (timestamp)" } ```-----
v1.0 Intune Apps Excludedapps https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-excludedapps.md
Title: "excludedApps resource type" description: "Contains properties for Excluded Office365 Apps."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"word": true } ```-----
v1.0 Intune Apps Fileencryptioninfo https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-fileencryptioninfo.md
Title: "fileEncryptionInfo resource type" description: "Contains properties for file encryption information for the content version of a line of business app."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Contains properties for file encryption information for the content version of a
|Property|Type|Description| |:|:|:| |encryptionKey|Binary|The key used to encrypt the file content.|
-|initializationVector|Binary|The initialization vector used for the encryption algorithm.|
-|mac|Binary|The hash of the encrypted file content + IV (content hash).|
-|macKey|Binary|The key used to get mac.|
-|profileIdentifier|String|The the profile identifier.|
-|fileDigest|Binary|The file digest prior to encryption.|
-|fileDigestAlgorithm|String|The file digest algorithm.|
+|initializationVector|Binary|The initialization vector (IV) used for the encryption algorithm. Must be 16 bytes.|
+|mac|Binary|The hash of the concatenation of the IV and encrypted file content. Must be 32 bytes.|
+|macKey|Binary|The key used to compute the message authentication code of the concatenation of the IV and encrypted file content. Must be 32 bytes.|
+|profileIdentifier|String|The profile identifier. Maps to the strategy used to encrypt the file. Currently, only ProfileVersion1 is supported.|
+|fileDigest|Binary|The file digest prior to encryption. ProfileVersion1 requires a non-null FileDigest.|
+|fileDigestAlgorithm|String|The file digest algorithm. ProfileVersion1 currently only supports SHA256 for the FileDigestAlgorithm.|
## Relationships None
Here is a JSON representation of the resource.
"fileDigestAlgorithm": "String" } ```-----
v1.0 Intune Apps Iosdevicetype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-iosdevicetype.md
Title: "iosDeviceType resource type" description: "Contains properties of the possible iOS device types the mobile app can run on."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"iPhoneAndIPod": true } ```-----
v1.0 Intune Apps Iosipadoswebclip https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-iosipadoswebclip.md
Title: "iosiPadOSWebClip resource type" description: "Contains properties and inherited properties for iOS web apps."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"useManagedBrowser": true } ```-----
v1.0 Intune Apps Ioslobapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-ioslobapp.md
Title: "iosLobApp resource type" description: "Contains properties and inherited properties for iOS Line Of Business apps."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Inherits from [mobileLobApp](../resources/intune-apps-mobilelobapp.md)
|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)|
## Relationships |Relationship|Type|Description|
Here is a JSON representation of the resource.
}, "expirationDateTime": "String (timestamp)", "versionNumber": "String",
- "buildNumber": "String",
- "identityVersion": "String"
+ "buildNumber": "String"
} ```-----
v1.0 Intune Apps Ioslobappprovisioningconfigurationassignment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-ioslobappprovisioningconfigurationassignment.md
Title: "iosLobAppProvisioningConfigurationAssignment resource type" description: "A class containing the properties used for Group Assignment of an iOS LOB App Provisioning and Configuration."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Apps Iosminimumoperatingsystem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-iosminimumoperatingsystem.md
Title: "iosMinimumOperatingSystem resource type" description: "Contains properties of the minimum operating system required for an iOS mobile app."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Contains properties of the minimum operating system required for an iOS mobile a
## Properties |Property|Type|Description| |:|:|:|
-|v8_0|Boolean|Version 8.0 or later.|
-|v9_0|Boolean|Version 9.0 or later.|
-|v10_0|Boolean|Version 10.0 or later.|
-|v11_0|Boolean|Version 11.0 or later.|
-|v12_0|Boolean|Version 12.0 or later.|
-|v13_0|Boolean|Version 13.0 or later.|
-|v14_0|Boolean|Version 14.0 or later.|
-|v15_0|Boolean|Version 15.0 or later.|
+|v8_0|Boolean|When TRUE, only Version 8.0 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.|
+|v9_0|Boolean|When TRUE, only Version 9.0 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.|
+|v10_0|Boolean|When TRUE, only Version 10.0 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.|
+|v11_0|Boolean|When TRUE, only Version 11.0 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.|
+|v12_0|Boolean|When TRUE, only Version 12.0 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.|
+|v13_0|Boolean|When TRUE, only Version 13.0 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.|
+|v14_0|Boolean|When TRUE, only Version 14.0 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.|
+|v15_0|Boolean|When TRUE, only Version 15.0 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.|
## Relationships None
Here is a JSON representation of the resource.
"v15_0": true } ```-----
v1.0 Intune Apps Iosmobileappconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-iosmobileappconfiguration.md
Title: "iosMobileAppConfiguration resource type" description: "Contains properties, inherited properties and actions for iOS mobile app configurations."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Apps Iosstoreapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-iosstoreapp.md
Title: "iosStoreApp resource type" description: "Contains properties and inherited properties for iOS store apps."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Apps Iosvppapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-iosvppapp.md
Title: "iosVppApp resource type" description: "Contains properties and inherited properties for iOS Volume-Purchased Program (VPP) Apps."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Apps Iosvppappassigneddevicelicense https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-iosvppappassigneddevicelicense.md
Title: "iosVppAppAssignedDeviceLicense resource type" description: "iOS Volume Purchase Program device license assignment. This class does not support Create, Delete, or Update."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"deviceName": "String" } ```-----
v1.0 Intune Apps Iosvppappassignedlicense https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-iosvppappassignedlicense.md
Title: "iosVppAppAssignedLicense resource type" description: "iOS Volume Purchase Program license assignment. This class does not support Create, Delete, or Update."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"userPrincipalName": "String" } ```-----
v1.0 Intune Apps Iosvppappassigneduserlicense https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-iosvppappassigneduserlicense.md
Title: "iosVppAppAssignedUserLicense resource type" description: "iOS Volume Purchase Program user license assignment. This class does not support Create, Delete, or Update."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"userPrincipalName": "String" } ```-----
v1.0 Intune Apps Iosvppapprevokelicensesactionresult https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-iosvppapprevokelicensesactionresult.md
Title: "iosVppAppRevokeLicensesActionResult resource type" description: "Defines results for actions on iOS Vpp Apps, contains inherited properties for ActionResult."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"lastUpdatedDateTime": "String (timestamp)" } ```-----
v1.0 Intune Apps Macosdmgapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-macosdmgapp.md
Title: "macOSDmgApp resource type" description: "Contains properties and inherited properties for the MacOS DMG App."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Apps Macosincludedapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-macosincludedapp.md
Title: "macOSIncludedApp resource type" description: "Contains properties of an included .app in a MacOS app."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"bundleVersion": "String" } ```-----
v1.0 Intune Apps Macoslobapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-macoslobapp.md
Title: "macOSLobApp resource type" description: "Contains properties and inherited properties for the macOS LOB App."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"installAsManaged": true } ```-----
v1.0 Intune Apps Macoslobappassignmentsettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-macoslobappassignmentsettings.md
Title: "macOsLobAppAssignmentSettings resource type" description: "Contains properties used to assign a macOS LOB app to a group."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"uninstallOnDeviceRemoval": true } ```-----
v1.0 Intune Apps Macoslobchildapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-macoslobchildapp.md
Title: "macOSLobChildApp resource type" description: "Contains properties of a macOS .app in the package"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"versionNumber": "String" } ```-----
v1.0 Intune Apps Macosmdatpapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-macosmdatpapp.md
Title: "macOSMdatpApp resource type" description: "Contains properties and inherited properties for the macOS Microsoft Defender Advanced Threat Protection (MDATP) App. This will be deprecated for MacOSMicrosoftDefenderApp."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"supersededAppCount": 1024 } ```-----
v1.0 Intune Apps Macosmicrosoftdefenderapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-macosmicrosoftdefenderapp.md
Title: "macOSMicrosoftDefenderApp resource type" description: "Contains properties and inherited properties for the macOS Microsoft Defender App."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"supersededAppCount": 1024 } ```-----
v1.0 Intune Apps Macosmicrosoftedgeapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-macosmicrosoftedgeapp.md
Title: "macOSMicrosoftEdgeApp resource type" description: "Contains properties and inherited properties for the macOS Microsoft Edge App."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"channel": "String" } ```-----
v1.0 Intune Apps Macosminimumoperatingsystem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-macosminimumoperatingsystem.md
Title: "macOSMinimumOperatingSystem resource type" description: "The minimum operating system required for a macOS app."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"v13_0": true } ```-----
v1.0 Intune Apps Macosofficesuiteapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-macosofficesuiteapp.md
Title: "macOSOfficeSuiteApp resource type" description: "Contains properties and inherited properties for the MacOS Office Suite App."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"supersededAppCount": 1024 } ```-----
v1.0 Intune Apps Macosvppapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-macosvppapp.md
Title: "macOsVppApp resource type" description: "Contains properties and inherited properties for MacOS Volume-Purchased Program (VPP) Apps."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Apps Macosvppappassignedlicense https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-macosvppappassignedlicense.md
Title: "macOsVppAppAssignedLicense resource type" description: "MacOS Volume Purchase Program license assignment. This class does not support Create, Delete, or Update."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"userPrincipalName": "String" } ```-----
v1.0 Intune Apps Macosvppapprevokelicensesactionresult https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-macosvppapprevokelicensesactionresult.md
Title: "macOsVppAppRevokeLicensesActionResult resource type" description: "Defines results for actions on MacOS Vpp Apps, contains inherited properties for ActionResult."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"lastUpdatedDateTime": "String (timestamp)" } ```-----
v1.0 Intune Apps Managedandroidlobapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-managedandroidlobapp.md
Title: "managedAndroidLobApp resource type" description: "Contains properties and inherited properties for Managed Android Line Of Business apps."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"identityVersion": "String" } ```-----
v1.0 Intune Apps Managedandroidstoreapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-managedandroidstoreapp.md
Title: "managedAndroidStoreApp resource type" description: "Contains properties and inherited properties for Android store apps that you can manage with an Intune app protection policy."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Apps Managedapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-managedapp.md
Title: "managedApp resource type" description: "Abstract class that contains properties and inherited properties for apps that you can manage with an Intune app protection policy."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"version": "String" } ```-----
v1.0 Intune Apps Managedappavailability https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-managedappavailability.md
Title: "managedAppAvailability enum type" description: "A managed (MAM) application's availability."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
A managed (MAM) application's availability.
|:|:|:| |global|0|A globally available app to all tenants.| |lineOfBusiness|1|A line of business apps private to an organization.|-----
v1.0 Intune Apps Manageddevicemobileappconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-manageddevicemobileappconfiguration.md
Title: "managedDeviceMobileAppConfiguration resource type" description: "An abstract class for Mobile app configuration for enrolled devices."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"version": 1024 } ```-----
v1.0 Intune Apps Manageddevicemobileappconfigurationassignment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-manageddevicemobileappconfigurationassignment.md
Title: "managedDeviceMobileAppConfigurationAssignment resource type" description: "Contains the properties used to assign an MDM app configuration to a group."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Apps Manageddevicemobileappconfigurationdevicestatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-manageddevicemobileappconfigurationdevicestatus.md
Title: "managedDeviceMobileAppConfigurationDeviceStatus resource type" description: "Contains properties, inherited properties and actions for an MDM mobile app configuration status for a device."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"userPrincipalName": "String" } ```-----
v1.0 Intune Apps Manageddevicemobileappconfigurationdevicesummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-manageddevicemobileappconfigurationdevicesummary.md
Title: "managedDeviceMobileAppConfigurationDeviceSummary resource type" description: "Contains properties, inherited properties and actions for an MDM mobile app configuration device status summary."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"configurationVersion": 1024 } ```-----
v1.0 Intune Apps Manageddevicemobileappconfigurationuserstatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-manageddevicemobileappconfigurationuserstatus.md
Title: "managedDeviceMobileAppConfigurationUserStatus resource type" description: "Contains properties, inherited properties and actions for an MDM mobile app configuration status for a user."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"userPrincipalName": "String" } ```-----
v1.0 Intune Apps Manageddevicemobileappconfigurationusersummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-manageddevicemobileappconfigurationusersummary.md
Title: "managedDeviceMobileAppConfigurationUserSummary resource type" description: "Contains properties, inherited properties and actions for an MDM mobile app configuration user status summary."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"configurationVersion": 1024 } ```-----
v1.0 Intune Apps Managedioslobapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-managedioslobapp.md
Title: "managedIOSLobApp resource type" description: "Contains properties and inherited properties for Managed iOS Line Of Business apps."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"identityVersion": "String" } ```-----
v1.0 Intune Apps Managediosstoreapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-managediosstoreapp.md
Title: "managedIOSStoreApp resource type" description: "Contains properties and inherited properties for an iOS store app that you can manage with an Intune app protection policy."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Apps Managedmobilelobapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-managedmobilelobapp.md
Title: "managedMobileLobApp resource type" description: "An abstract base class containing properties for all managed mobile line of business apps."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"size": 1024 } ```-----
v1.0 Intune Apps Mdmappconfigkeytype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-mdmappconfigkeytype.md
Title: "mdmAppConfigKeyType enum type" description: "App configuration key types."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
App configuration key types.
|realType|2|Not yet documented| |booleanType|3|Not yet documented| |tokenType|4|Not yet documented|-----
v1.0 Intune Apps Microsoftedgechannel https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-microsoftedgechannel.md
Title: "microsoftEdgeChannel enum type" description: "The enum to specify the channels for Microsoft Edge apps."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
The enum to specify the channels for Microsoft Edge apps.
|beta|1|The Beta Channel is intended for production deployment to a representative sample set of users. New features ship about every 4 weeks. Security and quality updates ship as needed.| |stable|2|The Stable Channel is intended for broad deployment within organizations, and it's the channel that most users should be on. New features ship about every 4 weeks. Security and quality updates ship as needed.| |unknownFutureValue|3|Evolvable enumeration sentinel value. Do not use.|-----
v1.0 Intune Apps Microsoftstoreforbusinessapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-microsoftstoreforbusinessapp.md
Title: "microsoftStoreForBusinessApp resource type" description: "Microsoft Store for Business Apps. This class does not support Create, Delete, or Update."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Apps Microsoftstoreforbusinesscontainedapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-microsoftstoreforbusinesscontainedapp.md
Title: "microsoftStoreForBusinessContainedApp resource type" description: "A class that represents a contained app of a MicrosoftStoreForBusinessApp."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"appUserModelId": "String" } ```-----
v1.0 Intune Apps Microsoftstoreforbusinesslicensetype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-microsoftstoreforbusinesslicensetype.md
Title: "microsoftStoreForBusinessLicenseType enum type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Not yet documented
|:|:|:| |offline|0|Not yet documented| |online|1|Not yet documented|-----
v1.0 Intune Apps Mobileappassignment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-mobileappassignment.md
Title: "mobileAppAssignment resource type" description: "A class containing the properties used for Group Assignment of a Mobile App."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"sourceId": "String" } ```-----
v1.0 Intune Apps Mobileappcategory https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-mobileappcategory.md
Title: "mobileAppCategory resource type" description: "Contains properties for a single Intune app category."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"lastModifiedDateTime": "String (timestamp)" } ```-----
v1.0 Intune Apps Mobileappcontent https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-mobileappcontent.md
Title: "mobileAppContent resource type" description: "Contains content properties for a specific app version. Each mobileAppContent can have multiple mobileAppContentFile."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"id": "String (identifier)" } ```-----
v1.0 Intune Apps Mobileappcontentfile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-mobileappcontentfile.md
Title: "mobileAppContentFile resource type" description: "Contains properties for a single installer file that is associated with a given mobileAppContent version."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"isDependency": true } ```-----
v1.0 Intune Apps Mobileappcontentfileuploadstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-mobileappcontentfileuploadstate.md
Title: "mobileAppContentFileUploadState enum type" description: "Contains properties for upload request states."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Contains properties for upload request states.
|commitFilePending|301|Not yet documented| |commitFileFailed|302|Not yet documented| |commitFileTimedOut|303|Not yet documented|-----
v1.0 Intune Apps Mobileappdependency https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-mobileappdependency.md
Title: "mobileAppDependency resource type" description: "Describes a dependency type between two mobile apps."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"dependsOnAppCount": 1024 } ```-----
v1.0 Intune Apps Mobileappdependencytype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-mobileappdependencytype.md
Title: "mobileAppDependencyType enum type" description: "Indicates the dependency type associated with a relationship between two mobile apps."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Indicates the dependency type associated with a relationship between two mobile
|:|:|:| |detect|0|Indicates that the child app should be detected before installing the parent app.| |autoInstall|1|Indicates that the child app should be installed before installing the parent app.|-----
v1.0 Intune Apps Mobileappinstallstatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-mobileappinstallstatus.md
Title: "mobileAppInstallStatus resource type" description: "Contains properties for the installation state of a mobile app for a device."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"displayVersion": "String" } ```-----
v1.0 Intune Apps Mobileappinstallsummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-mobileappinstallsummary.md
Title: "mobileAppInstallSummary resource type" description: "Contains properties for the installation summary of a mobile app."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"pendingInstallUserCount": 1024 } ```-----
v1.0 Intune Apps Mobileappprovisioningconfiggroupassignment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-mobileappprovisioningconfiggroupassignment.md
Title: "mobileAppProvisioningConfigGroupAssignment resource type" description: "Contains the properties used to assign an App provisioning configuration to a group."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"id": "String (identifier)" } ```-----
v1.0 Intune Apps Mobileapppublishingstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-mobileapppublishingstate.md
Title: "mobileAppPublishingState enum type" description: "Indicates the publishing state of an app."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Indicates the publishing state of an app.
|notPublished|0|The app is not yet published.| |processing|1|The app is pending service-side processing.| |published|2|The app is published.|-----
v1.0 Intune Apps Mobileapprelationship https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-mobileapprelationship.md
Title: "mobileAppRelationship resource type" description: "Describes a relationship between two mobile apps."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"targetType": "String" } ```-----
v1.0 Intune Apps Mobileapprelationshipstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-mobileapprelationshipstate.md
Title: "mobileAppRelationshipState resource type" description: "Describes the installation status details of the child app in the context of UPN and device id."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"targetLastSyncDateTime": "String (timestamp)" } ```-----
v1.0 Intune Apps Mobileapprelationshiptype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-mobileapprelationshiptype.md
Title: "mobileAppRelationshipType enum type" description: "Indicates whether the target of a relationship is the parent or the child in the relationship."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Indicates whether the target of a relationship is the parent or the child in the
|:|:|:| |child|0|Indicates that the target of a relationship is the child in the relationship.| |parent|1|Indicates that the target of a relationship is the parent in the relationship.|-----
v1.0 Intune Apps Mobileappsupersedence https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-mobileappsupersedence.md
Title: "mobileAppSupersedence resource type" description: "Describes a supersedence relationship between two mobile apps."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"supersedingAppCount": 1024 } ```-----
v1.0 Intune Apps Mobileappsupersedencetype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-mobileappsupersedencetype.md
Title: "mobileAppSupersedenceType enum type" description: "Indicates the supersedence type associated with a relationship between two mobile apps."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Indicates the supersedence type associated with a relationship between two mobil
|:|:|:| |update|0|Indicates that the child app should be updated by the internal logic of the parent app.| |replace|1|Indicates that the child app should be uninstalled before installing the parent app.|-----
v1.0 Intune Apps Mobilecontainedapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-mobilecontainedapp.md
Title: "mobileContainedApp resource type" description: "An abstract class that represents a contained app in a mobileApp acting as a package."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"id": "String (identifier)" } ```-----
v1.0 Intune Apps Mobilelobapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-mobilelobapp.md
Title: "mobileLobApp resource type" description: "An abstract base class containing properties for all mobile line of business apps."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"size": 1024 } ```-----
v1.0 Intune Apps Officeproductid https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-officeproductid.md
Title: "officeProductId enum type" description: "The Enum to specify the Office365 ProductIds that represent the Office365 Suite SKUs."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
The Enum to specify the Office365 ProductIds that represent the Office365 Suite
|o365BusinessRetail|1|Not yet documented| |visioProRetail|2|Not yet documented| |projectProRetail|3|Not yet documented|-----
v1.0 Intune Apps Officesuiteapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-officesuiteapp.md
Title: "officeSuiteApp resource type" description: "Contains properties and inherited properties for the Office365 Suite App."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"officeConfigurationXml": "binary" } ```-----
v1.0 Intune Apps Officesuitedefaultfileformattype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-officesuitedefaultfileformattype.md
Title: "officeSuiteDefaultFileFormatType enum type" description: "Describes the OfficeSuiteApp file format types that can be selected."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Describes the OfficeSuiteApp file format types that can be selected.
|officeOpenXMLFormat|1|Office Open XML Format selected| |officeOpenDocumentFormat|2|Office Open Document Format selected| |unknownFutureValue|99|Placeholder for evolvable enum.|-----
v1.0 Intune Apps Officesuiteinstallprogressdisplaylevel https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-officesuiteinstallprogressdisplaylevel.md
Title: "officeSuiteInstallProgressDisplayLevel enum type" description: "The Enum to specify the level of display for the Installation Progress Setup UI on the Device."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
The Enum to specify the level of display for the Installation Progress Setup UI
|:|:|:| |none|0|Not yet documented| |full|1|Not yet documented|-----
v1.0 Intune Apps Officeupdatechannel https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-officeupdatechannel.md
Title: "officeUpdateChannel enum type" description: "The Enum to specify the Office365 Updates Channel."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
The Enum to specify the Office365 Updates Channel.
|firstReleaseCurrent|3|Not yet documented| |firstReleaseDeferred|4|Not yet documented| |monthlyEnterprise|5|Not yet documented|-----
v1.0 Intune Apps Resultantappstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-resultantappstate.md
Title: "resultantAppState enum type" description: "A list of possible states for application status on an individual device. When devices contact the Intune service and find targeted application enforcement intent, the status of the enforcement is recorded and becomes accessible in the Graph API. Since the application status is identified during device interaction with the Intune service, status records do not immediately appear upon application group assignment; it is created only after the assignment is evaluated in the service and devices start receiving the policy during check-ins."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
A list of possible states for application status on an individual device. When d
|pendingInstall|5|The installation of the application is in progress.| |unknown|99|The status of the application is unknown.| |notApplicable|-1|The application is not applicable.|-----
v1.0 Intune Apps Resultantappstatedetail https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-resultantappstatedetail.md
Title: "resultantAppStateDetail enum type" description: "Enum indicating additional details regarding why an application has a particular install state."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Enum indicating additional details regarding why an application has a particular
|minimumOsVersionNotMet|-1002|OS version on the target device is less than the configured minimum.| |minimumDiskSpaceNotMet|-1001|Available disk space on the target device is less than the configured minimum.| |processorArchitectureNotApplicable|-1000|Device architecture (e.g. x86/amd64) is not applicable for the application.|-----
v1.0 Intune Apps Symanteccodesigningcertificate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-symanteccodesigningcertificate.md
Title: "symantecCodeSigningCertificate resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"uploadDateTime": "String (timestamp)" } ```-----
v1.0 Intune Apps Userappinstallstatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-userappinstallstatus.md
Title: "userAppInstallStatus resource type" description: "Contains properties for the installation status for a user."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"notInstalledDeviceCount": 1024 } ```-----
v1.0 Intune Apps Vpplicensingtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-vpplicensingtype.md
Title: "vppLicensingType resource type" description: "Contains properties for iOS Volume-Purchased Program (Vpp) Licensing Type."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"supportsDeviceLicensing": true } ```-----
v1.0 Intune Apps Webapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-webapp.md
Title: "webApp resource type" description: "Contains properties and inherited properties for web apps."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"useManagedBrowser": true } ```-----
v1.0 Intune Apps Win32lobapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-win32lobapp.md
Title: "win32LobApp resource type" description: "Contains properties and inherited properties for Win32 apps."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"allowAvailableUninstall": true } ```-----
v1.0 Intune Apps Win32lobappdetection https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-win32lobappdetection.md
Title: "win32LobAppDetection resource type" description: "Base class to detect a Win32 App"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"@odata.type": "#microsoft.graph.win32LobAppDetection" } ```-----
v1.0 Intune Apps Win32lobappdetectionoperator https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-win32lobappdetectionoperator.md
Title: "win32LobAppDetectionOperator enum type" description: "Contains properties for detection operator."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Contains properties for detection operator.
|greaterThanOrEqual|5|Greater than or equal operator.| |lessThan|8|Less than operator.| |lessThanOrEqual|9|Less than or equal operator.|-----
v1.0 Intune Apps Win32lobappfilesystemdetection https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-win32lobappfilesystemdetection.md
Title: "win32LobAppFileSystemDetection resource type" description: "Contains file or folder path to detect a Win32 App"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"detectionValue": "String" } ```-----
v1.0 Intune Apps Win32lobappfilesystemdetectiontype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-win32lobappfilesystemdetectiontype.md
Title: "win32LobAppFileSystemDetectionType enum type" description: "Contains all supported file system detection type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Contains all supported file system detection type.
|version|4|Version value type.| |sizeInMB|5|Size detection type.| |doesNotExist|6|The specified file or folder does not exist.|-----
v1.0 Intune Apps Win32lobappfilesystemoperationtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-win32lobappfilesystemoperationtype.md
Title: "win32LobAppFileSystemOperationType enum type" description: "Contains all supported file system detection type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Contains all supported file system detection type.
|version|4|Version value type.| |sizeInMB|5|Size detection type.| |doesNotExist|6|The specified file or folder does not exist.|-----
v1.0 Intune Apps Win32lobappfilesystemrequirement https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-win32lobappfilesystemrequirement.md
Title: "win32LobAppFileSystemRequirement resource type" description: "Contains file or folder path to detect a Win32 App"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"detectionType": "String" } ```-----
v1.0 Intune Apps Win32lobappfilesystemrule https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-win32lobappfilesystemrule.md
Title: "win32LobAppFileSystemRule resource type" description: "A complex type to store file or folder rule data for a Win32 LOB app."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"comparisonValue": "String" } ```-----
v1.0 Intune Apps Win32lobappinstallexperience https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-win32lobappinstallexperience.md
Title: "win32LobAppInstallExperience resource type" description: "Contains installation experience properties for a Win32 App"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"deviceRestartBehavior": "String" } ```-----
v1.0 Intune Apps Win32lobappmsiinformation https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-win32lobappmsiinformation.md
Title: "win32LobAppMsiInformation resource type" description: "Contains MSI app properties for a Win32 App."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"publisher": "String" } ```-----
v1.0 Intune Apps Win32lobappmsipackagetype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-win32lobappmsipackagetype.md
Title: "win32LobAppMsiPackageType enum type" description: "Indicates the package type of an MSI Win32LobApp."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Indicates the package type of an MSI Win32LobApp.
|perMachine|0|Indicates a per-machine app package.| |perUser|1|Indicates a per-user app package.| |dualPurpose|2|Indicates a dual-purpose app package.|-----
v1.0 Intune Apps Win32lobapppowershellscriptdetection https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-win32lobapppowershellscriptdetection.md
Title: "win32LobAppPowerShellScriptDetection resource type" description: "Contains PowerShell script properties to detect a Win32 App"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"scriptContent": "String" } ```-----
v1.0 Intune Apps Win32lobapppowershellscriptdetectiontype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-win32lobapppowershellscriptdetectiontype.md
Title: "win32LobAppPowerShellScriptDetectionType enum type" description: "Contains all supported Powershell Script output detection type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Contains all supported Powershell Script output detection type.
|float|4|Output data type is float.| |version|5|Output data type is version.| |boolean|6|Output data type is boolean.|-----
v1.0 Intune Apps Win32lobapppowershellscriptrequirement https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-win32lobapppowershellscriptrequirement.md
Title: "win32LobAppPowerShellScriptRequirement resource type" description: "Contains PowerShell script properties to detect a Win32 App"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"detectionType": "String" } ```-----
v1.0 Intune Apps Win32lobapppowershellscriptrule https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-win32lobapppowershellscriptrule.md
Title: "win32LobAppPowerShellScriptRule resource type" description: "A complex type to store the PowerShell script rule data for a Win32 LOB app."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"comparisonValue": "String" } ```-----
v1.0 Intune Apps Win32lobapppowershellscriptruleoperationtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-win32lobapppowershellscriptruleoperationtype.md
Title: "win32LobAppPowerShellScriptRuleOperationType enum type" description: "Contains all supported Powershell Script output detection type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Contains all supported Powershell Script output detection type.
|float|4|Output data type is float.| |version|5|Output data type is version.| |boolean|6|Output data type is boolean.|-----
v1.0 Intune Apps Win32lobappproductcodedetection https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-win32lobappproductcodedetection.md
Title: "win32LobAppProductCodeDetection resource type" description: "Contains product code and version properties to detect a Win32 App"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"productVersion": "String" } ```-----
v1.0 Intune Apps Win32lobappproductcoderule https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-win32lobappproductcoderule.md
Title: "win32LobAppProductCodeRule resource type" description: "A complex type to store the product code and version rule data for a Win32 LOB app. This rule is not supported as a requirement rule."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"productVersion": "String" } ```-----
v1.0 Intune Apps Win32lobappregistrydetection https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-win32lobappregistrydetection.md
Title: "win32LobAppRegistryDetection resource type" description: "Contains registry properties to detect a Win32 App"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"detectionValue": "String" } ```-----
v1.0 Intune Apps Win32lobappregistrydetectiontype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-win32lobappregistrydetectiontype.md
Title: "win32LobAppRegistryDetectionType enum type" description: "Contains all supported registry data detection type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Contains all supported registry data detection type.
|string|3|String value type.| |integer|4|Integer value type.| |version|5|Version value type.|-----
v1.0 Intune Apps Win32lobappregistryrequirement https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-win32lobappregistryrequirement.md
Title: "win32LobAppRegistryRequirement resource type" description: "Contains registry properties to detect a Win32 App"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"detectionType": "String" } ```-----
v1.0 Intune Apps Win32lobappregistryrule https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-win32lobappregistryrule.md
Title: "win32LobAppRegistryRule resource type" description: "A complex type to store registry rule data for a Win32 LOB app."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"comparisonValue": "String" } ```-----
v1.0 Intune Apps Win32lobappregistryruleoperationtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-win32lobappregistryruleoperationtype.md
Title: "win32LobAppRegistryRuleOperationType enum type" description: "Contains all supported registry data detection type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Contains all supported registry data detection type.
|string|3|String value type.| |integer|4|Integer value type.| |version|5|Version value type.|-----
v1.0 Intune Apps Win32lobapprequirement https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-win32lobapprequirement.md
Title: "win32LobAppRequirement resource type" description: "Base class to detect a Win32 App"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"detectionValue": "String" } ```-----
v1.0 Intune Apps Win32lobapprestartbehavior https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-win32lobapprestartbehavior.md
Title: "win32LobAppRestartBehavior enum type" description: "Indicates the type of restart action."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Indicates the type of restart action.
|allow|1|Intune will not take any specific action on reboot codes resulting from app installations. Intune will not attempt to suppress restarts for MSI apps.| |suppress|2|Intune will attempt to suppress restarts for MSI apps.| |force|3|Intune will force the device to restart immediately after the app installation operation.|-----
v1.0 Intune Apps Win32lobappreturncode https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-win32lobappreturncode.md
Title: "win32LobAppReturnCode resource type" description: "Contains return code properties for a Win32 App"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"type": "String" } ```-----
v1.0 Intune Apps Win32lobappreturncodetype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-win32lobappreturncodetype.md
Title: "win32LobAppReturnCodeType enum type" description: "Indicates the type of return code."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Indicates the type of return code.
|softReboot|2|Soft-reboot is required.| |hardReboot|3|Hard-reboot is required.| |retry|4|Retry.|-----
v1.0 Intune Apps Win32lobapprule https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-win32lobapprule.md
Title: "win32LobAppRule resource type" description: "A base complex type to store the detection or requirement rule data for a Win32 LOB app."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"ruleType": "String" } ```-----
v1.0 Intune Apps Win32lobappruleoperator https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-win32lobappruleoperator.md
Title: "win32LobAppRuleOperator enum type" description: "Contains properties for detection operator."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Contains properties for detection operator.
|greaterThanOrEqual|5|Greater than or equal operator.| |lessThan|8|Less than operator.| |lessThanOrEqual|9|Less than or equal operator.|-----
v1.0 Intune Apps Win32lobappruletype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-win32lobappruletype.md
Title: "win32LobAppRuleType enum type" description: "Contains rule types for Win32 LOB apps."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Contains rule types for Win32 LOB apps.
|:|:|:| |detection|0|Detection rule.| |requirement|1|Requirement rule.|-----
v1.0 Intune Apps Windowsappx https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-windowsappx.md
Title: "windowsAppX resource type" description: "Contains properties and inherited properties for Windows AppX Line Of Business apps."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"identityVersion": "String" } ```-----
v1.0 Intune Apps Windowsarchitecture https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-windowsarchitecture.md
Title: "windowsArchitecture enum type" description: "Contains properties for Windows architecture."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Contains properties for Windows architecture.
|arm|4|Whether or not the Arm Windows architecture type is supported.| |neutral|8|Whether or not the Neutral Windows architecture type is supported.| |arm64|16|Whether or not the Arm64 Windows architecture type is supported.|-----
v1.0 Intune Apps Windowsdevicetype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-windowsdevicetype.md
Title: "windowsDeviceType enum type" description: "Contains properties for Windows device type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Contains properties for Windows device type.
|mobile|2|Whether or not the Mobile Windows device type is supported.| |holographic|4|Whether or not the Holographic Windows device type is supported.| |team|8|Whether or not the Team Windows device type is supported.|-----
v1.0 Intune Apps Windowsmicrosoftedgeapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-windowsmicrosoftedgeapp.md
Title: "windowsMicrosoftEdgeApp resource type" description: "Contains properties and inherited properties for the Microsoft Edge app on Windows."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Inherits from [mobileApp](../resources/intune-shared-mobileapp.md)
|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.| ## Relationships
Here is a JSON representation of the resource.
"displayLanguageLocale": "String" } ```-----
v1.0 Intune Apps Windowsminimumoperatingsystem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-windowsminimumoperatingsystem.md
Title: "windowsMinimumOperatingSystem resource type" description: "The minimum operating system required for a Windows mobile app."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"v10_21H1": true } ```-----
v1.0 Intune Apps Windowsmobilemsi https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-windowsmobilemsi.md
Title: "windowsMobileMSI resource type" description: "Contains properties and inherited properties for Windows Mobile MSI Line Of Business apps."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"useDeviceContext": true } ```-----
v1.0 Intune Apps Windowspackageinformation https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-windowspackageinformation.md
Title: "windowsPackageInformation resource type" description: "Contains properties for the package information for a Windows line of business app."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Apps Windowsphone81appx https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-windowsphone81appx.md
Title: "windowsPhone81AppX resource type" description: "Contains properties and inherited properties for Windows Phone 8.1 AppX Line Of Business apps."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"identityVersion": "String" } ```-----
v1.0 Intune Apps Windowsphone81appxbundle https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-windowsphone81appxbundle.md
Title: "windowsPhone81AppXBundle resource type" description: "Contains properties and inherited properties for Windows Phone 8.1 AppX Bundle Line Of Business apps."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Apps Windowsphone81storeapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-windowsphone81storeapp.md
Title: "windowsPhone81StoreApp resource type" description: "Contains properties and inherited properties for Windows Phone 8.1 Store apps."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"appStoreUrl": "String" } ```-----
v1.0 Intune Apps Windowsphonexap https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-windowsphonexap.md
Title: "windowsPhoneXAP resource type" description: "Contains properties and inherited properties for Windows Phone XAP Line Of Business apps."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"identityVersion": "String" } ```-----
v1.0 Intune Apps Windowsstoreapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-windowsstoreapp.md
Title: "windowsStoreApp resource type" description: "Contains properties and inherited properties for Windows Store apps."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"appStoreUrl": "String" } ```-----
v1.0 Intune Apps Windowsuniversalappx https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-windowsuniversalappx.md
Title: "windowsUniversalAppX resource type" description: "Contains properties and inherited properties for Windows Universal AppX Line Of Business apps."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"identityVersion": "String" } ```-----
v1.0 Intune Apps Windowsuniversalappxcontainedapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-windowsuniversalappxcontainedapp.md
Title: "windowsUniversalAppXContainedApp resource type" description: "A class that represents a contained app of a WindowsUniversalAppX app."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"appUserModelId": "String" } ```-----
v1.0 Intune Apps Windowswebapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-windowswebapp.md
Title: "windowsWebApp resource type" description: "Contains properties and inherited properties for Windows web apps."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"appUrl": "String" } ```-----
v1.0 Intune Apps Wingetapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-wingetapp.md
Title: "winGetApp resource type" description: "A MobileApp that is based on a referenced application in a WinGet repository."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Apps Wingetappassignmentsettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-wingetappassignmentsettings.md
Title: "winGetAppAssignmentSettings resource type" description: "Contains properties used to assign a WinGet app to a group."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Apps Wingetappinstallexperience https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-wingetappinstallexperience.md
Title: "winGetAppInstallExperience resource type" description: "Represents the install experience settings associated with WinGet apps. This is used to ensure the desired install experiences on the target device are taken into account. Required at creation time."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"runAsAccount": "String" } ```-----
v1.0 Intune Apps Wingetappinstalltimesettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-wingetappinstalltimesettings.md
Title: "winGetAppInstallTimeSettings resource type" description: "Contains properties used to determine when to offer an app to devices and when to install the app on devices."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"deadlineDateTime": "String (timestamp)" } ```-----
v1.0 Intune Apps Wingetappnotification https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-wingetappnotification.md
Title: "winGetAppNotification enum type" description: "Contains value for notification status."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Contains value for notification status.
|showReboot|1|Only show restart notification and suppress other notifications.| |hideAll|2|Hide all notifications.| |unknownFutureValue|3|Unknown future value, reserved for future usage as expandable enum.|-----
v1.0 Intune Apps Wingetapprestartsettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-apps-wingetapprestartsettings.md
Title: "winGetAppRestartSettings resource type" description: "Contains properties describing restart coordination following an app installation."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"restartNotificationSnoozeDurationInMinutes": 1024 } ```-----
v1.0 Intune Auditing Auditactor https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-auditing-auditactor.md
Title: "auditActor resource type" description: "A class containing the properties for Audit Actor."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"remoteUserId": "String" } ```-----
v1.0 Intune Auditing Auditevent https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-auditing-auditevent.md
Title: "auditEvent resource type" description: "A class containing the properties for Audit Event."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"category": "String" } ```-----
v1.0 Intune Auditing Auditproperty https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-auditing-auditproperty.md
Title: "auditProperty resource type" description: "A class containing the properties for Audit Property."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"newValue": "String" } ```-----
v1.0 Intune Auditing Auditresource https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-auditing-auditresource.md
Title: "auditResource resource type" description: "A class containing the properties for Audit Resource."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"resourceId": "String" } ```-----
v1.0 Intune Auditing Rolescopetaginfo https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-auditing-rolescopetaginfo.md
Title: "roleScopeTagInfo resource type" description: "A class containing the properties of Role Scope Tag Object."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"roleScopeTagId": "String" } ```-----
v1.0 Intune Books Deviceinstallstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-books-deviceinstallstate.md
Title: "deviceInstallState resource type" description: "Contains properties for the installation state for a device."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"userName": "String" } ```-----
v1.0 Intune Books Ebookinstallsummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-books-ebookinstallsummary.md
Title: "eBookInstallSummary resource type" description: "Contains properties for the installation summary of a book for a device."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"notInstalledUserCount": 1024 } ```-----
v1.0 Intune Books Installstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-books-installstate.md
Title: "installState enum type" description: "Possible values for install state."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for install state.
|notInstalled|3|Not Installed.| |uninstallFailed|4|Uninstall Failed.| |unknown|5|Unknown.|-----
v1.0 Intune Books Iosvppebook https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-books-iosvppebook.md
Title: "iosVppEBook resource type" description: "A class containing the properties for iOS Vpp eBook."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Books Iosvppebookassignment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-books-iosvppebookassignment.md
Title: "iosVppEBookAssignment resource type" description: "Contains properties used to assign an iOS VPP EBook to a group."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"installIntent": "String" } ```-----
v1.0 Intune Books Managedebook https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-books-managedebook.md
Title: "managedEBook resource type" description: "An abstract class containing the base properties for Managed eBook."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"privacyInformationUrl": "String" } ```-----
v1.0 Intune Books Managedebookassignment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-books-managedebookassignment.md
Title: "managedEBookAssignment resource type" description: "Contains properties used to assign a eBook to a group."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"installIntent": "String" } ```-----
v1.0 Intune Books Managedebookcategory https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-books-managedebookcategory.md
Title: "managedEBookCategory resource type" description: "Contains properties for a single Intune eBook category."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"lastModifiedDateTime": "String (timestamp)" } ```-----
v1.0 Intune Books Userinstallstatesummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-books-userinstallstatesummary.md
Title: "userInstallStateSummary resource type" description: "Contains properties for the installation state summary for a user."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"notInstalledDeviceCount": 1024 } ```-----
v1.0 Intune Chromebooksync Chromeosonboardingsettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-chromebooksync-chromeosonboardingsettings.md
Title: "chromeOSOnboardingSettings resource type" description: "Entity that represents a Chromebook tenant settings"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"lastDirectorySyncDateTime": "String (timestamp)" } ```-----
v1.0 Intune Chromebooksync Chromeosonboardingstatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-chromebooksync-chromeosonboardingstatus.md
Title: "chromeOSOnboardingStatus enum type" description: "The onboarding status of the tenant."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
The onboarding status of the tenant.
|failed|3|Failed| |offboarding|4|Offboarding| |unknownFutureValue|99|UnknownFutureValue|-----
v1.0 Intune Chromebooksync Onboardingstatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-chromebooksync-onboardingstatus.md
Title: "onboardingStatus enum type" description: "The onboarding status of the tenant."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
The onboarding status of the tenant.
|failed|3|Failed| |offboarding|4|Offboarding| |unknownFutureValue|99|UnknownFutureValue|-----
v1.0 Intune Cirrus Officeclientcheckinstatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-cirrus-officeclientcheckinstatus.md
Title: "officeClientCheckinStatus resource type" description: "Entity that describes tenant check-in stats." localization_priority: Normal-+ ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```----
v1.0 Intune Cirrus Officeclientconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-cirrus-officeclientconfiguration.md
Title: "officeClientConfiguration resource type" description: "Office Client Configuration." localization_priority: Normal-+ ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```----
v1.0 Intune Cirrus Officeclientconfigurationassignment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-cirrus-officeclientconfigurationassignment.md
Title: "officeClientConfigurationAssignment resource type" description: "Office Client Configuration Assignment." localization_priority: Normal-+ ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```----
v1.0 Intune Cirrus Officeconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-cirrus-officeconfiguration.md
Title: "officeConfiguration resource type" description: "Singleton entity that acts as a container for all device management functionality." localization_priority: Normal-+ ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```----
v1.0 Intune Cirrus Officeconfigurationassignmenttarget https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-cirrus-officeconfigurationassignmenttarget.md
Title: "officeConfigurationAssignmentTarget resource type" description: "Office Client Configuration Assignment Target." localization_priority: Normal-+ ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"@odata.type": "#microsoft.graph.officeConfigurationAssignmentTarget" } ```----
v1.0 Intune Cirrus Officeconfigurationgroupassignmenttarget https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-cirrus-officeconfigurationgroupassignmenttarget.md
Title: "officeConfigurationGroupAssignmentTarget resource type" description: "Office client configuration AAD group assignment target." localization_priority: Normal-+ ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"groupId": "String" } ```----
v1.0 Intune Cirrus Officeusercheckinsummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-cirrus-officeusercheckinsummary.md
Title: "officeUserCheckinSummary resource type" description: "Entity that describes tenant check-in stats." localization_priority: Normal-+ ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"failedUserCount": 1024 } ```----
v1.0 Intune Cirrus Windowsofficeclientconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-cirrus-windowsofficeclientconfiguration.md
Title: "windowsOfficeClientConfiguration resource type" description: "Entity that describes office policy settings for Windows." localization_priority: Normal-+ ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```----
v1.0 Intune Cirrus Windowsofficeclientsecurityconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-cirrus-windowsofficeclientsecurityconfiguration.md
Title: "windowsOfficeClientSecurityConfiguration resource type" description: "Not yet documented" localization_priority: Normal-+ ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```----
v1.0 Intune Company Conceptual https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-company-conceptual.md
Title: "Company terms and conditions in Microsoft Intune - Microsoft Graph API" description: "Lists Microsoft Graph API for Intune endpoints (REST) that define terms and conditions for a tenant organization." ms.localizationpriority: medium-+ ms.prod: "intune"
v1.0 Intune Companyterms Termsandconditions https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-companyterms-termsandconditions.md
Title: "termsAndConditions resource type" description: "A termsAndConditions entity represents the metadata and contents of a given Terms and Conditions (T&C) policy. T&C policiesΓÇÖ contents are presented to users upon their first attempt to enroll into Intune and subsequently upon edits where an administrator has required re-acceptance. They enable administrators to communicate the provisions to which a user must agree in order to have devices enrolled into Intune."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Companyterms Termsandconditionsacceptancestatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-companyterms-termsandconditionsacceptancestatus.md
Title: "termsAndConditionsAcceptanceStatus resource type" description: "A termsAndConditionsAcceptanceStatus entity represents the acceptance status of a given Terms and Conditions (T&C) policy by a given user. Users must accept the most up-to-date version of the terms in order to retain access to the Company Portal."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"userPrincipalName": "String" } ```-----
v1.0 Intune Companyterms Termsandconditionsassignment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-companyterms-termsandconditionsassignment.md
Title: "termsAndConditionsAssignment resource type" description: "A termsAndConditionsAssignment entity represents the assignment of a given Terms and Conditions (T&C) policy to a given group. Users in the group will be required to accept the terms in order to have devices enrolled into Intune."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Companyterms Termsandconditionsgroupassignment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-companyterms-termsandconditionsgroupassignment.md
Title: "termsAndConditionsGroupAssignment resource type" description: "A termsAndConditionsGroupAssignment entity represents the assignment of a given Terms and Conditions (T&C) policy to a given group. Users in the group will be required to accept the terms in order to have devices enrolled into Intune."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"targetGroupId": "String" } ```-----
v1.0 Intune Device Cfg Conceptual https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-device-cfg-conceptual.md
Title: "Device configuration in Microsoft Intune - Microsoft Gaaph API" description: "Lists Microsoft Graph API for Intune endpoints (REST) that define configure devices for a tenant organization."-+ ms.localizationpriority: medium ms.prod: "intune"
Namespace: microsoft.graph
> **Note:** The Microsoft Graph API for Intune requires an [active Intune license](https://go.microsoft.com/fwlink/?linkid=839381) for the tenant. Use the Microsoft Intune Device Configuration workload to manage settings and features on all of the devices you manage. See the table of content for a list of resources.-
v1.0 Intune Device Mgt Conceptual https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-device-mgt-conceptual.md
Title: "Device management in Microsoft Intune - Microsoft Graph API" description: "Lists Microsoft Graph API for Intune endpoints (REST) that define manage devices for a tenant organization."-+ ms.localizationpriority: medium ms.prod: "intune"
Namespace: microsoft.graph
> **Note:** The Microsoft Graph API for Intune requires an [active Intune license](https://go.microsoft.com/fwlink/?linkid=839381) for the tenant.
-Use the Microsoft Intune Device Management workload to manage settings and features on all of the devices you manage. See the table of content for a list of resources.
+Use the Microsoft Intune Device Management workload to manage settings and features on all of the devices you manage. See the table of content for a list of resources.
v1.0 Intune Deviceconfig Administratorconfigureddevicecompliancestate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-administratorconfigureddevicecompliancestate.md
Title: "administratorConfiguredDeviceComplianceState enum type" description: "Administrator configured device compliance state Enum"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Administrator configured device compliance state Enum
|:|:|:| |basedOnDeviceCompliancePolicy|0|Set compliance state based on other compliance polices| |nonCompliant|1|Set compliance to nonCompliant|-----
v1.0 Intune Deviceconfig Advancedbitlockerstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-advancedbitlockerstate.md
Title: "advancedBitLockerState enum type" description: "Advanced BitLocker State"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Advanced BitLocker State
|tpmNotAvailable|8192|TPM is not available for BitLocker. This means TPM is not present, or TPM unavailable registry override is set or host OS is on portable/rome-able drive| |tpmNotReady|16384|TPM is not ready for BitLocker| |networkError|32768|Network not available. This is required for recovery key backup. This is reported for Drive Encryption capable devices|-----
v1.0 Intune Deviceconfig Advancedthreatprotectiononboardingdevicesettingstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-advancedthreatprotectiononboardingdevicesettingstate.md
Title: "advancedThreatProtectionOnboardingDeviceSettingState resource type" description: "ATP onboarding State for a given device."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
ATP onboarding State for a given device.
|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|
Here is a JSON representation of the resource.
"complianceGracePeriodExpirationDateTime": "String (timestamp)" } ```-----
v1.0 Intune Deviceconfig Advancedthreatprotectiononboardingstatesummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-advancedthreatprotectiononboardingstatesummary.md
Title: "advancedThreatProtectionOnboardingStateSummary resource type" description: "Windows defender advanced threat protection onboarding state summary across the account."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"notAssignedDeviceCount": 1024 } ```-----
v1.0 Intune Deviceconfig Airprintdestination https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-airprintdestination.md
Title: "airPrintDestination resource type" description: "Represents an AirPrint destination."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"forceTls": true } ```-----
v1.0 Intune Deviceconfig Androidcertificateprofilebase https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androidcertificateprofilebase.md
Title: "androidCertificateProfileBase resource type" description: "Android certificate profile base."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Androidcompliancepolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androidcompliancepolicy.md
Title: "androidCompliancePolicy resource type" description: "This class contains compliance settings for Android."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Androidcustomconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androidcustomconfiguration.md
Title: "androidCustomConfiguration resource type" description: "This topic provides descriptions of the declared methods, properties and relationships exposed by the androidCustomConfiguration resource."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Androiddeviceownerappautoupdatepolicytype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androiddeviceownerappautoupdatepolicytype.md
Title: "androidDeviceOwnerAppAutoUpdatePolicyType enum type" description: "Android Device Owner possible values for states of the device's app auto update policy."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Android Device Owner possible values for states of the device's app auto update
|never|2|Apps are never auto-updated.| |wiFiOnly|3|Apps are auto-updated over Wi-Fi only.| |always|4|Apps are auto-updated at any time. Data charges may apply.|-----
v1.0 Intune Deviceconfig Androiddeviceownerbatterypluggedmode https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androiddeviceownerbatterypluggedmode.md
Title: "androidDeviceOwnerBatteryPluggedMode enum type" description: "Android Device Owner possible values for states of the device's plugged-in power modes."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Android Device Owner possible values for states of the device's plugged-in power
|ac|1|Power source is an AC charger.| |usb|2|Power source is a USB port.| |wireless|3|Power source is wireless.|-----
v1.0 Intune Deviceconfig Androiddeviceownercertificateaccesstype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androiddeviceownercertificateaccesstype.md
Title: "androidDeviceOwnerCertificateAccessType enum type" description: "An enum representing possible values for cross profile data sharing."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
An enum representing possible values for cross profile data sharing.
|userApproval|0|Require user approval for all apps| |specificApps|1|Pre-grant certificate access for specific apps (require user approval for other apps).| |unknownFutureValue|2|Unknown future value for evolvable enum patterns.|-----
v1.0 Intune Deviceconfig Androiddeviceownercertificateprofilebase https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androiddeviceownercertificateprofilebase.md
Title: "androidDeviceOwnerCertificateProfileBase resource type" description: "Android Device Owner certificate profile base."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"subjectAlternativeNameType": "String" } ```-----
v1.0 Intune Deviceconfig Androiddeviceownercompliancepolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androiddeviceownercompliancepolicy.md
Title: "androidDeviceOwnerCompliancePolicy resource type" description: "This topic provides descriptions of the declared methods, properties and relationships exposed by the AndroidDeviceOwnerCompliancePolicy resource."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"securityRequireIntuneAppIntegrity": true } ```-----
v1.0 Intune Deviceconfig Androiddeviceownercrossprofiledatasharing https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androiddeviceownercrossprofiledatasharing.md
Title: "androidDeviceOwnerCrossProfileDataSharing enum type" description: "An enum representing possible values for cross profile data sharing."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
An enum representing possible values for cross profile data sharing.
|dataSharingFromWorkToPersonalBlocked|2|Prevents users from sharing data from the work profile to apps in the personal profile. Personal data can be shared with work apps.| |crossProfileDataSharingAllowed|3|Data from either profile can be shared with the other profile.| |unkownFutureValue|4|Unknown future value (reserved, not used right now)|-----
v1.0 Intune Deviceconfig Androiddeviceownerdefaultapppermissionpolicytype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androiddeviceownerdefaultapppermissionpolicytype.md
Title: "androidDeviceOwnerDefaultAppPermissionPolicyType enum type" description: "Android Device Owner default app permission policy type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Android Device Owner default app permission policy type.
|prompt|1|Prompt.| |autoGrant|2|Auto grant.| |autoDeny|3|Auto deny.|-----
v1.0 Intune Deviceconfig Androiddeviceownerderivedcredentialauthenticationconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androiddeviceownerderivedcredentialauthenticationconfiguration.md
Title: "androidDeviceOwnerDerivedCredentialAuthenticationConfiguration resource type" description: "Android COBO Derived Credential profile."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Androiddeviceownerenrollmentprofiletype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androiddeviceownerenrollmentprofiletype.md
Title: "androidDeviceOwnerEnrollmentProfileType enum type" description: "Android Device Owner Enrollment Profile types."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Android Device Owner Enrollment Profile types.
|notConfigured|0|Not configured; this value is ignored.| |dedicatedDevice|1|Dedicated device.| |fullyManaged|2|Fully managed.|-----
v1.0 Intune Deviceconfig Androiddeviceownerenterprisewificonfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androiddeviceownerenterprisewificonfiguration.md
Title: "androidDeviceOwnerEnterpriseWiFiConfiguration resource type" description: "By providing the configurations in this profile you can instruct the Android Device Owner device to connect to desired Wi-Fi endpoint. By specifying the authentication method and security types expected by Wi-Fi endpoint you can make the Wi-Fi connection seamless for end user."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"outerIdentityPrivacyTemporaryValue": "String" } ```-----
v1.0 Intune Deviceconfig Androiddeviceownergeneraldeviceconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androiddeviceownergeneraldeviceconfiguration.md
Title: "androidDeviceOwnerGeneralDeviceConfiguration resource type" description: "This topic provides descriptions of the declared methods, properties and relationships exposed by the androidDeviceOwnerGeneralDeviceConfiguration resource."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"workProfilePasswordRequireUnlock": "String" } ```-----
v1.0 Intune Deviceconfig Androiddeviceownerglobalproxy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androiddeviceownerglobalproxy.md
Title: "androidDeviceOwnerGlobalProxy resource type" description: "Android Device Owner Global Proxy."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"@odata.type": "#microsoft.graph.androidDeviceOwnerGlobalProxy" } ```-----
v1.0 Intune Deviceconfig Androiddeviceownerglobalproxyautoconfig https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androiddeviceownerglobalproxyautoconfig.md
Title: "androidDeviceOwnerGlobalProxyAutoConfig resource type" description: "Android Device Owner Global Proxy Auto Config."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"proxyAutoConfigURL": "String" } ```-----
v1.0 Intune Deviceconfig Androiddeviceownerglobalproxydirect https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androiddeviceownerglobalproxydirect.md
Title: "androidDeviceOwnerGlobalProxyDirect resource type" description: "Android Device Owner Global Proxy Direct."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Androiddeviceownerimportedpfxcertificateprofile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androiddeviceownerimportedpfxcertificateprofile.md
Title: "androidDeviceOwnerImportedPFXCertificateProfile resource type" description: "Android Device Owner PFX Import certificate profile"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Androiddeviceownerkioskcustomizationstatusbar https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androiddeviceownerkioskcustomizationstatusbar.md
Title: "androidDeviceOwnerKioskCustomizationStatusBar enum type" description: "An enum representing possible values for kiosk customization system navigation."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
An enum representing possible values for kiosk customization system navigation.
|notConfigured|0|Not configured; this value defaults to STATUS_BAR_UNSPECIFIED.| |notificationsAndSystemInfoEnabled|1|System info and notifications are shown on the status bar in kiosk mode.| |systemInfoOnly|2|Only system info is shown on the status bar in kiosk mode.|-----
v1.0 Intune Deviceconfig Androiddeviceownerkioskcustomizationsystemnavigation https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androiddeviceownerkioskcustomizationsystemnavigation.md
Title: "androidDeviceOwnerKioskCustomizationSystemNavigation enum type" description: "An enum representing possible values for kiosk customization system navigation."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
An enum representing possible values for kiosk customization system navigation.
|notConfigured|0|Not configured; this value defaults to NAVIGATION_DISABLED.| |navigationEnabled|1|Home and overview buttons are enabled.| |homeButtonOnly|2| Only the home button is enabled.|-----
v1.0 Intune Deviceconfig Androiddeviceownerkioskmodeapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androiddeviceownerkioskmodeapp.md
Title: "androidDeviceOwnerKioskModeApp resource type" description: "An application on the Android Device Owner Managed Home Screen"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"className": "String" } ```-----
v1.0 Intune Deviceconfig Androiddeviceownerkioskmodeapppositionitem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androiddeviceownerkioskmodeapppositionitem.md
Title: "androidDeviceOwnerKioskModeAppPositionItem resource type" description: "An item in the list of app positions that sets the order of items on the Managed Home Screen"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Deviceconfig Androiddeviceownerkioskmodefoldericon https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androiddeviceownerkioskmodefoldericon.md
Title: "androidDeviceOwnerKioskModeFolderIcon enum type" description: "Android Device Owner Kiosk Mode folder icon type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Android Device Owner Kiosk Mode folder icon type.
|darkCircle|2|Folder icon appears as dark circle.| |lightSquare|3|Folder icon appears as light square.| |lightCircle|4|Folder icon appears as light circle .|-----
v1.0 Intune Deviceconfig Androiddeviceownerkioskmodefolderitem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androiddeviceownerkioskmodefolderitem.md
Title: "androidDeviceOwnerKioskModeFolderItem resource type" description: "Represents an item that can be added to Android Device Owner folder (application or weblink)"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"@odata.type": "#microsoft.graph.androidDeviceOwnerKioskModeFolderItem" } ```-----
v1.0 Intune Deviceconfig Androiddeviceownerkioskmodehomescreenitem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androiddeviceownerkioskmodehomescreenitem.md
Title: "androidDeviceOwnerKioskModeHomeScreenItem resource type" description: "Represents an item on the Android Device Owner Managed Home Screen (application, weblink or folder"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"@odata.type": "#microsoft.graph.androidDeviceOwnerKioskModeHomeScreenItem" } ```-----
v1.0 Intune Deviceconfig Androiddeviceownerkioskmodeiconsize https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androiddeviceownerkioskmodeiconsize.md
Title: "androidDeviceOwnerKioskModeIconSize enum type" description: "Android Device Owner Kiosk Mode managed home screen icon size."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Android Device Owner Kiosk Mode managed home screen icon size.
|regular|3|Regular icon size.| |large|4|Large icon size.| |largest|5|Largest icon size.|-----
v1.0 Intune Deviceconfig Androiddeviceownerkioskmodemanagedfolder https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androiddeviceownerkioskmodemanagedfolder.md
Title: "androidDeviceOwnerKioskModeManagedFolder resource type" description: "A folder containing pages of apps and weblinks on the Managed Home Screen"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Androiddeviceownerkioskmodemanagedfolderreference https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androiddeviceownerkioskmodemanagedfolderreference.md
Title: "androidDeviceOwnerKioskModeManagedFolderReference resource type" description: "A reference to folder containing apps and weblinks on the Managed Home Screen"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"folderIdentifier": "String" } ```-----
v1.0 Intune Deviceconfig Androiddeviceownerkioskmodescreenorientation https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androiddeviceownerkioskmodescreenorientation.md
Title: "androidDeviceOwnerKioskModeScreenOrientation enum type" description: "Android Device Owner Kiosk Mode managed home screen orientation."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Android Device Owner Kiosk Mode managed home screen orientation.
|portrait|1|Portrait orientation.| |landscape|2|Landscape orientation.| |autoRotate|3|Auto rotate between portrait and landscape orientations.|-----
v1.0 Intune Deviceconfig Androiddeviceownerkioskmodeweblink https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androiddeviceownerkioskmodeweblink.md
Title: "androidDeviceOwnerKioskModeWeblink resource type" description: "A weblink on the Android Device Owner Managed Home Screen"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"link": "String" } ```-----
v1.0 Intune Deviceconfig Androiddeviceownerpkcscertificateprofile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androiddeviceownerpkcscertificateprofile.md
Title: "androidDeviceOwnerPkcsCertificateProfile resource type" description: "Android Device Owner PKCS certificate profile"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Androiddeviceownerplaystoremode https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androiddeviceownerplaystoremode.md
Title: "androidDeviceOwnerPlayStoreMode enum type" description: "Android Device Owner Play Store mode type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Android Device Owner Play Store mode type.
|notConfigured|0|Not Configured| |allowList|1|Only apps that are in the policy are available and any app not in the policy will be automatically uninstalled from the device.| |blockList|2|All apps are available and any app that should not be on the device should be explicitly marked as 'BLOCKED' in the applications policy.|-----
v1.0 Intune Deviceconfig Androiddeviceownerrequiredpasswordtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androiddeviceownerrequiredpasswordtype.md
Title: "androidDeviceOwnerRequiredPasswordType enum type" description: "Android Device Owner policy required password type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Android Device Owner policy required password type.
|alphanumericWithSymbols|6|At least alphanumeric with symbols.| |lowSecurityBiometric|7|Low security biometrics based password required.| |customPassword|8|Custom password set by the admin.|-----
v1.0 Intune Deviceconfig Androiddeviceownerrequiredpasswordunlock https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androiddeviceownerrequiredpasswordunlock.md
Title: "androidDeviceOwnerRequiredPasswordUnlock enum type" description: "An enum representing possible values for required password unlock."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
An enum representing possible values for required password unlock.
|deviceDefault|0|Timeout period before strong authentication is required is set to the device's default.| |daily|1|Timeout period before strong authentication is required is set to 24 hours.| |unkownFutureValue|2|Unknown future value (reserved, not used right now)|-----
v1.0 Intune Deviceconfig Androiddeviceownerscepcertificateprofile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androiddeviceownerscepcertificateprofile.md
Title: "androidDeviceOwnerScepCertificateProfile resource type" description: "Android Device Owner SCEP certificate profile"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Androiddeviceownersilentcertificateaccess https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androiddeviceownersilentcertificateaccess.md
Title: "androidDeviceOwnerSilentCertificateAccess resource type" description: "Contain the package ID that has the pre-granted access to the certificate."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"packageId": "String" } ```-----
v1.0 Intune Deviceconfig Androiddeviceownersystemupdatefreezeperiod https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androiddeviceownersystemupdatefreezeperiod.md
Title: "androidDeviceOwnerSystemUpdateFreezePeriod resource type" description: "Represents one item in the list of freeze periods for Android Device Owner system updates"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"endDay": 1024 } ```-----
v1.0 Intune Deviceconfig Androiddeviceownersystemupdateinstalltype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androiddeviceownersystemupdateinstalltype.md
Title: "androidDeviceOwnerSystemUpdateInstallType enum type" description: "System Update Types for Android Device Owner."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
System Update Types for Android Device Owner.
|postpone|1|Postpone automatic install of updates up to 30 days.| |windowed|2|Install automatically inside a daily maintenance window.| |automatic|3|Automatically install updates as soon as possible.|-----
v1.0 Intune Deviceconfig Androiddeviceownertrustedrootcertificate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androiddeviceownertrustedrootcertificate.md
Title: "androidDeviceOwnerTrustedRootCertificate resource type" description: "Android Device Owner Trusted Root Certificate configuration profile"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"certFileName": "String" } ```-----
v1.0 Intune Deviceconfig Androiddeviceowneruserfacingmessage https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androiddeviceowneruserfacingmessage.md
Title: "androidDeviceOwnerUserFacingMessage resource type" description: "Represents a user-facing message with locale information as well as a default message to be used if the user's locale doesn't match with any of the localized messages"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Represents a user-facing message with locale information as well as a default me
## Properties |Property|Type|Description| |:|:|:|
-|localizedMessages|[keyValuePair](../resources/intune-shared-keyvaluepair.md) collection|The list of <locale, message> pairs. This collection can contain a maximum of 500 elements.|
+|localizedMessages|[keyValuePair](../resources/intune-deviceconfig-keyvaluepair.md) collection|The list of <locale, message> pairs. This collection can contain a maximum of 500 elements.|
|defaultMessage|String|The default message displayed if the user's locale doesn't match with any of the localized messages| ## Relationships
Here is a JSON representation of the resource.
"defaultMessage": "String" } ```-----
v1.0 Intune Deviceconfig Androiddeviceownervirtualhomebuttontype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androiddeviceownervirtualhomebuttontype.md
Title: "androidDeviceOwnerVirtualHomeButtonType enum type" description: "Android Device Owner Kiosk Mode managed home screen virtual home button type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Android Device Owner Kiosk Mode managed home screen virtual home button type.
|notConfigured|0|Not configured; this value is ignored.| |swipeUp|1|Swipe-up for home button.| |floating|2|Floating home button.|-----
v1.0 Intune Deviceconfig Androiddeviceownervpnconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androiddeviceownervpnconfiguration.md
Title: "androidDeviceOwnerVpnConfiguration resource type" description: "By providing the configurations in this profile you can instruct the Android Fully Managed device to connect to desired VPN endpoint. By specifying the authentication method and security types expected by VPN endpoint you can make the VPN connection seamless for end user."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Inherits from [vpnConfiguration](../resources/intune-deviceconfig-vpnconfigurati
|alwaysOnLockdown|Boolean|If always-on VPN connection is enabled, whether or not to lock network traffic when that VPN is disconnected.| |microsoftTunnelSiteId|String|Microsoft Tunnel site ID.| |customData|[keyValue](../resources/intune-deviceconfig-keyvalue.md) collection|Custom data to define key/value pairs specific to a VPN provider. This collection can contain a maximum of 25 elements.|
-|customKeyValueData|[keyValuePair](../resources/intune-shared-keyvaluepair.md) collection|Custom data to define key/value pairs specific to a VPN provider. This collection can contain a maximum of 25 elements.|
+|customKeyValueData|[keyValuePair](../resources/intune-deviceconfig-keyvaluepair.md) collection|Custom data to define key/value pairs specific to a VPN provider. This collection can contain a maximum of 25 elements.|
## Relationships |Relationship|Type|Description|
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Androiddeviceownerwificonfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androiddeviceownerwificonfiguration.md
Title: "androidDeviceOwnerWiFiConfiguration resource type" description: "By providing the configurations in this profile you can instruct the Android device to connect to desired Wi-Fi endpoint. By specifying the authentication method and security types expected by Wi-Fi endpoint you can make the Wi-Fi connection seamless for end user. This profile provides limited and simpler security types than Enterprise Wi-Fi profile."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"proxyExclusionList": "String" } ```-----
v1.0 Intune Deviceconfig Androiddeviceownerwifisecuritytype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androiddeviceownerwifisecuritytype.md
Title: "androidDeviceOwnerWiFiSecurityType enum type" description: "Wi-Fi Security Types for Android Device Owner."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Wi-Fi Security Types for Android Device Owner.
|wep|1|WEP Encryption.| |wpaPersonal|2|WPA-Personal/WPA2-Personal.| |wpaEnterprise|4|WPA-Enterprise/WPA2-Enterprise. Must use AndroidDeviceOwnerEnterpriseWifiConfiguration type to configure enterprise options.|-----
v1.0 Intune Deviceconfig Androideaptype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androideaptype.md
Title: "androidEapType enum type" description: "Extensible Authentication Protocol (EAP) Configuration Types."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Extensible Authentication Protocol (EAP) Configuration Types.
|eapTls|13|Extensible Authentication Protocol-Transport Layer Security (EAP-TLS).| |eapTtls|21|Extensible Authentication Protocol-Tunneled Transport Layer Security (EAP-TTLS).| |peap|25|Protected Extensible Authentication Protocol (PEAP).|-----
v1.0 Intune Deviceconfig Androideasemailprofileconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androideasemailprofileconfiguration.md
Title: "androidEasEmailProfileConfiguration resource type" description: "By providing configurations in this profile you can instruct the native email client on KNOX devices to communicate with an Exchange server and get email, contacts, calendar, tasks, and notes. Furthermore, you can also specify how much email to sync and how often the device should sync."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"customDomainName": "String" } ```-----
v1.0 Intune Deviceconfig Androidenterprisewificonfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androidenterprisewificonfiguration.md
Title: "androidEnterpriseWiFiConfiguration resource type" description: "By providing the configurations in this profile you can instruct the Android device to connect to desired Wi-Fi endpoint. By specifying the authentication method and security types expected by Wi-Fi endpoint you can make the Wi-Fi connection seamless for end user."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"preSharedKey": "String" } ```-----
v1.0 Intune Deviceconfig Androidforworkcertificateprofilebase https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androidforworkcertificateprofilebase.md
Title: "androidForWorkCertificateProfileBase resource type" description: "Android For Work certificate profile base."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"subjectAlternativeNameType": "String" } ```-----
v1.0 Intune Deviceconfig Androidforworkcompliancepolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androidforworkcompliancepolicy.md
Title: "androidForWorkCompliancePolicy resource type" description: "This class contains compliance settings for Android for Work."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"securityRequiredAndroidSafetyNetEvaluationType": "String" } ```-----
v1.0 Intune Deviceconfig Androidforworkcrossprofiledatasharingtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androidforworkcrossprofiledatasharingtype.md
Title: "androidForWorkCrossProfileDataSharingType enum type" description: "Android For Work cross profile data sharing type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Android For Work cross profile data sharing type.
|preventAny|1|Prevent any sharing.| |allowPersonalToWork|2|Allow data sharing request from personal profile to work profile.| |noRestrictions|3|No restrictions on sharing.|-----
v1.0 Intune Deviceconfig Androidforworkcustomconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androidforworkcustomconfiguration.md
Title: "androidForWorkCustomConfiguration resource type" description: "Android For Work custom configuration"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Androidforworkdefaultapppermissionpolicytype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androidforworkdefaultapppermissionpolicytype.md
Title: "androidForWorkDefaultAppPermissionPolicyType enum type" description: "Android For Work default app permission policy type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Android For Work default app permission policy type.
|prompt|1|Prompt.| |autoGrant|2|Auto grant.| |autoDeny|3|Auto deny.|-----
v1.0 Intune Deviceconfig Androidforworkeasemailprofilebase https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androidforworkeasemailprofilebase.md
Title: "androidForWorkEasEmailProfileBase resource type" description: "Base for Android For Work EAS Email profiles"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"usernameSource": "String" } ```-----
v1.0 Intune Deviceconfig Androidforworkenterprisewificonfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androidforworkenterprisewificonfiguration.md
Title: "androidForWorkEnterpriseWiFiConfiguration resource type" description: "By providing the configurations in this profile you can instruct the Android for Work device to connect to desired Wi-Fi endpoint. By specifying the authentication method and security types expected by Wi-Fi endpoint you can make the Wi-Fi connection seamless for end user."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"outerIdentityPrivacyTemporaryValue": "String" } ```-----
v1.0 Intune Deviceconfig Androidforworkgeneraldeviceconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androidforworkgeneraldeviceconfiguration.md
Title: "androidForWorkGeneralDeviceConfiguration resource type" description: "Android For Work general device configuration."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"workProfileBlockPersonalAppInstallsFromUnknownSources": true } ```-----
v1.0 Intune Deviceconfig Androidforworkgmaileasconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androidforworkgmaileasconfiguration.md
Title: "androidForWorkGmailEasConfiguration resource type" description: "By providing configurations in this profile you can instruct the Gmail email client on Android For Work devices to communicate with an Exchange server and get email, contacts, calendar, tasks, and notes. Furthermore, you can also specify how much email to sync and how often the device should sync."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"usernameSource": "String" } ```-----
v1.0 Intune Deviceconfig Androidforworkimportedpfxcertificateprofile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androidforworkimportedpfxcertificateprofile.md
Title: "androidForWorkImportedPFXCertificateProfile resource type" description: "Android For Work PFX Import certificate profile"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"intendedPurpose": "String" } ```-----
v1.0 Intune Deviceconfig Androidforworknineworkeasconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androidforworknineworkeasconfiguration.md
Title: "androidForWorkNineWorkEasConfiguration resource type" description: "By providing configurations in this profile you can instruct the Nine Work email client on Android For Work devices to communicate with an Exchange server and get email, contacts, calendar, tasks, and notes. Furthermore, you can also specify how much email to sync and how often the device should sync."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"syncTasks": true } ```-----
v1.0 Intune Deviceconfig Androidforworkpkcscertificateprofile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androidforworkpkcscertificateprofile.md
Title: "androidForWorkPkcsCertificateProfile resource type" description: "Android For Work PKCS certificate profile"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"subjectAlternativeNameFormatString": "String" } ```-----
v1.0 Intune Deviceconfig Androidforworkrequiredpasswordtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androidforworkrequiredpasswordtype.md
Title: "androidForWorkRequiredPasswordType enum type" description: "Android For Work required password type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Android For Work required password type.
|atLeastAlphabetic|5|At least alphabetic password required.| |atLeastAlphanumeric|6|At least alphanumeric password required.| |alphanumericWithSymbols|7|At least alphanumeric with symbols password required.|-----
v1.0 Intune Deviceconfig Androidforworkscepcertificateprofile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androidforworkscepcertificateprofile.md
Title: "androidForWorkScepCertificateProfile resource type" description: "Android For Work SCEP certificate profile"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Androidforworktrustedrootcertificate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androidforworktrustedrootcertificate.md
Title: "androidForWorkTrustedRootCertificate resource type" description: "Android For Work Trusted Root Certificate configuration profile"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"certFileName": "String" } ```-----
v1.0 Intune Deviceconfig Androidforworkvpnconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androidforworkvpnconfiguration.md
Title: "androidForWorkVpnConfiguration resource type" description: "By providing the configurations in this profile you can instruct the Android device to connect to desired VPN endpoint. By specifying the authentication method and security types expected by VPN endpoint you can make the VPN connection seamless for end user."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Inherits from [deviceConfiguration](../resources/intune-shared-deviceconfigurati
|servers|[vpnServer](../resources/intune-deviceconfig-vpnserver.md) collection|List of VPN Servers on the network. Make sure end users can access these network locations. This collection can contain a maximum of 500 elements.| |fingerprint|String|Fingerprint is a string that will be used to verify the VPN server can be trusted, which is only applicable when connection type is Check Point Capsule VPN.| |customData|[keyValue](../resources/intune-deviceconfig-keyvalue.md) collection|Custom data when connection type is set to Citrix. This collection can contain a maximum of 25 elements.|
-|customKeyValueData|[keyValuePair](../resources/intune-shared-keyvaluepair.md) collection|Custom data when connection type is set to Citrix. This collection can contain a maximum of 25 elements.|
+|customKeyValueData|[keyValuePair](../resources/intune-deviceconfig-keyvaluepair.md) collection|Custom data when connection type is set to Citrix. This collection can contain a maximum of 25 elements.|
|authenticationMethod|[vpnAuthenticationMethod](../resources/intune-deviceconfig-vpnauthenticationmethod.md)|Authentication method. Possible values are: `certificate`, `usernameAndPassword`, `sharedSecret`, `derivedCredential`, `azureAD`.| ## Relationships
Here is a JSON representation of the resource.
"authenticationMethod": "String" } ```-----
v1.0 Intune Deviceconfig Androidforworkvpnconnectiontype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androidforworkvpnconnectiontype.md
Title: "androidForWorkVpnConnectionType enum type" description: "Android For Work VPN connection type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Android For Work VPN connection type.
|dellSonicWallMobileConnect|3|Dell SonicWALL Mobile Connection.| |checkPointCapsuleVpn|4|Check Point Capsule VPN.| |citrix|5|Citrix|-----
v1.0 Intune Deviceconfig Androidforworkwificonfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androidforworkwificonfiguration.md
Title: "androidForWorkWiFiConfiguration resource type" description: "By providing the configurations in this profile you can instruct the Android for Work device to connect to desired Wi-Fi endpoint. By specifying the authentication method and security types expected by Wi-Fi endpoint you can make the Wi-Fi connection seamless for end user. This profile provides limited and simpler security types than Enterprise Wi-Fi profile."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"wiFiSecurityType": "String" } ```-----
v1.0 Intune Deviceconfig Androidgeneraldeviceconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androidgeneraldeviceconfiguration.md
Title: "androidGeneralDeviceConfiguration resource type" description: "This topic provides descriptions of the declared methods, properties and relationships exposed by the androidGeneralDeviceConfiguration resource."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"securityRequireVerifyApps": true } ```-----
v1.0 Intune Deviceconfig Androidimportedpfxcertificateprofile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androidimportedpfxcertificateprofile.md
Title: "androidImportedPFXCertificateProfile resource type" description: "Android PFX Import certificate profile"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"intendedPurpose": "String" } ```-----
v1.0 Intune Deviceconfig Androidkeyguardfeature https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androidkeyguardfeature.md
Title: "androidKeyguardFeature enum type" description: "Android keyguard feature."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Android keyguard feature.
|face|8|Face authentication on secure keyguard screens.| |iris|9|Iris authentication on secure keyguard screens.| |biometrics|10|All biometric authentication on secure keyguard screens.|-----
v1.0 Intune Deviceconfig Androidomacpconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androidomacpconfiguration.md
Title: "androidOmaCpConfiguration resource type" description: "By providing a configuration in this profile you can configure Android devices that support OMA-CP."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"configurationXml": "binary" } ```-----
v1.0 Intune Deviceconfig Androidpkcscertificateprofile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androidpkcscertificateprofile.md
Title: "androidPkcsCertificateProfile resource type" description: "Android PKCS certificate profile"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"subjectAlternativeNameFormatString": "String" } ```-----
v1.0 Intune Deviceconfig Androidrequiredpasswordcomplexity https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androidrequiredpasswordcomplexity.md
Title: "androidRequiredPasswordComplexity enum type" description: "The password complexity types that can be set on Android. One of: NONE, LOW, MEDIUM, HIGH. This is an API targeted to Android 11+."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
The password complexity types that can be set on Android. One of: NONE, LOW, MED
|low|1|The required password complexity on the device is of type low as defined by the Android documentation.| |medium|2|The required password complexity on the device is of type medium as defined by the Android documentation.| |high|3|The required password complexity on the device is of type high as defined by the Android documentation.|-----
v1.0 Intune Deviceconfig Androidrequiredpasswordtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androidrequiredpasswordtype.md
Title: "androidRequiredPasswordType enum type" description: "Android required password type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Android required password type.
|numeric|5|Numeric password required.| |numericComplex|6|Numeric complex password required.| |any|7|A password or pattern is required, and any is acceptable.|-----
v1.0 Intune Deviceconfig Androidsafetynetevaluationtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androidsafetynetevaluationtype.md
Title: "androidSafetyNetEvaluationType enum type" description: "An enum representing the Android SafetyNet attestation evaluation types."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
An enum representing the Android SafetyNet attestation evaluation types.
|:|:|:| |basic|0|Default value. Typical measurements and reference data were used.| |hardwareBacked|1|Hardware-backed security features (such as Key Attestation) were used.|-----
v1.0 Intune Deviceconfig Androidscepcertificateprofile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androidscepcertificateprofile.md
Title: "androidScepCertificateProfile resource type" description: "Android SCEP certificate profile"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"subjectAlternativeNameFormatString": "String" } ```-----
v1.0 Intune Deviceconfig Androidtrustedrootcertificate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androidtrustedrootcertificate.md
Title: "androidTrustedRootCertificate resource type" description: "Android Trusted Root Certificate configuration profile"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"certFileName": "String" } ```-----
v1.0 Intune Deviceconfig Androidusernamesource https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androidusernamesource.md
Title: "androidUsernameSource enum type" description: "Android username source."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Android username source.
|userPrincipalName|1|The user principal name.| |samAccountName|2|The user sam account name.| |primarySmtpAddress|3|Primary SMTP address.|-----
v1.0 Intune Deviceconfig Androidvpnconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androidvpnconfiguration.md
Title: "androidVpnConfiguration resource type" description: "By providing the configurations in this profile you can instruct the Android device to connect to desired VPN endpoint. By specifying the authentication method and security types expected by VPN endpoint you can make the VPN connection seamless for end user."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Inherits from [deviceConfiguration](../resources/intune-shared-deviceconfigurati
|servers|[vpnServer](../resources/intune-deviceconfig-vpnserver.md) collection|List of VPN Servers on the network. Make sure end users can access these network locations. This collection can contain a maximum of 500 elements.| |fingerprint|String|Fingerprint is a string that will be used to verify the VPN server can be trusted, which is only applicable when connection type is Check Point Capsule VPN.| |customData|[keyValue](../resources/intune-deviceconfig-keyvalue.md) collection|Custom data when connection type is set to Citrix. This collection can contain a maximum of 25 elements.|
-|customKeyValueData|[keyValuePair](../resources/intune-shared-keyvaluepair.md) collection|Custom data when connection type is set to Citrix. This collection can contain a maximum of 25 elements.|
+|customKeyValueData|[keyValuePair](../resources/intune-deviceconfig-keyvaluepair.md) collection|Custom data when connection type is set to Citrix. This collection can contain a maximum of 25 elements.|
|authenticationMethod|[vpnAuthenticationMethod](../resources/intune-deviceconfig-vpnauthenticationmethod.md)|Authentication method. Possible values are: `certificate`, `usernameAndPassword`, `sharedSecret`, `derivedCredential`, `azureAD`.| ## Relationships
Here is a JSON representation of the resource.
"authenticationMethod": "String" } ```-----
v1.0 Intune Deviceconfig Androidvpnconnectiontype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androidvpnconnectiontype.md
Title: "androidVpnConnectionType enum type" description: "Android VPN connection type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Android VPN connection type.
|microsoftTunnel|7|Microsoft Tunnel.| |netMotionMobility|8|NetMotion Mobility.| |microsoftProtect|9|Microsoft Protect.|-----
v1.0 Intune Deviceconfig Androidwificonfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androidwificonfiguration.md
Title: "androidWiFiConfiguration resource type" description: "By providing the configurations in this profile you can instruct the Android device to connect to desired Wi-Fi endpoint. By specifying the authentication method and security types expected by Wi-Fi endpoint you can make the Wi-Fi connection seamless for end user. This profile provides limited and simpler security types than Enterprise Wi-Fi profile."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"wiFiSecurityType": "String" } ```-----
v1.0 Intune Deviceconfig Androidwifisecuritytype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androidwifisecuritytype.md
Title: "androidWiFiSecurityType enum type" description: "Wi-Fi Security Types for Android."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Wi-Fi Security Types for Android.
|open|0|Open (No Authentication).| |wpaEnterprise|1|WPA-Enterprise. Must use AndroidEnterpriseWifiConfiguration type to configure enterprise options.| |wpa2Enterprise|2|WPA2-Enterprise. Must use AndroidEnterpriseWifiConfiguration type to configure enterprise options.|-----
v1.0 Intune Deviceconfig Androidworkprofilecertificateprofilebase https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androidworkprofilecertificateprofilebase.md
Title: "androidWorkProfileCertificateProfileBase resource type" description: "Android Work Profile certificate profile base."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"subjectAlternativeNameType": "String" } ```-----
v1.0 Intune Deviceconfig Androidworkprofilecompliancepolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androidworkprofilecompliancepolicy.md
Title: "androidWorkProfileCompliancePolicy resource type" description: "This class contains compliance settings for Android Work Profile."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"securityRequiredAndroidSafetyNetEvaluationType": "String" } ```-----
v1.0 Intune Deviceconfig Androidworkprofilecrossprofiledatasharingtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androidworkprofilecrossprofiledatasharingtype.md
Title: "androidWorkProfileCrossProfileDataSharingType enum type" description: "Android Work Profile cross profile data sharing type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Android Work Profile cross profile data sharing type.
|preventAny|1|Prevent any sharing.| |allowPersonalToWork|2|Allow data sharing request from personal profile to work profile.| |noRestrictions|3|No restrictions on sharing.|-----
v1.0 Intune Deviceconfig Androidworkprofilecustomconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androidworkprofilecustomconfiguration.md
Title: "androidWorkProfileCustomConfiguration resource type" description: "Android Work Profile custom configuration"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Androidworkprofiledefaultapppermissionpolicytype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androidworkprofiledefaultapppermissionpolicytype.md
Title: "androidWorkProfileDefaultAppPermissionPolicyType enum type" description: "Android Work Profile default app permission policy type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Android Work Profile default app permission policy type.
|prompt|1|Prompt.| |autoGrant|2|Auto grant.| |autoDeny|3|Auto deny.|-----
v1.0 Intune Deviceconfig Androidworkprofileeasemailprofilebase https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androidworkprofileeasemailprofilebase.md
Title: "androidWorkProfileEasEmailProfileBase resource type" description: "Base for Android Work Profile EAS Email profiles"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"usernameSource": "String" } ```-----
v1.0 Intune Deviceconfig Androidworkprofileenterprisewificonfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androidworkprofileenterprisewificonfiguration.md
Title: "androidWorkProfileEnterpriseWiFiConfiguration resource type" description: "By providing the configurations in this profile you can instruct the Android Work Profile device to connect to desired Wi-Fi endpoint. By specifying the authentication method and security types expected by Wi-Fi endpoint you can make the Wi-Fi connection seamless for end user."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"proxyAutomaticConfigurationUrl": "String" } ```-----
v1.0 Intune Deviceconfig Androidworkprofilegeneraldeviceconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androidworkprofilegeneraldeviceconfiguration.md
Title: "androidWorkProfileGeneralDeviceConfiguration resource type" description: "Android Work Profile general device configuration."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"workProfileBlockPersonalAppInstallsFromUnknownSources": true } ```-----
v1.0 Intune Deviceconfig Androidworkprofilegmaileasconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androidworkprofilegmaileasconfiguration.md
Title: "androidWorkProfileGmailEasConfiguration resource type" description: "By providing configurations in this profile you can instruct the Gmail email client on Android Work Profile devices to communicate with an Exchange server and get email, contacts, calendar, tasks, and notes. Furthermore, you can also specify how much email to sync and how often the device should sync."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"usernameSource": "String" } ```-----
v1.0 Intune Deviceconfig Androidworkprofilenineworkeasconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androidworkprofilenineworkeasconfiguration.md
Title: "androidWorkProfileNineWorkEasConfiguration resource type" description: "By providing configurations in this profile you can instruct the Nine Work email client on Android Work Profile devices to communicate with an Exchange server and get email, contacts, calendar, tasks, and notes. Furthermore, you can also specify how much email to sync and how often the device should sync."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"syncTasks": true } ```-----
v1.0 Intune Deviceconfig Androidworkprofilepkcscertificateprofile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androidworkprofilepkcscertificateprofile.md
Title: "androidWorkProfilePkcsCertificateProfile resource type" description: "Android Work Profile PKCS certificate profile"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Androidworkprofilerequiredpasswordtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androidworkprofilerequiredpasswordtype.md
Title: "androidWorkProfileRequiredPasswordType enum type" description: "Android Work Profile required password type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Android Work Profile required password type.
|atLeastAlphabetic|5|At least alphabetic password required.| |atLeastAlphanumeric|6|At least alphanumeric password required.| |alphanumericWithSymbols|7|At least alphanumeric with symbols password required.|-----
v1.0 Intune Deviceconfig Androidworkprofilescepcertificateprofile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androidworkprofilescepcertificateprofile.md
Title: "androidWorkProfileScepCertificateProfile resource type" description: "Android Work Profile SCEP certificate profile"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Androidworkprofiletrustedrootcertificate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androidworkprofiletrustedrootcertificate.md
Title: "androidWorkProfileTrustedRootCertificate resource type" description: "Android Work Profile Trusted Root Certificate configuration profile"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"certFileName": "String" } ```-----
v1.0 Intune Deviceconfig Androidworkprofilevpnconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androidworkprofilevpnconfiguration.md
Title: "androidWorkProfileVpnConfiguration resource type" description: "By providing the configurations in this profile you can instruct the Android Work Profile device to connect to desired VPN endpoint. By specifying the authentication method and security types expected by VPN endpoint you can make the VPN connection seamless for end user."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Inherits from [deviceConfiguration](../resources/intune-shared-deviceconfigurati
|servers|[vpnServer](../resources/intune-deviceconfig-vpnserver.md) collection|List of VPN Servers on the network. Make sure end users can access these network locations. This collection can contain a maximum of 500 elements.| |fingerprint|String|Fingerprint is a string that will be used to verify the VPN server can be trusted, which is only applicable when connection type is Check Point Capsule VPN.| |customData|[keyValue](../resources/intune-deviceconfig-keyvalue.md) collection|Custom data when connection type is set to Citrix. This collection can contain a maximum of 25 elements.|
-|customKeyValueData|[keyValuePair](../resources/intune-shared-keyvaluepair.md) collection|Custom data when connection type is set to Citrix. This collection can contain a maximum of 25 elements.|
+|customKeyValueData|[keyValuePair](../resources/intune-deviceconfig-keyvaluepair.md) collection|Custom data when connection type is set to Citrix. This collection can contain a maximum of 25 elements.|
|authenticationMethod|[vpnAuthenticationMethod](../resources/intune-deviceconfig-vpnauthenticationmethod.md)|Authentication method. Possible values are: `certificate`, `usernameAndPassword`, `sharedSecret`, `derivedCredential`, `azureAD`.| |proxyServer|[vpnProxyServer](../resources/intune-deviceconfig-vpnproxyserver.md)|Proxy server.| |targetedPackageIds|String collection|Targeted App package IDs.|
Here is a JSON representation of the resource.
"microsoftTunnelSiteId": "String" } ```-----
v1.0 Intune Deviceconfig Androidworkprofilevpnconnectiontype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androidworkprofilevpnconnectiontype.md
Title: "androidWorkProfileVpnConnectionType enum type" description: "Android Work Profile VPN connection type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Android Work Profile VPN connection type.
|microsoftTunnel|7|Microsoft Tunnel.| |netMotionMobility|8|NetMotion Mobility.| |microsoftProtect|9|Microsoft Protect.|-----
v1.0 Intune Deviceconfig Androidworkprofilewificonfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-androidworkprofilewificonfiguration.md
Title: "androidWorkProfileWiFiConfiguration resource type" description: "By providing the configurations in this profile you can instruct the Android Work Profile device to connect to desired Wi-Fi endpoint. By specifying the authentication method and security types expected by Wi-Fi endpoint you can make the Wi-Fi connection seamless for end user. This profile provides limited and simpler security types than Enterprise Wi-Fi profile."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"wiFiSecurityType": "String" } ```-----
v1.0 Intune Deviceconfig Aospdeviceownercertificateprofilebase https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-aospdeviceownercertificateprofilebase.md
Title: "aospDeviceOwnerCertificateProfileBase resource type" description: "AOSP Device Owner certificate profile base."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"subjectAlternativeNameType": "String" } ```-----
v1.0 Intune Deviceconfig Aospdeviceownercompliancepolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-aospdeviceownercompliancepolicy.md
Title: "aospDeviceOwnerCompliancePolicy resource type" description: "This topic provides descriptions of the declared methods, properties and relationships exposed by the AndroidDeviceOwnerAOSPCompliancePolicy resource."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"storageRequireEncryption": true } ```-----
v1.0 Intune Deviceconfig Aospdeviceownerdeviceconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-aospdeviceownerdeviceconfiguration.md
Title: "aospDeviceOwnerDeviceConfiguration resource type" description: "This topic provides descriptions of the declared methods, properties and relationships exposed by the AndroidDeviceOwnerAOSPDeviceConfiguration resource."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"wifiBlockEditConfigurations": true } ```-----
v1.0 Intune Deviceconfig Aospdeviceownerenterprisewificonfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-aospdeviceownerenterprisewificonfiguration.md
Title: "aospDeviceOwnerEnterpriseWiFiConfiguration resource type" description: "By providing the configurations in this profile you can instruct the AOSP Device Owner device to connect to desired Wi-Fi endpoint. By specifying the authentication method and security types expected by Wi-Fi endpoint you can make the Wi-Fi connection seamless for end user."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"outerIdentityPrivacyTemporaryValue": "String" } ```-----
v1.0 Intune Deviceconfig Aospdeviceownerpkcscertificateprofile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-aospdeviceownerpkcscertificateprofile.md
Title: "aospDeviceOwnerPkcsCertificateProfile resource type" description: "AOSP Device Owner PKCS certificate profile"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Aospdeviceownerscepcertificateprofile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-aospdeviceownerscepcertificateprofile.md
Title: "aospDeviceOwnerScepCertificateProfile resource type" description: "AOSP Device Owner SCEP certificate profile"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Aospdeviceownertrustedrootcertificate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-aospdeviceownertrustedrootcertificate.md
Title: "aospDeviceOwnerTrustedRootCertificate resource type" description: "AOSP Device Owner Trusted Root Certificate configuration profile"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"certFileName": "String" } ```-----
v1.0 Intune Deviceconfig Aospdeviceownerwificonfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-aospdeviceownerwificonfiguration.md
Title: "aospDeviceOwnerWiFiConfiguration resource type" description: "By providing the configurations in this profile you can instruct the AOSP device to connect to desired Wi-Fi endpoint. By specifying the authentication method and security types expected by Wi-Fi endpoint you can make the Wi-Fi connection seamless for end user. This profile provides limited and simpler security types than Enterprise Wi-Fi profile."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"preSharedKeyIsSet": true } ```-----
v1.0 Intune Deviceconfig Aospdeviceownerwifisecuritytype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-aospdeviceownerwifisecuritytype.md
Title: "aospDeviceOwnerWiFiSecurityType enum type" description: "Wi-Fi Security Types for AOSP Device Owner."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Wi-Fi Security Types for AOSP Device Owner.
|wep|1|WEP Encryption.| |wpaPersonal|2|WPA-Personal/WPA2-Personal.| |wpaEnterprise|4|WPA-Enterprise/WPA2-Enterprise. Must use AOSPDeviceOwnerEnterpriseWifiConfiguration type to configure enterprise options.|-----
v1.0 Intune Deviceconfig Appinstallcontroltype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-appinstallcontroltype.md
Title: "appInstallControlType enum type" description: "App Install control Setting"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
App Install control Setting
|storeOnly|2|Allow apps from Store only| |recommendations|3|Show me app recommendations| |preferStore|4|Warn me before installing apps from outside the Store|-----
v1.0 Intune Deviceconfig Appleapplistitem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-appleapplistitem.md
Title: "appleAppListItem resource type" description: "Represents an app in the list of managed Apple applications"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"appId": "String" } ```-----
v1.0 Intune Deviceconfig Appledeploymentchannel https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-appledeploymentchannel.md
Title: "appleDeploymentChannel enum type" description: "Indicates the channel used to deploy the configuration profile. Available choices are DeviceChannel, UserChannel"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Indicates the channel used to deploy the configuration profile. Available choice
|:|:|:| |deviceChannel|0|Send payload down over Device Channel.| |userChannel|1|Send payload down over User Channel.|-----
v1.0 Intune Deviceconfig Appledevicefeaturesconfigurationbase https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-appledevicefeaturesconfigurationbase.md
Title: "appleDeviceFeaturesConfigurationBase resource type" description: "Apple device features configuration profile."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Appleexpeditedcheckinconfigurationbase https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-appleexpeditedcheckinconfigurationbase.md
Title: "appleExpeditedCheckinConfigurationBase resource type"
-description: "Experimental profile to increase the rate of device check-ins per day of iOS/macOS devices."
-
+description: "Experimental profile to increase the rate of device check-ins per day of iOS/macOS devices. This profile type is deprecated."
+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Namespace: microsoft.graph
> **Note:** The Microsoft Graph API for Intune requires an [active Intune license](https://go.microsoft.com/fwlink/?linkid=839381) for the tenant.
-Experimental profile to increase the rate of device check-ins per day of iOS/macOS devices.
+Experimental profile to increase the rate of device check-ins per day of iOS/macOS devices. This profile type is deprecated.
Inherits from [deviceConfiguration](../resources/intune-shared-deviceconfiguration.md)
Here is a JSON representation of the resource.
"enableExpeditedCheckin": true } ```-----
v1.0 Intune Deviceconfig Applesubjectnameformat https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-applesubjectnameformat.md
Title: "appleSubjectNameFormat enum type" description: "Subject Name Format Options for Apple devices."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Subject Name Format Options for Apple devices.
|commonNameIncludingEmail|3|Common Name Including Email.| |commonNameAsIMEI|5|Common Name As IMEI.| |commonNameAsSerialNumber|6|Common Name As Serial Number.|-----
v1.0 Intune Deviceconfig Applevpnalwaysonconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-applevpnalwaysonconfiguration.md
Title: "appleVpnAlwaysOnConfiguration resource type" description: "Always On VPN configuration for MacOS and iOS IKEv2"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"natKeepAliveOffloadEnable": true } ```-----
v1.0 Intune Deviceconfig Applevpnconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-applevpnconfiguration.md
Title: "appleVpnConfiguration resource type" description: "Apple VPN configuration profile."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Inherits from [deviceConfiguration](../resources/intune-shared-deviceconfigurati
|server|[vpnServer](../resources/intune-deviceconfig-vpnserver.md)|VPN Server on the network. Make sure end users can access this network location.| |identifier|String|Identifier provided by VPN vendor when connection type is set to Custom VPN. For example: Cisco AnyConnect uses an identifier of the form com.cisco.anyconnect.applevpn.plugin| |customData|[keyValue](../resources/intune-deviceconfig-keyvalue.md) collection|Custom data when connection type is set to Custom VPN. Use this field to enable functionality not supported by Intune, but available in your VPN solution. Contact your VPN vendor to learn how to add these key/value pairs. This collection can contain a maximum of 25 elements.|
-|customKeyValueData|[keyValuePair](../resources/intune-shared-keyvaluepair.md) collection|Custom data when connection type is set to Custom VPN. Use this field to enable functionality not supported by Intune, but available in your VPN solution. Contact your VPN vendor to learn how to add these key/value pairs. This collection can contain a maximum of 25 elements.|
+|customKeyValueData|[keyValuePair](../resources/intune-deviceconfig-keyvaluepair.md) collection|Custom data when connection type is set to Custom VPN. Use this field to enable functionality not supported by Intune, but available in your VPN solution. Contact your VPN vendor to learn how to add these key/value pairs. This collection can contain a maximum of 25 elements.|
|enableSplitTunneling|Boolean|Send all network traffic through VPN.| |authenticationMethod|[vpnAuthenticationMethod](../resources/intune-deviceconfig-vpnauthenticationmethod.md)|Authentication method for this VPN connection. Possible values are: `certificate`, `usernameAndPassword`, `sharedSecret`, `derivedCredential`, `azureAD`.| |enablePerApp|Boolean|Setting this to true creates Per-App VPN payload which can later be associated with Apps that can trigger this VPN conneciton on the end user's iOS device.|
Here is a JSON representation of the resource.
"optInToDeviceIdSharing": true } ```-----
v1.0 Intune Deviceconfig Applevpnconnectiontype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-applevpnconnectiontype.md
Title: "appleVpnConnectionType enum type" description: "Apple VPN connection type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Apple VPN connection type.
|microsoftTunnel|16|Microsoft Tunnel.| |netMotionMobility|17|NetMotion Mobility.| |microsoftProtect|18|Microsoft Protect.|-----
v1.0 Intune Deviceconfig Applicationguardblockclipboardsharingtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-applicationguardblockclipboardsharingtype.md
Title: "applicationGuardBlockClipboardSharingType enum type" description: "Possible values for applicationGuardBlockClipboardSharingType"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for applicationGuardBlockClipboardSharingType
|blockHostToContainer|2|Block clipboard to share data from Host to Container| |blockContainerToHost|3|Block clipboard to share data from Container to Host| |blockNone|4|Block clipboard to share data neither from Host to Container nor from Container to Host|-----
v1.0 Intune Deviceconfig Applicationguardblockfiletransfertype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-applicationguardblockfiletransfertype.md
Title: "applicationGuardBlockFileTransferType enum type" description: "Possible values for applicationGuardBlockFileTransfer"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for applicationGuardBlockFileTransfer
|blockImageFile|2|Block clipboard to transfer Image file| |blockNone|3|Neither of text file or image file is blocked from transferring| |blockTextFile|4|Block clipboard to transfer Text file|-----
v1.0 Intune Deviceconfig Applicationguardenabledoptions https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-applicationguardenabledoptions.md
Title: "applicationGuardEnabledOptions enum type" description: "Possible values for ApplicationGuardEnabledOptions"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for ApplicationGuardEnabledOptions
|enabledForEdge|1|Enabled For Edge| |enabledForOffice|2|Enabled For Office| |enabledForEdgeAndOffice|3|Enabled For Edge And Office|-----
v1.0 Intune Deviceconfig Applistitem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-applistitem.md
Title: "appListItem resource type" description: "Represents an app in the list of managed applications"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"appId": "String" } ```-----
v1.0 Intune Deviceconfig Applisttype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-applisttype.md
Title: "appListType enum type" description: "Possible values of the compliance app list."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values of the compliance app list.
|none|0|Default value, no intent.| |appsInListCompliant|1|The list represents the apps that will be considered compliant (only apps on the list are compliant).| |appsNotInListCompliant|2|The list represents the apps that will be considered non compliant (all apps are compliant except apps on the list).|-----
v1.0 Intune Deviceconfig Applockerapplicationcontroltype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-applockerapplicationcontroltype.md
Title: "appLockerApplicationControlType enum type" description: "Possible values of AppLocker Application Control Types"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values of AppLocker Application Control Types
|auditComponentsAndStoreApps|2|Audit Windows component and store apps.| |enforceComponentsStoreAppsAndSmartlocker|3|Enforce Windows components, store apps and smart locker.| |auditComponentsStoreAppsAndSmartlocker|4|Audit Windows components, store apps and smart lockerΓÇï.|-----
v1.0 Intune Deviceconfig Authenticationtransformconstant https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-authenticationtransformconstant.md
Title: "authenticationTransformConstant enum type" description: "Authentication transform values for Windows10 VPN policies with IKEv2 connection type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Authentication transform values for Windows10 VPN policies with IKEv2 connection
|aes128Gcm|3|GCMAES128| |aes192Gcm|4|GCMAES192| |aes256Gcm|5|GCMAES256|-----
v1.0 Intune Deviceconfig Automaticupdatemode https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-automaticupdatemode.md
Title: "automaticUpdateMode enum type" description: "Possible values for automatic update mode."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for automatic update mode.
|autoInstallAndRebootAtScheduledTime|4|Auto-install and reboot at scheduled time.| |autoInstallAndRebootWithoutEndUserControl|5|Auto-install and restart without end-user control| |windowsDefault|6|Reset to Windows default value.|-----
v1.0 Intune Deviceconfig Autorestartnotificationdismissalmethod https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-autorestartnotificationdismissalmethod.md
Title: "autoRestartNotificationDismissalMethod enum type" description: "Auto restart required notification dismissal method"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Auto restart required notification dismissal method
|automatic|1|Auto dismissal Indicates that the notification is automatically dismissed without user intervention| |user|2|User dismissal. Allows the user to dismiss the notification| |unknownFutureValue|3|Evolvable enum member|-----
v1.0 Intune Deviceconfig Bitlockerencryptionmethod https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-bitlockerencryptionmethod.md
Title: "bitLockerEncryptionMethod enum type" description: "BitLockerEncryptionMethod types"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
BitLockerEncryptionMethod types
|aesCbc256|4|AES-CBC 256-bit.| |xtsAes128|6|XTS-AES 128-bit.| |xtsAes256|7|XTS-AES 256-bit.|-----
v1.0 Intune Deviceconfig Bitlockerfixeddrivepolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-bitlockerfixeddrivepolicy.md
Title: "bitLockerFixedDrivePolicy resource type" description: "BitLocker Fixed Drive Policies."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Deviceconfig Bitlockerrecoveryinformationtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-bitlockerrecoveryinformationtype.md
Title: "bitLockerRecoveryInformationType enum type" description: "BitLockerRecoveryInformationType types"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
BitLockerRecoveryInformationType types
|:|:|:| |passwordAndKey|1|Store recovery passwords and key packages.| |passwordOnly|2|Store recovery passwords only.|-----
v1.0 Intune Deviceconfig Bitlockerrecoveryoptions https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-bitlockerrecoveryoptions.md
Title: "bitLockerRecoveryOptions resource type" description: "BitLocker Recovery Options."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"enableBitLockerAfterRecoveryInformationToStore": true } ```-----
v1.0 Intune Deviceconfig Bitlockerrecoverypasswordrotationtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-bitlockerrecoverypasswordrotationtype.md
Title: "bitLockerRecoveryPasswordRotationType enum type" description: "BitLocker recovery password rotation type"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
BitLocker recovery password rotation type
|disabled|1|Recovery password rotation off| |enabledForAzureAd|2|Recovery password rotation on for Azure AD joined devices| |enabledForAzureAdAndHybrid|3|Recovery password rotation on for both Azure AD joined and hybrid joined devices|-----
v1.0 Intune Deviceconfig Bitlockerremovabledrivepolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-bitlockerremovabledrivepolicy.md
Title: "bitLockerRemovableDrivePolicy resource type" description: "BitLocker Removable Drive Policies."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"blockCrossOrganizationWriteAccess": true } ```-----
v1.0 Intune Deviceconfig Bitlockersystemdrivepolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-bitlockersystemdrivepolicy.md
Title: "bitLockerSystemDrivePolicy resource type" description: "BitLocker Encryption Base Policies."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"prebootRecoveryUrl": "String" } ```-----
v1.0 Intune Deviceconfig Browsersyncsetting https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-browsersyncsetting.md
Title: "browserSyncSetting enum type" description: "Allow(Not Configured) or prevent(Block) the syncing of Microsoft Edge Browser settings. Option to prevent syncing across devices, but allow user override."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Allow(Not Configured) or prevent(Block) the syncing of Microsoft Edge Browser se
|notConfigured|0|Default ΓÇô Allow syncing of browser settings across devices.| |blockedWithUserOverride|1|Prevent syncing of browser settings across user devices, allow user override of setting.| |blocked|2|Absolutely prevent syncing of browser settings across user devices.|-----
v1.0 Intune Deviceconfig Carttoclassassociation https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-carttoclassassociation.md
Title: "cartToClassAssociation resource type" description: "CartToClassAssociation for associating device carts with classrooms."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Certificateissuancestates https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-certificateissuancestates.md
Title: "certificateIssuanceStates enum type" description: "Certificate Issuance State Options."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Certificate Issuance State Options.
|deleted|20|Not yet documented| |renewalRequested|21|Not yet documented| |requested|22|Not yet documented|-----
v1.0 Intune Deviceconfig Certificaterevocationstatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-certificaterevocationstatus.md
Title: "certificateRevocationStatus enum type" description: "Certificate Revocation Status."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Certificate Revocation Status.
|issued|2|Revocation command issued.| |failed|3|Revocation failed.| |revoked|4|Revoked.|-----
v1.0 Intune Deviceconfig Changeuefisettingspermission https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-changeuefisettingspermission.md
Title: "changeUefiSettingsPermission enum type" description: "Defines the permission level granted to users to enable them change Uefi settings"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Defines the permission level granted to users to enable them change Uefi setting
|:|:|:| |notConfiguredOnly|0|Device default value, no intent.| |none|1|Prevent change of UEFI setting permission|-----
v1.0 Intune Deviceconfig Code https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-code.md
Title: "code enum type" description: "Error code for rule validation."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Error code for rule validation.
|unrecognizedLocale|29|Unrecognized locale error.| |unknown|30|Unknown error.| |remediationStringsMissing|31|Remediation strings missing error.|-----
v1.0 Intune Deviceconfig Configurationusage https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-configurationusage.md
Title: "configurationUsage enum type" description: "Possible values of the ConfigurationUsage list."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values of the ConfigurationUsage list.
|required|1|Required.| |allowed|2|Optional.| |notConfigured|3|Not Configured.|-----
v1.0 Intune Deviceconfig Credentialsinglesignonextension https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-credentialsinglesignonextension.md
Title: "credentialSingleSignOnExtension resource type" description: "Represents a Credential-type Single Sign-On extension profile."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Cryptographysuite https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-cryptographysuite.md
Title: "cryptographySuite resource type" description: "VPN Security Association Parameters"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"pfsGroup": "String" } ```-----
v1.0 Intune Deviceconfig Customsubjectalternativename https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-customsubjectalternativename.md
Title: "customSubjectAlternativeName resource type" description: "Custom Subject Alternative Name definition"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"name": "String" } ```-----
v1.0 Intune Deviceconfig Customupdatetimewindow https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-customupdatetimewindow.md
Title: "customUpdateTimeWindow resource type" description: "Custom update time window"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"endTime": "String (time of day)" } ```-----
v1.0 Intune Deviceconfig Datatype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-datatype.md
Title: "dataType enum type" description: "Data types for rules."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Data types for rules.
|stringArray|12|String array data type.| |dateTimeArray|13|DateTime array data type.| |versionArray|14|Version array data type.|-----
v1.0 Intune Deviceconfig Dayofweek https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-dayofweek.md
Title: "dayOfWeek enum type" description: "Possible values for a weekday"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for a weekday
|thursday|4|Thursday.| |friday|5|Friday.| |saturday|6|Saturday.|-----
v1.0 Intune Deviceconfig Defaultdevicecompliancepolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-defaultdevicecompliancepolicy.md
Title: "defaultDeviceCompliancePolicy resource type" description: "Default device compliance policy rules that are enforced account wide."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"version": 1024 } ```-----
v1.0 Intune Deviceconfig Defenderattacksurfacetype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-defenderattacksurfacetype.md
Title: "defenderAttackSurfaceType enum type" description: "Possible values of Defender Attack Surface Reduction Rules"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values of Defender Attack Surface Reduction Rules
|auditMode|2|Evaluate how the ASR rule would impact your organization if enabled. Does not change functionality but generate logs.| |warn|6|Warning message to end user with ability to bypass block from attack surface reduction rule.| |disable|99|Disable the attack surface reduction rule|-----
v1.0 Intune Deviceconfig Defendercloudblockleveltype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-defendercloudblockleveltype.md
Title: "defenderCloudBlockLevelType enum type" description: "Possible values of Cloud Block Level"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values of Cloud Block Level
|high|1|High applies a strong level of detection.| |highPlus|2|High + uses the High level and applies addition protection measures| |zeroTolerance|3|Zero tolerance blocks all unknown executables|-----
v1.0 Intune Deviceconfig Defenderdetectedmalwareactions https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-defenderdetectedmalwareactions.md
Title: "defenderDetectedMalwareActions resource type" description: "Specify DefenderΓÇÖs actions to take on detected Malware per threat level."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"severeSeverity": "String" } ```-----
v1.0 Intune Deviceconfig Defendermonitorfileactivity https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-defendermonitorfileactivity.md
Title: "defenderMonitorFileActivity enum type" description: "Possible values for monitoring file activity."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for monitoring file activity.
|monitorAllFiles|2|Monitor all files.| |monitorIncomingFilesOnly|3| Monitor incoming files only.| |monitorOutgoingFilesOnly|4|Monitor outgoing files only.|-----
v1.0 Intune Deviceconfig Defenderpotentiallyunwantedappaction https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-defenderpotentiallyunwantedappaction.md
Title: "defenderPotentiallyUnwantedAppAction enum type" description: "DefenderΓÇÖs action to take on detected Potentially Unwanted Application (PUA)."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
DefenderΓÇÖs action to take on detected Potentially Unwanted Application (PUA).
|deviceDefault|0|PUA Protection is off. Defender will not protect against potentially unwanted applications.| |block|1|PUA Protection is on. Detected items are blocked. They will show in history along with other threats.| |audit|2|Audit mode. Defender will detect potentially unwanted applications, but take no actions. You can review information about applications Defender would have taken action against by searching for events created by Defender in the Event Viewer.|-----
v1.0 Intune Deviceconfig Defenderpromptforsamplesubmission https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-defenderpromptforsamplesubmission.md
Title: "defenderPromptForSampleSubmission enum type" description: "Possible values for prompting user for samples submission."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for prompting user for samples submission.
|promptBeforeSendingPersonalData|2|Send safe samples automatically.| |neverSendData|3|Never send data.| |sendAllDataWithoutPrompting|4|Send all data without prompting.|-----
v1.0 Intune Deviceconfig Defenderprotectiontype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-defenderprotectiontype.md
Title: "defenderProtectionType enum type" description: "Possible values of Defender PUA Protection"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values of Defender PUA Protection
|auditMode|2|Allow functionality but generate logs.| |warn|6|Warning message to end user with ability to bypass block from attack surface reduction rule.| |notConfigured|99|Not configured.|-----
v1.0 Intune Deviceconfig Defenderrealtimescandirection https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-defenderrealtimescandirection.md
Title: "defenderRealtimeScanDirection enum type" description: "Possible values for monitoring file activity."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for monitoring file activity.
|monitorAllFiles|0|0 (default) ΓÇô Monitor all files(bi-directional)| |monitorIncomingFilesOnly|1|Monitor incoming files only.| |monitorOutgoingFilesOnly|2|Monitor outgoing files only.|-----
v1.0 Intune Deviceconfig Defenderscantype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-defenderscantype.md
Title: "defenderScanType enum type" description: "Possible values for system scan type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for system scan type.
|disabled|1|System scan disabled.| |quick|2|Quick system scan.| |full|3|Full system scan.|-----
v1.0 Intune Deviceconfig Defendersecuritycenteritcontactdisplaytype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-defendersecuritycenteritcontactdisplaytype.md
Title: "defenderSecurityCenterITContactDisplayType enum type" description: "Possible values for defenderSecurityCenterITContactDisplay"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for defenderSecurityCenterITContactDisplay
|displayInAppAndInNotifications|1|Display in app and in notifications| |displayOnlyInApp|2|Display only in app| |displayOnlyInNotifications|3|Display only in notifications|-----
v1.0 Intune Deviceconfig Defendersecuritycenternotificationsfromapptype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-defendersecuritycenternotificationsfromapptype.md
Title: "defenderSecurityCenterNotificationsFromAppType enum type" description: "Possible values for defenderSecurityCenterNotificationsFromApp"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for defenderSecurityCenterNotificationsFromApp
|notConfigured|0|Not Configured| |blockNoncriticalNotifications|1|Block non-critical notifications| |blockAllNotifications|2|Block all notifications|-----
v1.0 Intune Deviceconfig Defendersubmitsamplesconsenttype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-defendersubmitsamplesconsenttype.md
Title: "defenderSubmitSamplesConsentType enum type" description: "Possible values for DefenderSubmitSamplesConsentType"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for DefenderSubmitSamplesConsentType
|alwaysPrompt|1|Always prompt| |neverSend|2|Never send| |sendAllSamplesAutomatically|3|Send all samples automatically|-----
v1.0 Intune Deviceconfig Defenderthreataction https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-defenderthreataction.md
Title: "defenderThreatAction enum type" description: "DefenderΓÇÖs default action to take on detected Malware threats."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
DefenderΓÇÖs default action to take on detected Malware threats.
|allow|4|Allow the detected threat.| |userDefined|5|Allow the user to determine the action to take with the detected threat.| |block|6|Block the detected threat.|-----
v1.0 Intune Deviceconfig Deliveryoptimizationbandwidth https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-deliveryoptimizationbandwidth.md
Title: "deliveryOptimizationBandwidth resource type" description: "Bandwidth restriction types"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"@odata.type": "#microsoft.graph.deliveryOptimizationBandwidth" } ```-----
v1.0 Intune Deviceconfig Deliveryoptimizationbandwidthabsolute https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-deliveryoptimizationbandwidthabsolute.md
Title: "deliveryOptimizationBandwidthAbsolute resource type" description: "Bandwidth limits in kilobytes per second."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"maximumUploadBandwidthInKilobytesPerSecond": 1024 } ```-----
v1.0 Intune Deviceconfig Deliveryoptimizationbandwidthbusinesshourslimit https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-deliveryoptimizationbandwidthbusinesshourslimit.md
Title: "deliveryOptimizationBandwidthBusinessHoursLimit resource type" description: "Bandwidth business hours and percentages type"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"bandwidthPercentageOutsideBusinessHours": 1024 } ```-----
v1.0 Intune Deviceconfig Deliveryoptimizationbandwidthhourswithpercentage https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-deliveryoptimizationbandwidthhourswithpercentage.md
Title: "deliveryOptimizationBandwidthHoursWithPercentage resource type" description: "Bandwidth limit as a percentage with business hours."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Deviceconfig Deliveryoptimizationbandwidthpercentage https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-deliveryoptimizationbandwidthpercentage.md
Title: "deliveryOptimizationBandwidthPercentage resource type" description: "Bandwidth limits specified as a percentage."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"maximumForegroundBandwidthPercentage": 1024 } ```-----
v1.0 Intune Deviceconfig Deliveryoptimizationgroupidcustom https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-deliveryoptimizationgroupidcustom.md
Title: "deliveryOptimizationGroupIdCustom resource type" description: "Custom group id type"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"groupIdCustom": "String" } ```-----
v1.0 Intune Deviceconfig Deliveryoptimizationgroupidoptionstype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-deliveryoptimizationgroupidoptionstype.md
Title: "deliveryOptimizationGroupIdOptionsType enum type" description: "Possible values for the DeliveryOptimizationGroupIdOptionsType setting."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for the DeliveryOptimizationGroupIdOptionsType setting.
|authenticatedDomainSid|2|Authenticated domain SID.| |dhcpUserOption|3|DHCP user option.| |dnsSuffix|4|DNS suffix.|-----
v1.0 Intune Deviceconfig Deliveryoptimizationgroupidsource https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-deliveryoptimizationgroupidsource.md
Title: "deliveryOptimizationGroupIdSource resource type" description: "GroupId Support Types"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"@odata.type": "#microsoft.graph.deliveryOptimizationGroupIdSource" } ```-----
v1.0 Intune Deviceconfig Deliveryoptimizationgroupidsourceoptions https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-deliveryoptimizationgroupidsourceoptions.md
Title: "deliveryOptimizationGroupIdSourceOptions resource type" description: "Group id options type"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"groupIdSourceOption": "String" } ```-----
v1.0 Intune Deviceconfig Deliveryoptimizationmaxcachesize https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-deliveryoptimizationmaxcachesize.md
Title: "deliveryOptimizationMaxCacheSize resource type" description: "Delivery Optimization max cache size types."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"@odata.type": "#microsoft.graph.deliveryOptimizationMaxCacheSize" } ```-----
v1.0 Intune Deviceconfig Deliveryoptimizationmaxcachesizeabsolute https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-deliveryoptimizationmaxcachesizeabsolute.md
Title: "deliveryOptimizationMaxCacheSizeAbsolute resource type" description: "Delivery Optimization max cache size absolute type."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"maximumCacheSizeInGigabytes": 1024 } ```-----
v1.0 Intune Deviceconfig Deliveryoptimizationmaxcachesizepercentage https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-deliveryoptimizationmaxcachesizepercentage.md
Title: "deliveryOptimizationMaxCacheSizePercentage resource type" description: "Delivery Optimization Max cache size percentage types."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"maximumCacheSizePercentage": 1024 } ```-----
v1.0 Intune Deviceconfig Deliveryoptimizationrestrictpeerselectionbyoptions https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-deliveryoptimizationrestrictpeerselectionbyoptions.md
Title: "deliveryOptimizationRestrictPeerSelectionByOptions enum type" description: "Values to restrict peer selection by."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Values to restrict peer selection by.
|:|:|:| |notConfigured|0|Not configured.| |subnetMask|1|Subnet mask.|-----
v1.0 Intune Deviceconfig Derivedcredentialprovidertype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-derivedcredentialprovidertype.md
Title: "derivedCredentialProviderType enum type" description: "Provider type for Derived Credentials."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Provider type for Derived Credentials.
|purebred|2|Purebred - Defense Information Systems Agency.| |xTec|3|Xtec - AuthentX.| |intercede|4|Intercede.|-----
v1.0 Intune Deviceconfig Devicecomplianceactionitem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-devicecomplianceactionitem.md
Title: "deviceComplianceActionItem resource type" description: "Scheduled Action Configuration"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Devicecomplianceactiontype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-devicecomplianceactiontype.md
Title: "deviceComplianceActionType enum type" description: "Scheduled Action Type Enum"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Scheduled Action Type Enum
|removeResourceAccessProfiles|5|Remove Resource Access Profiles from the device| |pushNotification|9|Send push notification to device| |remoteLock|10|Remotely lock the device|-----
v1.0 Intune Deviceconfig Devicecompliancedeviceoverview https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-devicecompliancedeviceoverview.md
Title: "deviceComplianceDeviceOverview resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"configurationVersion": 1024 } ```-----
v1.0 Intune Deviceconfig Devicecompliancedevicestatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-devicecompliancedevicestatus.md
Title: "deviceComplianceDeviceStatus resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"userPrincipalName": "String" } ```-----
v1.0 Intune Deviceconfig Devicecompliancepolicyassignment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-devicecompliancepolicyassignment.md
Title: "deviceCompliancePolicyAssignment resource type" description: "Device compliance policy assignment."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"sourceId": "String" } ```-----
v1.0 Intune Deviceconfig Devicecompliancepolicydevicestatesummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-devicecompliancepolicydevicestatesummary.md
Title: "deviceCompliancePolicyDeviceStateSummary resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"conflictDeviceCount": 1024 } ```-----
v1.0 Intune Deviceconfig Devicecompliancepolicyscript https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-devicecompliancepolicyscript.md
Title: "deviceCompliancePolicyScript resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"rulesContent": "binary" } ```-----
v1.0 Intune Deviceconfig Devicecompliancepolicysettingstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-devicecompliancepolicysettingstate.md
Title: "deviceCompliancePolicySettingState resource type" description: "Device Compilance Policy Setting State for a given device."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"settingInstanceId": "String" } ```-----
v1.0 Intune Deviceconfig Devicecompliancepolicysettingstatesummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-devicecompliancepolicysettingstatesummary.md
Title: "deviceCompliancePolicySettingStateSummary resource type" description: "Device Compilance Policy Setting State summary across the account."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"conflictDeviceCount": 1024 } ```-----
v1.0 Intune Deviceconfig Devicecompliancescheduledactionforrule https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-devicecompliancescheduledactionforrule.md
Title: "deviceComplianceScheduledActionForRule resource type" description: "Scheduled Action for Rule"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"ruleName": "String" } ```-----
v1.0 Intune Deviceconfig Devicecompliancescripterror https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-devicecompliancescripterror.md
Title: "deviceComplianceScriptError resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"message": "String" } ```-----
v1.0 Intune Deviceconfig Devicecompliancescriptrule https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-devicecompliancescriptrule.md
Title: "deviceComplianceScriptRule resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"operand": "String" } ```-----
v1.0 Intune Deviceconfig Devicecompliancescriptruledatatype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-devicecompliancescriptruledatatype.md
Title: "deviceComplianceScriptRuleDataType enum type" description: "Data types for rules."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Data types for rules.
|stringArray|12|String array data type.| |dateTimeArray|13|DateTime array data type.| |versionArray|14|Version array data type.|-----
v1.0 Intune Deviceconfig Devicecompliancescriptruleerror https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-devicecompliancescriptruleerror.md
Title: "deviceComplianceScriptRuleError resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"settingName": "String" } ```-----
v1.0 Intune Deviceconfig Devicecompliancescriptrulesvalidationerror https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-devicecompliancescriptrulesvalidationerror.md
Title: "deviceComplianceScriptRulesValidationError enum type" description: "Error code for rule validation."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Error code for rule validation.
|unrecognizedLocale|29|Unrecognized locale error.| |unknown|30|Unknown error.| |remediationStringsMissing|31|Remediation strings missing error.|-----
v1.0 Intune Deviceconfig Devicecompliancescriptruloperator https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-devicecompliancescriptruloperator.md
Title: "deviceComplianceScriptRulOperator enum type" description: "Operator for rules."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Operator for rules.
|orderedSetEquals|22|OrderedSetEquals operator.| |subsetOf|23|SubsetOf operator.| |excludesAll|24|ExcludesAll operator.|-----
v1.0 Intune Deviceconfig Devicecompliancescriptvalidationresult https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-devicecompliancescriptvalidationresult.md
Title: "deviceComplianceScriptValidationResult resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Devicecompliancesettingstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-devicecompliancesettingstate.md
Title: "deviceComplianceSettingState resource type" description: "Device compliance setting State for a given device."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Device compliance setting State for a given device.
|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|
Here is a JSON representation of the resource.
"complianceGracePeriodExpirationDateTime": "String (timestamp)" } ```-----
v1.0 Intune Deviceconfig Devicecomplianceuseroverview https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-devicecomplianceuseroverview.md
Title: "deviceComplianceUserOverview resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"configurationVersion": 1024 } ```-----
v1.0 Intune Deviceconfig Devicecomplianceuserstatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-devicecomplianceuserstatus.md
Title: "deviceComplianceUserStatus resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"userPrincipalName": "String" } ```-----
v1.0 Intune Deviceconfig Deviceconfigassignmentintent https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-deviceconfigassignmentintent.md
Title: "deviceConfigAssignmentIntent enum type" description: "The administrator intent for the assignment of the profile."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
The administrator intent for the assignment of the profile.
|:|:|:| |apply|0|Ensure that the configuration profile is applied to the devices in the assignment.| |remove|1|Ensure that the configuration profile is removed from devices that have previously installed the configuration profile.|-----
v1.0 Intune Deviceconfig Deviceconfigurationassignment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-deviceconfigurationassignment.md
Title: "deviceConfigurationAssignment resource type" description: "The device configuration assignment entity assigns an AAD group to a specific device configuration."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"intent": "String" } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationconflictsummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-deviceconfigurationconflictsummary.md
Title: "deviceConfigurationConflictSummary resource type" description: "Conflict summary for a set of device configuration policies."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"deviceCheckinsImpacted": 1024 } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationdeviceoverview https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-deviceconfigurationdeviceoverview.md
Title: "deviceConfigurationDeviceOverview resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"configurationVersion": 1024 } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationdevicestatesummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-deviceconfigurationdevicestatesummary.md
Title: "deviceConfigurationDeviceStateSummary resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"conflictDeviceCount": 1024 } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationdevicestatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-deviceconfigurationdevicestatus.md
Title: "deviceConfigurationDeviceStatus resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"userPrincipalName": "String" } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationgroupassignment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-deviceconfigurationgroupassignment.md
Title: "deviceConfigurationGroupAssignment resource type" description: "Device configuration group assignment."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"excludeGroup": true } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationsettingstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-deviceconfigurationsettingstate.md
Title: "deviceConfigurationSettingState resource type" description: "Device Configuration Setting State for a given device."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"settingInstanceId": "String" } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationtargeteduseranddevice https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-deviceconfigurationtargeteduseranddevice.md
Title: "deviceConfigurationTargetedUserAndDevice resource type" description: "Conflict summary for a set of device configuration policies."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"lastCheckinDateTime": "String (timestamp)" } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationuseroverview https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-deviceconfigurationuseroverview.md
Title: "deviceConfigurationUserOverview resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"configurationVersion": 1024 } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationuserstatesummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-deviceconfigurationuserstatesummary.md
Title: "deviceConfigurationUserStateSummary resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"conflictUserCount": 1024 } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationuserstatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-deviceconfigurationuserstatus.md
Title: "deviceConfigurationUserStatus resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"userPrincipalName": "String" } ```-----
v1.0 Intune Deviceconfig Deviceguardlocalsystemauthoritycredentialguardtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-deviceguardlocalsystemauthoritycredentialguardtype.md
Title: "deviceGuardLocalSystemAuthorityCredentialGuardType enum type" description: "Possible values of Credential Guard settings."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values of Credential Guard settings.
|enableWithUEFILock|1|Turns on Credential Guard with UEFI lock.| |enableWithoutUEFILock|2|Turns on Credential Guard without UEFI lock.| |disable|3|Disables Credential Guard. This is the default OS value.|-----
v1.0 Intune Deviceconfig Devicemanagementapplicabilityruledevicemode https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-devicemanagementapplicabilityruledevicemode.md
Title: "deviceManagementApplicabilityRuleDeviceMode resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"ruleType": "String" } ```-----
v1.0 Intune Deviceconfig Devicemanagementapplicabilityruleosedition https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-devicemanagementapplicabilityruleosedition.md
Title: "deviceManagementApplicabilityRuleOsEdition resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"ruleType": "String" } ```-----
v1.0 Intune Deviceconfig Devicemanagementapplicabilityruleosversion https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-devicemanagementapplicabilityruleosversion.md
Title: "deviceManagementApplicabilityRuleOsVersion resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"ruleType": "String" } ```-----
v1.0 Intune Deviceconfig Devicemanagementapplicabilityruletype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-devicemanagementapplicabilityruletype.md
Title: "deviceManagementApplicabilityRuleType enum type" description: "Supported Applicability rule types for Device Configuration"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Supported Applicability rule types for Device Configuration
|:|:|:| |include|0|Include| |exclude|1|Exclude|-----
v1.0 Intune Deviceconfig Devicemanagementcertificationauthority https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-devicemanagementcertificationauthority.md
Title: "deviceManagementCertificationAuthority enum type" description: "Device Management Certification Authority Types."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Device Management Certification Authority Types.
|notConfigured|0|Not configured.| |microsoft|1|Microsoft Certification Authority type.| |digiCert|2|DigiCert Certification Authority type.|-----
v1.0 Intune Deviceconfig Devicemanagementsettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-devicemanagementsettings.md
Title: "deviceManagementSettings resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"enableDeviceGroupMembershipReport": true } ```-----
v1.0 Intune Deviceconfig Devicemanagementuserrightslocaluserorgroup https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-devicemanagementuserrightslocaluserorgroup.md
Title: "deviceManagementUserRightsLocalUserOrGroup resource type" description: "Represents information for a local user or group used for user rights setting."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"securityIdentifier": "String" } ```-----
v1.0 Intune Deviceconfig Devicemanagementuserrightssetting https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-devicemanagementuserrightssetting.md
Title: "deviceManagementUserRightsSetting resource type" description: "Represents a user rights setting."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Deviceplatformtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-deviceplatformtype.md
Title: "devicePlatformType enum type" description: "Supported platform types."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Supported platform types.
|androidWorkProfile|7|Android Work Profile.| |unknown|8|Unknown.| |androidAOSP|9|Android AOSP.|-----
v1.0 Intune Deviceconfig Devicethreatprotectionlevel https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-devicethreatprotectionlevel.md
Title: "deviceThreatProtectionLevel enum type" description: "Device threat protection levels for the Device Threat Protection API."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Device threat protection levels for the Device Threat Protection API.
|medium|3|Device Threat Protection level requirement: Medium. Medium represents a severity of threat that poses moderate risk to the device or device data.| |high|4|Device Threat Protection level requirement: High. High represents a severity of threat that poses severe risk to the device or device data.| |notSet|10|Device Threat Protection level requirement: Not Set. Not set represents that there is no requirement for the device to meet a Threat Protection level.|-----
v1.0 Intune Deviceconfig Devicetype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-devicetype.md
Title: "deviceType enum type" description: "Device type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Device type.
|palm|101|Palm.| |unknown|255|Represents that the device type is unknown.| |cloudPC|257|Cloud PC device.|----
v1.0 Intune Deviceconfig Devicetypes https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-devicetypes.md
Title: "deviceTypes enum type" description: "Device type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Device type.
|blackberry|100|Blackberry.| |palm|101|Palm.| |unknown|255|Represents that the device type is unknown.|-----
v1.0 Intune Deviceconfig Diagnosticdatasubmissionmode https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-diagnosticdatasubmissionmode.md
Title: "diagnosticDataSubmissionMode enum type" description: "Allow the device to send diagnostic and usage telemetry data, such as Watson."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Allow the device to send diagnostic and usage telemetry data, such as Watson.
|basic|2|Sends basic telemetry data.| |enhanced|3|Sends enhanced telemetry data including usage and insights data.| |full|4|Sends full telemetry data including diagnostic data, such as system state.|-----
v1.0 Intune Deviceconfig Diffiehellmangroup https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-diffiehellmangroup.md
Title: "diffieHellmanGroup enum type" description: "Diffie Hellman Group values for Windows10 VPN policies with IKEv2 connection type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Diffie Hellman Group values for Windows10 VPN policies with IKEv2 connection typ
|ecp256|3|ECP256| |ecp384|4|ECP384| |group24|5|Group24|-----
v1.0 Intune Deviceconfig Dmaguarddeviceenumerationpolicytype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-dmaguarddeviceenumerationpolicytype.md
Title: "dmaGuardDeviceEnumerationPolicyType enum type" description: "Possible values of the DmaGuardDeviceEnumerationPolicy."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values of the DmaGuardDeviceEnumerationPolicy.
|deviceDefault|0|Default value. Devices with DMA remapping incompatible drivers will only be enumerated after the user unlocks the screen.| |blockAll|1|Devices with DMA remapping incompatible drivers will never be allowed to start and perform DMA at any time.| |allowAll|2|All external DMA capable PCIe devices will be enumerated at any time.|-----
v1.0 Intune Deviceconfig Domainnamesource https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-domainnamesource.md
Title: "domainNameSource enum type" description: "Domainname source."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Domainname source.
|:|:|:| |fullDomainName|0|Full domain name.| |netBiosDomainName|1|net bios domain name.|-----
v1.0 Intune Deviceconfig Eapfastconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-eapfastconfiguration.md
Title: "eapFastConfiguration enum type" description: "Available settings for EAP-FAST Configuration."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Available settings for EAP-FAST Configuration.
|useProtectedAccessCredential|1|Use Protected Access Credential (PAC).| |useProtectedAccessCredentialAndProvision|2|Use Protected Access Credential (PAC) and Provision PAC.| |useProtectedAccessCredentialAndProvisionAnonymously|3|Use Protected Access Credential (PAC), Provision PAC, and do so anonymously.|-----
v1.0 Intune Deviceconfig Eaptype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-eaptype.md
Title: "eapType enum type" description: "Extensible Authentication Protocol (EAP) configuration types."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Extensible Authentication Protocol (EAP) configuration types.
|peap|25|Protected Extensible Authentication Protocol (PEAP).| |eapFast|43|EAP-Flexible Authentication via Secure Tunneling (EAP-FAST).| |teap|55|Tunnel Extensible Authentication Protocol (TEAP).|-----
v1.0 Intune Deviceconfig Easauthenticationmethod https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-easauthenticationmethod.md
Title: "easAuthenticationMethod enum type" description: "Exchange Active Sync authentication method."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Exchange Active Sync authentication method.
|usernameAndPassword|0|Authenticate with a username and password.| |certificate|1|Authenticate with a certificate.| |derivedCredential|2|Authenticate with derived credential.|-----
v1.0 Intune Deviceconfig Easemailprofileconfigurationbase https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-easemailprofileconfigurationbase.md
Title: "easEmailProfileConfigurationBase resource type" description: "Apple device features configuration profile."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"customDomainName": "String" } ```-----
v1.0 Intune Deviceconfig Easservices https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-easservices.md
Title: "easServices enum type" description: "Exchange Active Sync services."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Exchange Active Sync services.
|email|4|Enables synchronization of email.| |notes|8|Enables synchronization of notes.| |reminders|16|Enables synchronization of reminders.|-----
v1.0 Intune Deviceconfig Edgecookiepolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-edgecookiepolicy.md
Title: "edgeCookiePolicy enum type" description: "Possible values to specify which cookies are allowed in Microsoft Edge."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values to specify which cookies are allowed in Microsoft Edge.
|allow|1|Allow.| |blockThirdParty|2|Block only third party cookies.| |blockAll|3|Block all cookies.|-----
v1.0 Intune Deviceconfig Edgehomebuttonconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-edgehomebuttonconfiguration.md
Title: "edgeHomeButtonConfiguration resource type" description: "The home button configuration base class used to identify the available options"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"@odata.type": "#microsoft.graph.edgeHomeButtonConfiguration" } ```-----
v1.0 Intune Deviceconfig Edgehomebuttonhidden https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-edgehomebuttonhidden.md
Title: "edgeHomeButtonHidden resource type" description: "Hide the home button."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"@odata.type": "#microsoft.graph.edgeHomeButtonHidden" } ```-----
v1.0 Intune Deviceconfig Edgehomebuttonloadsstartpage https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-edgehomebuttonloadsstartpage.md
Title: "edgeHomeButtonLoadsStartPage resource type" description: "Show the home button; clicking the home button loads the Start page - this is also the default value."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"@odata.type": "#microsoft.graph.edgeHomeButtonLoadsStartPage" } ```-----
v1.0 Intune Deviceconfig Edgehomebuttonopenscustomurl https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-edgehomebuttonopenscustomurl.md
Title: "edgeHomeButtonOpensCustomURL resource type" description: "Show the home button; clicking the home button loads a specific URL."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"homeButtonCustomURL": "String" } ```-----
v1.0 Intune Deviceconfig Edgehomebuttonopensnewtab https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-edgehomebuttonopensnewtab.md
Title: "edgeHomeButtonOpensNewTab resource type" description: "Show the home button; clicking the home button loads the New tab page."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"@odata.type": "#microsoft.graph.edgeHomeButtonOpensNewTab" } ```-----
v1.0 Intune Deviceconfig Edgekioskmoderestrictiontype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-edgekioskmoderestrictiontype.md
Title: "edgeKioskModeRestrictionType enum type" description: "Specify how the Microsoft Edge settings are restricted based on kiosk mode."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Specify how the Microsoft Edge settings are restricted based on kiosk mode.
|normalMode|2|Normal mode (full version of Microsoft Edge).| |publicBrowsingSingleApp|3|Public browsing in single-app mode.| |publicBrowsingMultiApp|4|Public browsing (inPrivate) in multi-app mode.|-----
v1.0 Intune Deviceconfig Edgeopenoptions https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-edgeopenoptions.md
Title: "edgeOpenOptions enum type" description: "Possible values for the EdgeOpensWith setting."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for the EdgeOpensWith setting.
|newTabPage|2|NewTabPage.| |previousPages|3|PreviousPages.| |specificPages|4|SpecificPages.|-----
v1.0 Intune Deviceconfig Edgesearchengine https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-edgesearchengine.md
Title: "edgeSearchEngine resource type" description: "Allows IT admins to set a predefined default search engine for MDM-Controlled devices."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"edgeSearchEngineType": "String" } ```-----
v1.0 Intune Deviceconfig Edgesearchenginebase https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-edgesearchenginebase.md
Title: "edgeSearchEngineBase resource type" description: "Allows IT admins to set a default search engine for MDM-Controlled devices. Users can override this and change their default search engine provided the AllowSearchEngineCustomization policy is not set."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"@odata.type": "#microsoft.graph.edgeSearchEngineBase" } ```-----
v1.0 Intune Deviceconfig Edgesearchenginecustom https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-edgesearchenginecustom.md
Title: "edgeSearchEngineCustom resource type" description: "Allows IT admins to set a custom default search engine for MDM-Controlled devices."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"edgeSearchEngineOpenSearchXmlUrl": "String" } ```-----
v1.0 Intune Deviceconfig Edgesearchenginetype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-edgesearchenginetype.md
Title: "edgeSearchEngineType enum type" description: "Allows IT admind to set a predefined default search engine for MDM-Controlled devices"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Allows IT admind to set a predefined default search engine for MDM-Controlled de
|:|:|:| |default|0|Uses factory settings of Edge to assign the default search engine as per the user market| |bing|1|Sets Bing as the default search engine|-----
v1.0 Intune Deviceconfig Edgetelemetrymode https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-edgetelemetrymode.md
Title: "edgeTelemetryMode enum type" description: "Type of browsing data sent to Microsoft 365 analytics"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Type of browsing data sent to Microsoft 365 analytics
|intranet|1|Allow sending intranet history only: Only send browsing history data for intranet sites| |internet|2|Allow sending internet history only: Only send browsing history data for internet sites| |intranetAndInternet|3|Allow sending both intranet and internet history: Send browsing history data for intranet and internet sites|-----
v1.0 Intune Deviceconfig Editionupgradeconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-editionupgradeconfiguration.md
Title: "editionUpgradeConfiguration resource type" description: "Windows 10 Edition Upgrade configuration."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"windowsSMode": "String" } ```-----
v1.0 Intune Deviceconfig Editionupgradelicensetype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-editionupgradelicensetype.md
Title: "editionUpgradeLicenseType enum type" description: "Edition Upgrade License type"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Edition Upgrade License type
|productKey|0|Product Key Type| |licenseFile|1|License File Type| |notConfigured|2|NotConfigured|-----
v1.0 Intune Deviceconfig Emailcertificatetype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-emailcertificatetype.md
Title: "emailCertificateType enum type" description: "Supported certificate sources for email signing and encryption."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Supported certificate sources for email signing and encryption.
|none|0|Do not use a certificate as a source.| |certificate|1|Use an certificate for certificate source.| |derivedCredential|2|Use a derived credential for certificate source.|-----
v1.0 Intune Deviceconfig Emailsyncduration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-emailsyncduration.md
Title: "emailSyncDuration enum type" description: "Possible values for email sync duration."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for email sync duration.
|twoWeeks|4|Sync two weeks of email.| |oneMonth|5|Sync one month of email.| |unlimited|6|Sync an unlimited duration of email.|-----
v1.0 Intune Deviceconfig Emailsyncschedule https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-emailsyncschedule.md
Title: "emailSyncSchedule enum type" description: "Possible values for email sync schedule."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for email sync schedule.
|thirtyMinutes|4|Sync every thirty minutes.| |sixtyMinutes|5|Sync every sixty minutes.| |basedOnMyUsage|6|Sync based on my usage.|-----
v1.0 Intune Deviceconfig Encryptionreadinessstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-encryptionreadinessstate.md
Title: "encryptionReadinessState enum type" description: "Encryption readiness state"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Encryption readiness state
|:|:|:| |notReady|0|Not ready| |ready|1|Ready|-----
v1.0 Intune Deviceconfig Encryptionreportpolicydetails https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-encryptionreportpolicydetails.md
Title: "encryptionReportPolicyDetails resource type" description: "Policy Details for Encryption Report"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"policyName": "String" } ```-----
v1.0 Intune Deviceconfig Encryptionstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-encryptionstate.md
Title: "encryptionState enum type" description: "Encryption state"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Encryption state
|:|:|:| |notEncrypted|0|Not encrypted| |encrypted|1|Encrypted|-----
v1.0 Intune Deviceconfig Filevaultstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-filevaultstate.md
Title: "fileVaultState enum type" description: "FileVault State"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
FileVault State
|driveEncryptedByUser|1|FileVault has been enabled by user and is not being managed by policy| |userDeferredEncryption|2|FileVault policy is successfully installed but user has not started encryption| |escrowNotEnabled|4|FileVault recovery key escrow is not enabled|-----
v1.0 Intune Deviceconfig Firewallcertificaterevocationlistcheckmethodtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-firewallcertificaterevocationlistcheckmethodtype.md
Title: "firewallCertificateRevocationListCheckMethodType enum type" description: "Possible values for firewallCertificateRevocationListCheckMethod"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for firewallCertificateRevocationListCheckMethod
|none|1|Do not check certificate revocation list| |attempt|2|Attempt CRL check and allow a certificate only if the certificate is confirmed by the check| |require|3|Require a successful CRL check before allowing a certificate|-----
v1.0 Intune Deviceconfig Firewallpacketqueueingmethodtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-firewallpacketqueueingmethodtype.md
Title: "firewallPacketQueueingMethodType enum type" description: "Possible values for firewallPacketQueueingMethod"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for firewallPacketQueueingMethod
|queueInbound|2|Queue inbound encrypted packets| |queueOutbound|3|Queue decrypted outbound packets for forwarding| |queueBoth|4|Queue both inbound and outbound packets|-----
v1.0 Intune Deviceconfig Firewallpresharedkeyencodingmethodtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-firewallpresharedkeyencodingmethodtype.md
Title: "firewallPreSharedKeyEncodingMethodType enum type" description: "Possible values for firewallPreSharedKeyEncodingMethod"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for firewallPreSharedKeyEncodingMethod
|deviceDefault|0|No value configured by Intune, do not override the user-configured device default value| |none|1|Preshared key is not encoded. Instead, it is kept in its wide-character format| |utF8|2|Encode the preshared key using UTF-8|-----
v1.0 Intune Deviceconfig Folderprotectiontype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-folderprotectiontype.md
Title: "folderProtectionType enum type" description: "Possible values of Folder Protection"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values of Folder Protection
|auditMode|2|Allow functionality but generate logs.| |blockDiskModification|3|Block untrusted apps from writing to disk sectors.| |auditDiskModification|4|Generate logs when untrusted apps write to disk sectors.|-----
v1.0 Intune Deviceconfig Hardwareconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-hardwareconfiguration.md
Title: "hardwareConfiguration resource type" description: "Intune will provide customer the ability to configure hardware/bios settings on the enrolled windows 10 Azure Active Directory joined devices."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"perDevicePasswordDisabled": true } ```-----
v1.0 Intune Deviceconfig Hardwareconfigurationassignment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-hardwareconfigurationassignment.md
Title: "hardwareConfigurationAssignment resource type" description: "Contains properties used to assign a hardware configuration to a group."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Deviceconfig Hardwareconfigurationdevicestate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-hardwareconfigurationdevicestate.md
Title: "hardwareConfigurationDeviceState resource type" description: "Contains properties for device run state of the hardware configuration"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Contains properties for device run state of the hardware configuration
|upn|String|User Principal Name (UPN).| |internalVersion|Int32|The Policy internal version| |lastStateUpdateDateTime|DateTimeOffset|The last timestamp of when the hardware configuration executed|
-|configurationState|[runState](../resources/intune-shared-runstate.md)|Configuration state from the lastest hardware configuration execution. Possible values are: `unknown`, `success`, `fail`, `scriptError`, `pending`, `notApplicable`.|
+|configurationState|[runState](../resources/intune-deviceconfig-runstate.md)|Configuration state from the lastest hardware configuration execution. Possible values are: `unknown`, `success`, `fail`, `scriptError`, `pending`, `notApplicable`.|
|configurationOutput|String|Output of the hardware configuration execution| |configurationError|String|Error from the hardware configuration execution|
Here is a JSON representation of the resource.
"configurationError": "String" } ```-----
v1.0 Intune Deviceconfig Hardwareconfigurationformat https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-hardwareconfigurationformat.md
Title: "hardwareConfigurationFormat enum type" description: "Indicates the supported oems of hardware configuration"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Indicates the supported oems of hardware configuration
|dell|1|Dell| |surface|2|Surface| |surfaceDock|3|Surface dock|-----
v1.0 Intune Deviceconfig Hardwareconfigurationrunsummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-hardwareconfigurationrunsummary.md
Title: "hardwareConfigurationRunSummary resource type" description: "Contains properties for the run summary of a hardware configuration script."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"lastRunDateTime": "String (timestamp)" } ```-----
v1.0 Intune Deviceconfig Hardwareconfigurationuserstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-hardwareconfigurationuserstate.md
Title: "hardwareConfigurationUserState resource type" description: "Contains properties for User state of the hardware configuration"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"unknownDeviceCount": 1024 } ```-----
v1.0 Intune Deviceconfig Hardwarepasswordinfo https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-hardwarepasswordinfo.md
Title: "hardwarePasswordInfo resource type" description: "Intune will provide customer the ability to configure hardware/bios settings on the enrolled windows 10 Azure Active Directory joined devices."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Inkaccesssetting https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-inkaccesssetting.md
Title: "inkAccessSetting enum type" description: "Values for the InkWorkspaceAccess setting."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Values for the InkWorkspaceAccess setting.
|notConfigured|0|Not configured.| |enabled|1|Enabled.| |disabled|2|Disabled.|-----
v1.0 Intune Deviceconfig Intendedpurpose https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-intendedpurpose.md
Title: "intendedPurpose enum type" description: "PFX Import Options."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
PFX Import Options.
|smimeSigning|3|SmimeSigning| |vpn|4|VPN| |wifi|5|Wifi|-----
v1.0 Intune Deviceconfig Internetexplorermessagesetting https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-internetexplorermessagesetting.md
Title: "internetExplorerMessageSetting enum type" description: "What message will be displayed by Edge before switching to Internet Explorer."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
What message will be displayed by Edge before switching to Internet Explorer.
|disabled|1|Disabled.| |enabled|2|Enabled.| |keepGoing|3|KeepGoing.|-----
v1.0 Intune Deviceconfig Internetsitesecuritylevel https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-internetsitesecuritylevel.md
Title: "internetSiteSecurityLevel enum type" description: "Possible values for internet site security level."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for internet site security level.
|medium|1|Medium.| |mediumHigh|2|Medium-High.| |high|3|High.|-----
v1.0 Intune Deviceconfig Iosazureadsinglesignonextension https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-iosazureadsinglesignonextension.md
Title: "iosAzureAdSingleSignOnExtension resource type" description: "Represents an Azure AD-type Single Sign-On extension profile for iOS devices."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Iosbookmark https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-iosbookmark.md
Title: "iosBookmark resource type" description: "iOS URL bookmark"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"displayName": "String" } ```-----
v1.0 Intune Deviceconfig Ioscertificateprofile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-ioscertificateprofile.md
Title: "iosCertificateProfile resource type" description: "Device Configuration."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"version": 1024 } ```-----
v1.0 Intune Deviceconfig Ioscertificateprofilebase https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-ioscertificateprofilebase.md
Title: "iosCertificateProfileBase resource type" description: "iOS certificate profile base."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"certificateValidityPeriodScale": "String" } ```-----
v1.0 Intune Deviceconfig Ioscompliancepolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-ioscompliancepolicy.md
Title: "iosCompliancePolicy resource type" description: "This class contains compliance settings for IOS."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Ioscredentialsinglesignonextension https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-ioscredentialsinglesignonextension.md
Title: "iosCredentialSingleSignOnExtension resource type" description: "Represents a Credential-type Single Sign-On extension profile for iOS devices."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Ioscustomconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-ioscustomconfiguration.md
Title: "iosCustomConfiguration resource type" description: "This topic provides descriptions of the declared methods, properties and relationships exposed by the iosCustomConfiguration resource."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"payload": "binary" } ```-----
v1.0 Intune Deviceconfig Iosderivedcredentialauthenticationconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-iosderivedcredentialauthenticationconfiguration.md
Title: "iosDerivedCredentialAuthenticationConfiguration resource type" description: "iOS Derived Credential profile."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"version": 1024 } ```-----
v1.0 Intune Deviceconfig Iosdevicefeaturesconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-iosdevicefeaturesconfiguration.md
Title: "iosDeviceFeaturesConfiguration resource type" description: "iOS Device Features Configuration Profile."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Deviceconfig Ioseasemailprofileconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-ioseasemailprofileconfiguration.md
Title: "iosEasEmailProfileConfiguration resource type" description: "By providing configurations in this profile you can instruct the native email client on iOS devices to communicate with an Exchange server and get email, contacts, calendar, reminders, and notes. Furthermore, you can also specify how much email to sync and how often the device should sync."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"perAppVPNProfileId": "String" } ```-----
v1.0 Intune Deviceconfig Ioseducationdeviceconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-ioseducationdeviceconfiguration.md
Title: "iosEducationDeviceConfiguration resource type" description: "iOS Education configuration profile"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"version": 1024 } ```-----
v1.0 Intune Deviceconfig Ioseducertificatesettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-ioseducertificatesettings.md
Title: "iosEduCertificateSettings resource type" description: "Trusted Root and PFX certificates for iOS EDU."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"certificateValidityPeriodScale": "String" } ```-----
v1.0 Intune Deviceconfig Iosedudeviceconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-iosedudeviceconfiguration.md
Title: "iosEduDeviceConfiguration resource type" description: "iOS Education device configuration"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Deviceconfig Iosenterprisewificonfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-iosenterprisewificonfiguration.md
Title: "iosEnterpriseWiFiConfiguration resource type" description: "By providing the configurations in this profile you can instruct the iOS device to connect to desired Wi-Fi endpoint. By specifying the authentication method and security types expected by Wi-Fi endpoint you can make the Wi-Fi connection seamless for end user."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"passwordFormatString": "String" } ```-----
v1.0 Intune Deviceconfig Iosexpeditedcheckinconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-iosexpeditedcheckinconfiguration.md
Title: "iosExpeditedCheckinConfiguration resource type"
-description: "Experimental profile to increase the rate of device check-ins per day of iOS devices."
-
+description: "Experimental profile to increase the rate of device check-ins per day of iOS devices. This profile type is deprecated."
+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Namespace: microsoft.graph
> **Note:** The Microsoft Graph API for Intune requires an [active Intune license](https://go.microsoft.com/fwlink/?linkid=839381) for the tenant.
-Experimental profile to increase the rate of device check-ins per day of iOS devices.
+Experimental profile to increase the rate of device check-ins per day of iOS devices. This profile type is deprecated.
Inherits from [appleExpeditedCheckinConfigurationBase](../resources/intune-deviceconfig-appleexpeditedcheckinconfigurationbase.md)
Here is a JSON representation of the resource.
"enableExpeditedCheckin": true } ```-----
v1.0 Intune Deviceconfig Iosgeneraldeviceconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-iosgeneraldeviceconfiguration.md
Title: "iosGeneralDeviceConfiguration resource type" description: "This topic provides descriptions of the declared methods, properties and relationships exposed by the iosGeneralDeviceConfiguration resource."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"kioskModeAppType": "String" } ```-----
v1.0 Intune Deviceconfig Ioshomescreenapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-ioshomescreenapp.md
Title: "iosHomeScreenApp resource type" description: "Represents an icon for an app on the Home Screen"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"isWebClip": true } ```-----
v1.0 Intune Deviceconfig Ioshomescreenfolder https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-ioshomescreenfolder.md
Title: "iosHomeScreenFolder resource type" description: "A folder containing pages of apps and web clips on the Home Screen."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Ioshomescreenfolderpage https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-ioshomescreenfolderpage.md
Title: "iosHomeScreenFolderPage resource type" description: "A page for a folder containing apps and web clips on the Home Screen."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Ioshomescreenitem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-ioshomescreenitem.md
Title: "iosHomeScreenItem resource type" description: "Represents an item on the iOS Home Screen"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"displayName": "String" } ```-----
v1.0 Intune Deviceconfig Ioshomescreenpage https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-ioshomescreenpage.md
Title: "iosHomeScreenPage resource type" description: "A page containing apps, folders, and web clips on the Home Screen."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Iosikev2vpnconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-iosikev2vpnconfiguration.md
Title: "iosikEv2VpnConfiguration resource type" description: "By providing the configurations in this profile you can instruct the iOS device to connect to desired IKEv2 VPN endpoint."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Inherits from [iosVpnConfiguration](../resources/intune-deviceconfig-iosvpnconfi
|server|[vpnServer](../resources/intune-deviceconfig-vpnserver.md)|VPN Server on the network. Make sure end users can access this network location. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)| |identifier|String|Identifier provided by VPN vendor when connection type is set to Custom VPN. For example: Cisco AnyConnect uses an identifier of the form com.cisco.anyconnect.applevpn.plugin Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)| |customData|[keyValue](../resources/intune-deviceconfig-keyvalue.md) collection|Custom data when connection type is set to Custom VPN. Use this field to enable functionality not supported by Intune, but available in your VPN solution. Contact your VPN vendor to learn how to add these key/value pairs. This collection can contain a maximum of 25 elements. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)|
-|customKeyValueData|[keyValuePair](../resources/intune-shared-keyvaluepair.md) collection|Custom data when connection type is set to Custom VPN. Use this field to enable functionality not supported by Intune, but available in your VPN solution. Contact your VPN vendor to learn how to add these key/value pairs. This collection can contain a maximum of 25 elements. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)|
+|customKeyValueData|[keyValuePair](../resources/intune-deviceconfig-keyvaluepair.md) collection|Custom data when connection type is set to Custom VPN. Use this field to enable functionality not supported by Intune, but available in your VPN solution. Contact your VPN vendor to learn how to add these key/value pairs. This collection can contain a maximum of 25 elements. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)|
|enableSplitTunneling|Boolean|Send all network traffic through VPN. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)| |authenticationMethod|[vpnAuthenticationMethod](../resources/intune-deviceconfig-vpnauthenticationmethod.md)|Authentication method for this VPN connection. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md). Possible values are: `certificate`, `usernameAndPassword`, `sharedSecret`, `derivedCredential`, `azureAD`.| |enablePerApp|Boolean|Setting this to true creates Per-App VPN payload which can later be associated with Apps that can trigger this VPN conneciton on the end user's iOS device. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)|
Here is a JSON representation of the resource.
"mtuSizeInBytes": 1024 } ```-----
v1.0 Intune Deviceconfig Iosimportedpfxcertificateprofile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-iosimportedpfxcertificateprofile.md
Title: "iosImportedPFXCertificateProfile resource type" description: "iOS PFX Import certificate profile"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"intendedPurpose": "String" } ```-----
v1.0 Intune Deviceconfig Ioskerberossinglesignonextension https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-ioskerberossinglesignonextension.md
Title: "iosKerberosSingleSignOnExtension resource type" description: "Represents a Kerberos-type Single Sign-On extension profile for iOS devices."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"managedAppsInBundleIdACLIncluded": true } ```-----
v1.0 Intune Deviceconfig Ioskioskmodeapptype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-ioskioskmodeapptype.md
Title: "iosKioskModeAppType enum type" description: "App source options for iOS kiosk mode."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
App source options for iOS kiosk mode.
|appStoreApp|1|The app to be run comes from the app store.| |managedApp|2|The app to be run is built into the device.| |builtInApp|3|The app to be run is a managed app.|-----
v1.0 Intune Deviceconfig Iosnetworkusagerule https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-iosnetworkusagerule.md
Title: "iosNetworkUsageRule resource type" description: "Network Usage Rules allow enterprises to specify how managed apps use networks, such as cellular data networks."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"cellularDataBlocked": true } ```-----
v1.0 Intune Deviceconfig Iosnotificationalerttype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-iosnotificationalerttype.md
Title: "iosNotificationAlertType enum type" description: "Notification Settings Alert Type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Notification Settings Alert Type.
|banner|1|Banner.| |modal|2|Modal.| |none|3|None.|-----
v1.0 Intune Deviceconfig Iosnotificationpreviewvisibility https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-iosnotificationpreviewvisibility.md
Title: "iosNotificationPreviewVisibility enum type" description: "Determines when notification previews are visible on an iOS device. Previews can include things like text (from Messages and Mail) and invitation details (from Calendar). When configured, it will override the user's defined preview settings."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Determines when notification previews are visible on an iOS device. Previews can
|alwaysShow|1|Always show notification previews.| |hideWhenLocked|2|Only show notification previews when the device is unlocked.| |neverShow|3|Never show notification previews.|-----
v1.0 Intune Deviceconfig Iosnotificationsettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-iosnotificationsettings.md
Title: "iosNotificationSettings resource type" description: "An item describing notification setting."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"previewVisibility": "String" } ```-----
v1.0 Intune Deviceconfig Iospkcscertificateprofile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-iospkcscertificateprofile.md
Title: "iosPkcsCertificateProfile resource type" description: "iOS PKCS certificate profile."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Iosredirectsinglesignonextension https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-iosredirectsinglesignonextension.md
Title: "iosRedirectSingleSignOnExtension resource type" description: "Represents a Redirect-type Single Sign-On extension profile for iOS devices."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Iosscepcertificateprofile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-iosscepcertificateprofile.md
Title: "iosScepCertificateProfile resource type" description: "iOS SCEP certificate profile."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```------
v1.0 Intune Deviceconfig Iossinglesignonextension https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-iossinglesignonextension.md
Title: "iosSingleSignOnExtension resource type" description: "An abstract base class for all iOS-specific single sign-on extension types."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"@odata.type": "#microsoft.graph.iosSingleSignOnExtension" } ```-----
v1.0 Intune Deviceconfig Iossinglesignonsettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-iossinglesignonsettings.md
Title: "iosSingleSignOnSettings resource type" description: "iOS Kerberos authentication settings for single sign-on"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"kerberosRealm": "String" } ```-----
v1.0 Intune Deviceconfig Iossoftwareupdatescheduletype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-iossoftwareupdatescheduletype.md
Title: "iosSoftwareUpdateScheduleType enum type" description: "Update schedule type for iOS software updates."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Update schedule type for iOS software updates.
|alwaysUpdate|1|Always update.| |updateDuringTimeWindows|2|Update during time windows.| |updateOutsideOfTimeWindows|3|Update outside of time windows.|-----
v1.0 Intune Deviceconfig Iostrustedrootcertificate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-iostrustedrootcertificate.md
Title: "iosTrustedRootCertificate resource type" description: "iOS Trusted Root Certificate configuration profile."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"certFileName": "String" } ```-----
v1.0 Intune Deviceconfig Iosupdateconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-iosupdateconfiguration.md
Title: "iosUpdateConfiguration resource type" description: "IOS Update Configuration, allows you to configure time window within week to install iOS updates"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Iosupdatedevicestatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-iosupdatedevicestatus.md
Title: "iosUpdateDeviceStatus resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"userPrincipalName": "String" } ```-----
v1.0 Intune Deviceconfig Iosupdatesinstallstatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-iosupdatesinstallstatus.md
Title: "iosUpdatesInstallStatus enum type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Not yet documented
|updateError|-2016330697|Not yet documented| |deviceOsHigherThanDesiredOsVersion|-2016330696|Not yet documented| |updateScanFailed|-2016324062|Not yet documented|-----
v1.0 Intune Deviceconfig Iosvpnconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-iosvpnconfiguration.md
Title: "iosVpnConfiguration resource type" description: "By providing the configurations in this profile you can instruct the iOS device to connect to desired VPN endpoint. By specifying the authentication method and security types expected by VPN endpoint you can make the VPN connection seamless for end user."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Inherits from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnc
|server|[vpnServer](../resources/intune-deviceconfig-vpnserver.md)|VPN Server on the network. Make sure end users can access this network location. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)| |identifier|String|Identifier provided by VPN vendor when connection type is set to Custom VPN. For example: Cisco AnyConnect uses an identifier of the form com.cisco.anyconnect.applevpn.plugin Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)| |customData|[keyValue](../resources/intune-deviceconfig-keyvalue.md) collection|Custom data when connection type is set to Custom VPN. Use this field to enable functionality not supported by Intune, but available in your VPN solution. Contact your VPN vendor to learn how to add these key/value pairs. This collection can contain a maximum of 25 elements. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)|
-|customKeyValueData|[keyValuePair](../resources/intune-shared-keyvaluepair.md) collection|Custom data when connection type is set to Custom VPN. Use this field to enable functionality not supported by Intune, but available in your VPN solution. Contact your VPN vendor to learn how to add these key/value pairs. This collection can contain a maximum of 25 elements. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)|
+|customKeyValueData|[keyValuePair](../resources/intune-deviceconfig-keyvaluepair.md) collection|Custom data when connection type is set to Custom VPN. Use this field to enable functionality not supported by Intune, but available in your VPN solution. Contact your VPN vendor to learn how to add these key/value pairs. This collection can contain a maximum of 25 elements. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)|
|enableSplitTunneling|Boolean|Send all network traffic through VPN. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)| |authenticationMethod|[vpnAuthenticationMethod](../resources/intune-deviceconfig-vpnauthenticationmethod.md)|Authentication method for this VPN connection. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md). Possible values are: `certificate`, `usernameAndPassword`, `sharedSecret`, `derivedCredential`, `azureAD`.| |enablePerApp|Boolean|Setting this to true creates Per-App VPN payload which can later be associated with Apps that can trigger this VPN conneciton on the end user's iOS device. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)|
Here is a JSON representation of the resource.
"microsoftTunnelSiteId": "String" } ```-----
v1.0 Intune Deviceconfig Iosvpnsecurityassociationparameters https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-iosvpnsecurityassociationparameters.md
Title: "iosVpnSecurityAssociationParameters resource type" description: "VPN Security Association Parameters"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"lifetimeInMinutes": 1024 } ```-----
v1.0 Intune Deviceconfig Ioswallpaperdisplaylocation https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-ioswallpaperdisplaylocation.md
Title: "iosWallpaperDisplayLocation enum type" description: "An enum type for wallpaper display location specifier."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
An enum type for wallpaper display location specifier.
|lockScreen|1|A configured wallpaper image is displayed on Lock screen.| |homeScreen|2|A configured wallpaper image is displayed on Home (icon list) screen.| |lockAndHomeScreens|3|A configured wallpaper image is displayed on Lock screen and Home screen.|-----
v1.0 Intune Deviceconfig Ioswebcontentfilterautofilter https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-ioswebcontentfilterautofilter.md
Title: "iosWebContentFilterAutoFilter resource type" description: "Represents an iOS Web Content Filter setting type, which enables iOS automatic filter feature and allows for additional URL access control. When constructed with no property values, the iOS device will enable the automatic filter regardless."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Ioswebcontentfilterbase https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-ioswebcontentfilterbase.md
Title: "iosWebContentFilterBase resource type" description: "Represents an iOS Web Content Filter setting base type. An empty and abstract base. Caller should use one of derived types for configurations."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"@odata.type": "#microsoft.graph.iosWebContentFilterBase" } ```-----
v1.0 Intune Deviceconfig Ioswebcontentfilterspecificwebsitesaccess https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-ioswebcontentfilterspecificwebsitesaccess.md
Title: "iosWebContentFilterSpecificWebsitesAccess resource type" description: "Represents an iOS Web Content Filter setting type, which installs URL bookmarks into iOS built-in browser. An example scenario is in the classroom where teachers would like the students to navigate websites through browser bookmarks configured on their iOS devices, and no access to other sites."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Ioswificonfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-ioswificonfiguration.md
Title: "iosWiFiConfiguration resource type" description: "By providing the configurations in this profile you can instruct the iOS device to connect to desired Wi-Fi endpoint. By specifying the authentication method and security types expected by Wi-Fi endpoint you can make the Wi-Fi connection seamless for end user. This profile provides limited and simpler security types than Enterprise Wi-Fi profile."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"preSharedKey": "String" } ```-----
v1.0 Intune Deviceconfig Kerberossinglesignonextension https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-kerberossinglesignonextension.md
Title: "kerberosSingleSignOnExtension resource type" description: "Represents a Kerberos-type Single Sign-On extension profile."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"passwordChangeUrl": "String" } ```-----
v1.0 Intune Deviceconfig Keybooleanvaluepair https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-keybooleanvaluepair.md
Title: "keyBooleanValuePair resource type" description: "A key-value pair with a string key and a Boolean value."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"value": true } ```-----
v1.0 Intune Deviceconfig Keyintegervaluepair https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-keyintegervaluepair.md
Title: "keyIntegerValuePair resource type" description: "A key-value pair with a string key and an integer value."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"value": 1024 } ```-----
v1.0 Intune Deviceconfig Keyrealvaluepair https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-keyrealvaluepair.md
Title: "keyRealValuePair resource type" description: "A key-value pair with a string key and a real (floating-point) value."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"value": "4.2" } ```-----
v1.0 Intune Deviceconfig Keystringvaluepair https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-keystringvaluepair.md
Title: "keyStringValuePair resource type" description: "A key-value pair with a string key and a string value."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"value": "String" } ```-----
v1.0 Intune Deviceconfig Keytypedvaluepair https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-keytypedvaluepair.md
Title: "keyTypedValuePair resource type" description: "A key-value pair with a string key and a typed value."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"key": "String" } ```-----
v1.0 Intune Deviceconfig Keyvalue https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-keyvalue.md
Title: "keyValue resource type" description: "Key Value definition."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"value": "String" } ```-----
v1.0 Intune Deviceconfig Keyvaluepair https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-keyvaluepair.md
Title: "keyValuePair resource type" description: "Key value pair for storing custom settings"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"value": "String" } ```----
v1.0 Intune Deviceconfig Kioskmodemanagedhomescreenpincomplexity https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-kioskmodemanagedhomescreenpincomplexity.md
Title: "kioskModeManagedHomeScreenPinComplexity enum type" description: "Complexity of PIN for Managed Home Screen sign-in session."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Complexity of PIN for Managed Home Screen sign-in session.
|notConfigured|0|Not configured.| |simple|1|Numeric values only.| |complex|2|Alphanumerical value.|-----
v1.0 Intune Deviceconfig Kioskmodetype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-kioskmodetype.md
Title: "kioskModeType enum type" description: "Possible values of Android Kiosk Mode."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values of Android Kiosk Mode.
|notConfigured|0|Not configured| |singleAppMode|1|Run in single-app mode| |multiAppMode|2|Run in multi-app mode|-----
v1.0 Intune Deviceconfig Lanmanagerauthenticationlevel https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-lanmanagerauthenticationlevel.md
Title: "lanManagerAuthenticationLevel enum type" description: "Possible values for LanManagerAuthenticationLevel"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for LanManagerAuthenticationLevel
|lmAndNtlmV2|3|Send LM & NTLMv2 responses only| |lmNtlmV2AndNotLm|4|Send LM & NTLMv2 responses only. Refuse LM| |lmNtlmV2AndNotLmOrNtm|5|Send LM & NTLMv2 responses only. Refuse LM & NTLM|-----
v1.0 Intune Deviceconfig Localsecurityoptionsadministratorelevationpromptbehaviortype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-localsecurityoptionsadministratorelevationpromptbehaviortype.md
Title: "localSecurityOptionsAdministratorElevationPromptBehaviorType enum type" description: "Possible values for LocalSecurityOptionsAdministratorElevationPromptBehavior"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for LocalSecurityOptionsAdministratorElevationPromptBehavior
|promptForCredentials|4|Prompt for credentials| |promptForConsent|5|Prompt for consent| |promptForConsentForNonWindowsBinaries|6|Prompt for consent for non-Windows binaries|-----
v1.0 Intune Deviceconfig Localsecurityoptionsformatandejectofremovablemediaallowedusertype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-localsecurityoptionsformatandejectofremovablemediaallowedusertype.md
Title: "localSecurityOptionsFormatAndEjectOfRemovableMediaAllowedUserType enum type" description: "Possible values for LocalSecurityOptionsFormatAndEjectOfRemovableMediaAllowedUser"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for LocalSecurityOptionsFormatAndEjectOfRemovableMediaAllowedUse
|administrators|1|Administrators| |administratorsAndPowerUsers|2|Administrators and Power Users| |administratorsAndInteractiveUsers|3|Administrators and Interactive Users |-----
v1.0 Intune Deviceconfig Localsecurityoptionsinformationdisplayedonlockscreentype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-localsecurityoptionsinformationdisplayedonlockscreentype.md
Title: "localSecurityOptionsInformationDisplayedOnLockScreenType enum type" description: "Possible values for LocalSecurityOptionsInformationDisplayedOnLockScreen"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for LocalSecurityOptionsInformationDisplayedOnLockScreen
|administrators|1|User display name, domain and user names| |administratorsAndPowerUsers|2|User display name only| |administratorsAndInteractiveUsers|3|Do not display user information|-----
v1.0 Intune Deviceconfig Localsecurityoptionsinformationshownonlockscreentype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-localsecurityoptionsinformationshownonlockscreentype.md
Title: "localSecurityOptionsInformationShownOnLockScreenType enum type" description: "Possible values for LocalSecurityOptionsInformationShownOnLockScreenType"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for LocalSecurityOptionsInformationShownOnLockScreenType
|userDisplayNameDomainUser|1|User display name, domain and user names| |userDisplayNameOnly|2|User display name only| |doNotDisplayUser|3|Do not display user information|-----
v1.0 Intune Deviceconfig Localsecurityoptionsminimumsessionsecurity https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-localsecurityoptionsminimumsessionsecurity.md
Title: "localSecurityOptionsMinimumSessionSecurity enum type" description: "Possible values for LocalSecurityOptionsMinimumSessionSecurity"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for LocalSecurityOptionsMinimumSessionSecurity
|requireNtmlV2SessionSecurity|1|Send LM & NTLM-use NTLMv2 session security if negotiated| |require128BitEncryption|2|Send LM & NTLM responses only| |ntlmV2And128BitEncryption|3|Send LM & NTLMv2 responses only|-----
v1.0 Intune Deviceconfig Localsecurityoptionssmartcardremovalbehaviortype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-localsecurityoptionssmartcardremovalbehaviortype.md
Title: "localSecurityOptionsSmartCardRemovalBehaviorType enum type" description: "Possible values for LocalSecurityOptionsSmartCardRemovalBehaviorType"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for LocalSecurityOptionsSmartCardRemovalBehaviorType
|lockWorkstation|1|Lock Workstation| |forceLogoff|2|Force Logoff| |disconnectRemoteDesktopSession|3|Disconnect if a remote Remote Desktop Services session|-----
v1.0 Intune Deviceconfig Localsecurityoptionsstandarduserelevationpromptbehaviortype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-localsecurityoptionsstandarduserelevationpromptbehaviortype.md
Title: "localSecurityOptionsStandardUserElevationPromptBehaviorType enum type" description: "Possible values for LocalSecurityOptionsStandardUserElevationPromptBehavior"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for LocalSecurityOptionsStandardUserElevationPromptBehavior
|automaticallyDenyElevationRequests|1|Automatically deny elevation requests| |promptForCredentialsOnTheSecureDesktop|2|Prompt for credentials on the secure desktop| |promptForCredentials|3|Prompt for credentials|-----
v1.0 Intune Deviceconfig Macosappleeventreceiver https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-macosappleeventreceiver.md
Title: "macOSAppleEventReceiver resource type" description: "Represents a process that can receive an Apple Event notification."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"allowed": true } ```-----
v1.0 Intune Deviceconfig Macosassociateddomainsitem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-macosassociateddomainsitem.md
Title: "macOSAssociatedDomainsItem resource type" description: "A mapping of application identifiers to associated domains."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"directDownloadsEnabled": true } ```-----
v1.0 Intune Deviceconfig Macosazureadsinglesignonextension https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-macosazureadsinglesignonextension.md
Title: "macOSAzureAdSingleSignOnExtension resource type" description: "Represents an Azure AD-type Single Sign-On extension profile for macOS devices."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Macoscertificateprofilebase https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-macoscertificateprofilebase.md
Title: "macOSCertificateProfileBase resource type" description: "Mac OS certificate profile."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"certificateValidityPeriodScale": "String" } ```-----
v1.0 Intune Deviceconfig Macoscompliancepolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-macoscompliancepolicy.md
Title: "macOSCompliancePolicy resource type" description: "This class contains compliance settings for Mac OS."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"firewallEnableStealthMode": true } ```-----
v1.0 Intune Deviceconfig Macoscontentcachingclientpolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-macoscontentcachingclientpolicy.md
Title: "macOSContentCachingClientPolicy enum type" description: "Determines which clients a content cache will serve."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Determines which clients a content cache will serve.
|clientsWithSamePublicIpAddress|2|Content caches will provide content to devices that share the same public IP address.| |clientsInCustomLocalNetworks|3|Content caches will provide content to devices in contentCachingClientListenRanges.| |clientsInCustomLocalNetworksWithFallback|4|Content caches will provide content to devices in contentCachingClientListenRanges, contentCachingPeerListenRanges, and contentCachingParents.|-----
v1.0 Intune Deviceconfig Macoscontentcachingparentselectionpolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-macoscontentcachingparentselectionpolicy.md
Title: "macOSContentCachingParentSelectionPolicy enum type" description: "Determines how content caches select a parent cache."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Determines how content caches select a parent cache.
|urlPathHash|3|Hash the path part of the requested URL so that the same parent is always used for the same URL. This is useful for maximizing the size of the combined caches of the parents.| |random|4|Choose a parent at random. Use this policy for load balancing.| |stickyAvailable|5|Use the first available parent that is available in the Parents list until it becomes unavailable, then advance to the next one. Use this policy for designating floating primary, secondary, and subsequent parents.|-----
v1.0 Intune Deviceconfig Macoscontentcachingpeerpolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-macoscontentcachingpeerpolicy.md
Title: "macOSContentCachingPeerPolicy enum type" description: "Determines which content caches other content caches will peer with."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Determines which content caches other content caches will peer with.
|peersInLocalNetwork|1|Content caches will only peer with caches in their immediate local network.| |peersWithSamePublicIpAddress|2|Content caches will only peer with caches that share the same public IP address.| |peersInCustomLocalNetworks|3|Content caches will use contentCachingPeerFilterRanges and contentCachingPeerListenRanges to determine which caches to peer with.|-----
v1.0 Intune Deviceconfig Macoscontentcachingtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-macoscontentcachingtype.md
Title: "macOSContentCachingType enum type" description: "Indicates the type of content allowed to be cached by Apple's content caching service."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Indicates the type of content allowed to be cached by Apple's content caching se
|notConfigured|0|Default. Both user iCloud data and non-iCloud data will be cached.| |userContentOnly|1|Allow Apple's content caching service to cache user iCloud data.| |sharedContentOnly|2|Allow Apple's content caching service to cache non-iCloud data (e.g. app and software updates).|-----
v1.0 Intune Deviceconfig Macoscredentialsinglesignonextension https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-macoscredentialsinglesignonextension.md
Title: "macOSCredentialSingleSignOnExtension resource type" description: "Represents a Credential-type Single Sign-On extension profile for macOS devices."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Macoscustomappconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-macoscustomappconfiguration.md
Title: "macOSCustomAppConfiguration resource type" description: "This topic provides descriptions of the declared methods, properties and relationships exposed by the macOSCustomAppConfiguration resource."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"configurationXml": "binary" } ```-----
v1.0 Intune Deviceconfig Macoscustomconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-macoscustomconfiguration.md
Title: "macOSCustomConfiguration resource type" description: "This topic provides descriptions of the declared methods, properties and relationships exposed by the macOSCustomConfiguration resource."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"deploymentChannel": "String" } ```-----
v1.0 Intune Deviceconfig Macosdevicefeaturesconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-macosdevicefeaturesconfiguration.md
Title: "macOSDeviceFeaturesConfiguration resource type" description: "MacOS device features configuration profile."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Inherits from [appleDeviceFeaturesConfigurationBase](../resources/intune-devicec
|powerOffDisabledWhileLoggedIn|Boolean|Whether the Power Off menu item on the login window will be disabled while the user is logged in.| |logOutDisabledWhileLoggedIn|Boolean|Whether the Log Out menu item on the login window will be disabled while the user is logged in.| |screenLockDisableImmediate|Boolean|Whether to disable the immediate screen lock functions.|
-|associatedDomains|[keyValuePair](../resources/intune-shared-keyvaluepair.md) collection|DEPRECATED: use appAssociatedDomains instead. Gets or sets a list that maps apps to their associated domains. The key should match the app's ID, and the value should be a string in the form of "service:domain" where domain is a fully qualified hostname (e.g. webcredentials:example.com). This collection can contain a maximum of 500 elements.|
+|associatedDomains|[keyValuePair](../resources/intune-deviceconfig-keyvaluepair.md) collection|DEPRECATED: use appAssociatedDomains instead. Gets or sets a list that maps apps to their associated domains. The key should match the app's ID, and the value should be a string in the form of "service:domain" where domain is a fully qualified hostname (e.g. webcredentials:example.com). This collection can contain a maximum of 500 elements.|
|appAssociatedDomains|[macOSAssociatedDomainsItem](../resources/intune-deviceconfig-macosassociateddomainsitem.md) collection|Gets or sets a list that maps apps to their associated domains. Application identifiers must be unique. This collection can contain a maximum of 500 elements.| |singleSignOnExtension|[singleSignOnExtension](../resources/intune-deviceconfig-singlesignonextension.md)|Gets or sets a single sign-on extension profile. Deprecated: use MacOSSingleSignOnExtension instead.| |macOSSingleSignOnExtension|[macOSSingleSignOnExtension](../resources/intune-deviceconfig-macossinglesignonextension.md)|Gets or sets a single sign-on extension profile.|
Here is a JSON representation of the resource.
"contentCachingPort": 1024 } ```-----
v1.0 Intune Deviceconfig Macosendpointprotectionconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-macosendpointprotectionconfiguration.md
Title: "macOSEndpointProtectionConfiguration resource type" description: "MacOS endpoint protection configuration profile."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Macosenterprisewificonfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-macosenterprisewificonfiguration.md
Title: "macOSEnterpriseWiFiConfiguration resource type" description: "MacOS Wi-Fi WPA-Enterprise/WPA2-Enterprise configuration profile."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"outerIdentityPrivacyTemporaryValue": "String" } ```-----
v1.0 Intune Deviceconfig Macosextensionsconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-macosextensionsconfiguration.md
Title: "macOSExtensionsConfiguration resource type" description: "MacOS extensions configuration profile."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Macosfilevaultrecoverykeytypes https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-macosfilevaultrecoverykeytypes.md
Title: "macOSFileVaultRecoveryKeyTypes enum type" description: "Recovery key types for macOS FileVault"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Recovery key types for macOS FileVault
|notConfigured|0|Device default value, no intent.| |institutionalRecoveryKey|1|An institutional recovery key is like a ΓÇ£masterΓÇ¥ recovery key that can be used to unlock any device whose password has been lost.| |personalRecoveryKey|2|A personal recovery key is a unique code that can be used to unlock the userΓÇÖs device, even if the password to the device is lost.|-----
v1.0 Intune Deviceconfig Macosfirewallapplication https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-macosfirewallapplication.md
Title: "macOSFirewallApplication resource type" description: "Represents an app in the list of macOS firewall applications"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"allowsIncomingConnections": true } ```-----
v1.0 Intune Deviceconfig Macosgatekeeperappsources https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-macosgatekeeperappsources.md
Title: "macOSGatekeeperAppSources enum type" description: "App source options for macOS Gatekeeper."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
App source options for macOS Gatekeeper.
|macAppStore|1|Only apps from the Mac AppStore can be run.| |macAppStoreAndIdentifiedDevelopers|2|Only apps from the Mac AppStore and identified developers can be run.| |anywhere|3|Apps from anywhere can be run.|-----
v1.0 Intune Deviceconfig Macosgeneraldeviceconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-macosgeneraldeviceconfiguration.md
Title: "macOSGeneralDeviceConfiguration resource type" description: "This topic provides descriptions of the declared methods, properties and relationships exposed by the macOSGeneralDeviceConfiguration resource."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"iCloudDesktopAndDocumentsBlocked": true } ```-----
v1.0 Intune Deviceconfig Macosimportedpfxcertificateprofile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-macosimportedpfxcertificateprofile.md
Title: "macOSImportedPFXCertificateProfile resource type" description: "MacOS PFX Import certificate profile"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"intendedPurpose": "String" } ```-----
v1.0 Intune Deviceconfig Macoskerberossinglesignonextension https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-macoskerberossinglesignonextension.md
Title: "macOSKerberosSingleSignOnExtension resource type" description: "Represents a Kerberos-type Single Sign-On extension profile for macOS devices."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"tlsForLDAPRequired": true } ```-----
v1.0 Intune Deviceconfig Macoskernelextension https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-macoskernelextension.md
Title: "macOSKernelExtension resource type" description: "Represents a specific macOS kernel extension. A macOS kernel extension can be described by its team identifier plus its bundle identifier."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"bundleId": "String" } ```-----
v1.0 Intune Deviceconfig Macoslaunchitem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-macoslaunchitem.md
Title: "macOSLaunchItem resource type" description: "Represents an app in the list of macOS launch items"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"hide": true } ```-----
v1.0 Intune Deviceconfig Macospkcscertificateprofile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-macospkcscertificateprofile.md
Title: "macOSPkcsCertificateProfile resource type" description: "MacOS PKCS certificate profile."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"allowAllAppsAccess": true } ```-----
v1.0 Intune Deviceconfig Macosprivacyaccesscontrolitem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-macosprivacyaccesscontrolitem.md
Title: "macOSPrivacyAccessControlItem resource type" description: "Represents per-process privacy preferences."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Macosprocessidentifiertype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-macosprocessidentifiertype.md
Title: "macOSProcessIdentifierType enum type" description: "Process identifier types for MacOS Privacy Preferences"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Process identifier types for MacOS Privacy Preferences
|:|:|:| |bundleID|1|Indicates an app with a bundle ID.| |path|2|Indicates a file path for a process.|-----
v1.0 Intune Deviceconfig Macosredirectsinglesignonextension https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-macosredirectsinglesignonextension.md
Title: "macOSRedirectSingleSignOnExtension resource type" description: "Represents a Redirect-type Single Sign-On extension profile for macOS devices."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Macosscepcertificateprofile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-macosscepcertificateprofile.md
Title: "macOSScepCertificateProfile resource type" description: "Mac OS SCEP certificate profile."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"allowAllAppsAccess": true } ```-----
v1.0 Intune Deviceconfig Macossinglesignonextension https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-macossinglesignonextension.md
Title: "macOSSingleSignOnExtension resource type" description: "An abstract base class for all macOS-specific single sign-on extension types."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"@odata.type": "#microsoft.graph.macOSSingleSignOnExtension" } ```-----
v1.0 Intune Deviceconfig Macossoftwareupdateaccountsummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-macossoftwareupdateaccountsummary.md
Title: "macOSSoftwareUpdateAccountSummary resource type" description: "MacOS software update account summary report for a device and user"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"lastUpdatedDateTime": "String (timestamp)" } ```-----
v1.0 Intune Deviceconfig Macossoftwareupdatebehavior https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-macossoftwareupdatebehavior.md
Title: "macOSSoftwareUpdateBehavior enum type" description: "Update behavior options for macOS software updates."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Update behavior options for macOS software updates.
|installASAP|3|Install an already downloaded software update.| |notifyOnly|4|Download the software update and notify the user via the App Store.| |installLater|5|Download the software update and install it at a later time.|-----
v1.0 Intune Deviceconfig Macossoftwareupdatecategory https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-macossoftwareupdatecategory.md
Title: "macOSSoftwareUpdateCategory enum type" description: "MacOS Software Update Category"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
MacOS Software Update Category
|configurationDataFile|1|A configuration data file update| |firmware|2|A firmware update| |other|3|All other update types|-----
v1.0 Intune Deviceconfig Macossoftwareupdatecategorysummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-macossoftwareupdatecategorysummary.md
Title: "macOSSoftwareUpdateCategorySummary resource type" description: "MacOS software update category summary report for a device and user"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"lastUpdatedDateTime": "String (timestamp)" } ```-----
v1.0 Intune Deviceconfig Macossoftwareupdateconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-macossoftwareupdateconfiguration.md
Title: "macOSSoftwareUpdateConfiguration resource type" description: "MacOS Software Update Configuration"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"updateTimeWindowUtcOffsetInMinutes": 1024 } ```-----
v1.0 Intune Deviceconfig Macossoftwareupdatedelaypolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-macossoftwareupdatedelaypolicy.md
Title: "macOSSoftwareUpdateDelayPolicy enum type" description: "Flag enum to determine whether to delay software updates for macOS."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Flag enum to determine whether to delay software updates for macOS.
|delayAppUpdateVisibility|2|Force delays for app software updates.| |unknownFutureValue|4|Sentinel member for cases where the client cannot handle the new enum values.| |delayMajorOsUpdateVisibility|8|Force delays for major OS software updates.|-----
v1.0 Intune Deviceconfig Macossoftwareupdatescheduletype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-macossoftwareupdatescheduletype.md
Title: "macOSSoftwareUpdateScheduleType enum type" description: "Update schedule type for macOS software updates."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Update schedule type for macOS software updates.
|alwaysUpdate|0|Always update.| |updateDuringTimeWindows|1|Update during time windows.| |updateOutsideOfTimeWindows|2|Update outside of time windows.|-----
v1.0 Intune Deviceconfig Macossoftwareupdatestate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-macossoftwareupdatestate.md
Title: "macOSSoftwareUpdateState enum type" description: "MacOS Software Update State"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
MacOS Software Update State
|installInsufficientPower|2005|There is not enough power to install the update| |installFailed|2006|Installation has failed for an unspecified reason| |commandFailed|2007|The schedule update command has failed for an unspecified reason|-----
v1.0 Intune Deviceconfig Macossoftwareupdatestatesummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-macossoftwareupdatestatesummary.md
Title: "macOSSoftwareUpdateStateSummary resource type" description: "MacOS software update state summary for a device and user"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"lastUpdatedDateTime": "String (timestamp)" } ```-----
v1.0 Intune Deviceconfig Macossystemextension https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-macossystemextension.md
Title: "macOSSystemExtension resource type" description: "Represents a specific macOS system extension."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"bundleId": "String" } ```-----
v1.0 Intune Deviceconfig Macossystemextensiontype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-macossystemextensiontype.md
Title: "macOSSystemExtensionType enum type" description: "Flag enum representing the allowed macOS system extension types."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Flag enum representing the allowed macOS system extension types.
|driverExtensionsAllowed|1|Enables driver extensions.| |networkExtensionsAllowed|2|Enables network extensions.| |endpointSecurityExtensionsAllowed|4|Enables endpoint security extensions.|-----
v1.0 Intune Deviceconfig Macossystemextensiontypemapping https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-macossystemextensiontypemapping.md
Title: "macOSSystemExtensionTypeMapping resource type" description: "Represents a mapping between team identifiers for macOS system extensions and system extension types."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"allowedTypes": "String" } ```-----
v1.0 Intune Deviceconfig Macostrustedrootcertificate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-macostrustedrootcertificate.md
Title: "macOSTrustedRootCertificate resource type" description: "OS X Trusted Root Certificate configuration profile."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"certFileName": "String" } ```-----
v1.0 Intune Deviceconfig Macosvpnconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-macosvpnconfiguration.md
Title: "macOSVpnConfiguration resource type" description: "By providing the configurations in this profile you can instruct the Mac device to connect to desired VPN endpoint. By specifying the authentication method and security types expected by VPN endpoint you can make the VPN connection seamless for end user."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Inherits from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnc
|server|[vpnServer](../resources/intune-deviceconfig-vpnserver.md)|VPN Server on the network. Make sure end users can access this network location. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)| |identifier|String|Identifier provided by VPN vendor when connection type is set to Custom VPN. For example: Cisco AnyConnect uses an identifier of the form com.cisco.anyconnect.applevpn.plugin Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)| |customData|[keyValue](../resources/intune-deviceconfig-keyvalue.md) collection|Custom data when connection type is set to Custom VPN. Use this field to enable functionality not supported by Intune, but available in your VPN solution. Contact your VPN vendor to learn how to add these key/value pairs. This collection can contain a maximum of 25 elements. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)|
-|customKeyValueData|[keyValuePair](../resources/intune-shared-keyvaluepair.md) collection|Custom data when connection type is set to Custom VPN. Use this field to enable functionality not supported by Intune, but available in your VPN solution. Contact your VPN vendor to learn how to add these key/value pairs. This collection can contain a maximum of 25 elements. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)|
+|customKeyValueData|[keyValuePair](../resources/intune-deviceconfig-keyvaluepair.md) collection|Custom data when connection type is set to Custom VPN. Use this field to enable functionality not supported by Intune, but available in your VPN solution. Contact your VPN vendor to learn how to add these key/value pairs. This collection can contain a maximum of 25 elements. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)|
|enableSplitTunneling|Boolean|Send all network traffic through VPN. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)| |authenticationMethod|[vpnAuthenticationMethod](../resources/intune-deviceconfig-vpnauthenticationmethod.md)|Authentication method for this VPN connection. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md). Possible values are: `certificate`, `usernameAndPassword`, `sharedSecret`, `derivedCredential`, `azureAD`.| |enablePerApp|Boolean|Setting this to true creates Per-App VPN payload which can later be associated with Apps that can trigger this VPN conneciton on the end user's iOS device. Inherited from [appleVpnConfiguration](../resources/intune-deviceconfig-applevpnconfiguration.md)|
Here is a JSON representation of the resource.
"optInToDeviceIdSharing": true } ```-----
v1.0 Intune Deviceconfig Macoswificonfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-macoswificonfiguration.md
Title: "macOSWiFiConfiguration resource type" description: "By providing the configurations in this profile you can instruct the macOS device to connect to desired Wi-Fi endpoint. By specifying the authentication method and security types expected by Wi-Fi endpoint you can make the Wi-Fi connection seamless for end user."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"preSharedKey": "String" } ```-----
v1.0 Intune Deviceconfig Macoswirednetworkconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-macoswirednetworkconfiguration.md
Title: "macOSWiredNetworkConfiguration resource type" description: "MacOS wired network configuration profile."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"enableOuterIdentityPrivacy": "String" } ```-----
v1.0 Intune Deviceconfig Managedalldevicecertificatestate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-managedalldevicecertificatestate.md
Title: "managedAllDeviceCertificateState resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"certificateIssuanceDateTime": "String (timestamp)" } ```-----
v1.0 Intune Deviceconfig Manageddevicecertificatestate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-manageddevicecertificatestate.md
Title: "managedDeviceCertificateState resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"certificateErrorCode": 1024 } ```-----
v1.0 Intune Deviceconfig Manageddeviceencryptionstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-manageddeviceencryptionstate.md
Title: "managedDeviceEncryptionState resource type" description: "Encryption report per device"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Manageddevicemobileappconfigurationsettingstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-manageddevicemobileappconfigurationsettingstate.md
Title: "managedDeviceMobileAppConfigurationSettingState resource type" description: "Managed Device Mobile App Configuration Setting State for a given device."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"settingInstanceId": "String" } ```-----
v1.0 Intune Deviceconfig Manageddevicereportedapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-manageddevicereportedapp.md
Title: "managedDeviceReportedApp resource type" description: "Application data for reporting"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"appId": "String" } ```-----
v1.0 Intune Deviceconfig Managementagenttype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-managementagenttype.md
Title: "managementAgentType enum type" description: "Management agent type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Management agent type.
|googleCloudDevicePolicyController|64|The device is managed by Google's CloudDPC.| |microsoft365ManagedMdm|258|This device is managed by Microsoft 365 through Intune.| |windowsManagementCloudApi|512|This device is managed by Windows Management Cloud API.|----
v1.0 Intune Deviceconfig Mediacontentratingaustralia https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-mediacontentratingaustralia.md
Title: "mediaContentRatingAustralia resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"tvRating": "String" } ```-----
v1.0 Intune Deviceconfig Mediacontentratingcanada https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-mediacontentratingcanada.md
Title: "mediaContentRatingCanada resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"tvRating": "String" } ```-----
v1.0 Intune Deviceconfig Mediacontentratingfrance https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-mediacontentratingfrance.md
Title: "mediaContentRatingFrance resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"tvRating": "String" } ```-----
v1.0 Intune Deviceconfig Mediacontentratinggermany https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-mediacontentratinggermany.md
Title: "mediaContentRatingGermany resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"tvRating": "String" } ```-----
v1.0 Intune Deviceconfig Mediacontentratingireland https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-mediacontentratingireland.md
Title: "mediaContentRatingIreland resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"tvRating": "String" } ```-----
v1.0 Intune Deviceconfig Mediacontentratingjapan https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-mediacontentratingjapan.md
Title: "mediaContentRatingJapan resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"tvRating": "String" } ```-----
v1.0 Intune Deviceconfig Mediacontentratingnewzealand https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-mediacontentratingnewzealand.md
Title: "mediaContentRatingNewZealand resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"tvRating": "String" } ```-----
v1.0 Intune Deviceconfig Mediacontentratingunitedkingdom https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-mediacontentratingunitedkingdom.md
Title: "mediaContentRatingUnitedKingdom resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"tvRating": "String" } ```-----
v1.0 Intune Deviceconfig Mediacontentratingunitedstates https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-mediacontentratingunitedstates.md
Title: "mediaContentRatingUnitedStates resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"tvRating": "String" } ```-----
v1.0 Intune Deviceconfig Meteredconnectionlimittype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-meteredconnectionlimittype.md
Title: "meteredConnectionLimitType enum type" description: "Metered Connection Limit Settings."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Metered Connection Limit Settings.
|unrestricted|0|Unrestricted| |fixed|1|Fixed| |variable|2|Variable|-----
v1.0 Intune Deviceconfig Microsoftlauncherdockpresence https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-microsoftlauncherdockpresence.md
Title: "microsoftLauncherDockPresence enum type" description: "Microsoft Launcher Dock Presence selection."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Microsoft Launcher Dock Presence selection.
|show|1|Indicates the device's dock will be displayed on the device.| |hide|2|Indicates the device's dock will be hidden on the device, but the user can access the dock by dragging the handler on the bottom of the screen.| |disabled|3|Indicates the device's dock will be disabled on the device.|-----
v1.0 Intune Deviceconfig Microsoftlaunchersearchbarplacement https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-microsoftlaunchersearchbarplacement.md
Title: "microsoftLauncherSearchBarPlacement enum type" description: "Microsoft Launcher Search Bar Placement selection."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Microsoft Launcher Search Bar Placement selection.
|top|1|Indicates that the search bar will be displayed on the top of the device.| |bottom|2|Indicates that the search bar will be displayed on the bottom of the device.| |hide|3|Indicates that the search bar will be hidden on the device.|-----
v1.0 Intune Deviceconfig Miracastchannel https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-miracastchannel.md
Title: "miracastChannel enum type" description: "Possible values for Miracast channel."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for Miracast channel.
|oneHundredFiftySeven|157|OneHundredFifty-Seven.| |oneHundredSixtyOne|161|OneHundredSixty-One.| |oneHundredSixtyFive|165|OneHundredSixty-Five.|-----
v1.0 Intune Deviceconfig Ndesconnector https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-ndesconnector.md
Title: "ndesConnector resource type" description: "Entity which represents an OnPrem Ndes connector."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"connectorVersion": "String" } ```-----
v1.0 Intune Deviceconfig Ndesconnectorstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-ndesconnectorstate.md
Title: "ndesConnectorState enum type" description: "The current status of the Ndes Connector."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
The current status of the Ndes Connector.
|none|0|State not available yet for this connector.| |active|1|Ndes connector has connected recently| |inactive|2|No recent activity for the Ndes connector|-----
v1.0 Intune Deviceconfig Networksinglesignontype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-networksinglesignontype.md
Title: "networkSingleSignOnType enum type" description: "Wi-Fi Network Single Sign On Type Settings."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Wi-Fi Network Single Sign On Type Settings.
|disabled|0|Disabled| |prelogon|1|Pre-Logon| |postlogon|2|Post-Logon|-----
v1.0 Intune Deviceconfig Noneapauthenticationmethodforeapttlstype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-noneapauthenticationmethodforeapttlstype.md
Title: "nonEapAuthenticationMethodForEapTtlsType enum type" description: "Non-EAP methods for authentication."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Non-EAP methods for authentication.
|challengeHandshakeAuthenticationProtocol|1|Challenge Handshake Authentication Protocol (CHAP).| |microsoftChap|2| Microsoft CHAP (MS-CHAP).| |microsoftChapVersionTwo|3|Microsoft CHAP Version 2 (MS-CHAP v2).|-----
v1.0 Intune Deviceconfig Noneapauthenticationmethodforpeap https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-noneapauthenticationmethodforpeap.md
Title: "nonEapAuthenticationMethodForPeap enum type" description: "Non-EAP methods for authentication when PEAP is the selected EAP type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Non-EAP methods for authentication when PEAP is the selected EAP type.
|:|:|:| |none|0|None.| |microsoftChapVersionTwo|1|Microsoft CHAP Version 2 (MS-CHAP v2).|-----
v1.0 Intune Deviceconfig Numberrange https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-numberrange.md
Title: "numberRange resource type" description: "Number Range definition."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"upperNumber": 1024 } ```-----
v1.0 Intune Deviceconfig Omasetting https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-omasetting.md
Title: "omaSetting resource type" description: "OMA Settings definition."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"isEncrypted": true } ```-----
v1.0 Intune Deviceconfig Omasettingbase64 https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-omasettingbase64.md
Title: "omaSettingBase64 resource type" description: "OMA Settings Base64 definition."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"value": "String" } ```-----
v1.0 Intune Deviceconfig Omasettingboolean https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-omasettingboolean.md
Title: "omaSettingBoolean resource type" description: "OMA Settings Boolean definition."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"value": true } ```-----
v1.0 Intune Deviceconfig Omasettingdatetime https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-omasettingdatetime.md
Title: "omaSettingDateTime resource type" description: "OMA Settings DateTime definition."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"value": "String (timestamp)" } ```-----
v1.0 Intune Deviceconfig Omasettingfloatingpoint https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-omasettingfloatingpoint.md
Title: "omaSettingFloatingPoint resource type" description: "OMA Settings Floating Point definition."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"value": 4.2 } ```-----
v1.0 Intune Deviceconfig Omasettinginteger https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-omasettinginteger.md
Title: "omaSettingInteger resource type" description: "OMA Settings Integer definition."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"isReadOnly": true } ```-----
v1.0 Intune Deviceconfig Omasettingstring https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-omasettingstring.md
Title: "omaSettingString resource type" description: "OMA Settings String definition."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"value": "String" } ```-----
v1.0 Intune Deviceconfig Omasettingstringxml https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-omasettingstringxml.md
Title: "omaSettingStringXml resource type" description: "OMA Settings StringXML definition."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"value": "binary" } ```-----
v1.0 Intune Deviceconfig Operatingsystemversionrange https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-operatingsystemversionrange.md
Title: "operatingSystemVersionRange resource type" description: "Operating System version range."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"highestVersion": "String" } ```-----
v1.0 Intune Deviceconfig Operator https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-operator.md
Title: "operator enum type" description: "Operator for rules."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Operator for rules.
|orderedSetEquals|22|OrderedSetEquals operator.| |subsetOf|23|SubsetOf operator.| |excludesAll|24|ExcludesAll operator.|-----
v1.0 Intune Deviceconfig Perfectforwardsecrecygroup https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-perfectforwardsecrecygroup.md
Title: "perfectForwardSecrecyGroup enum type" description: "Forward Secrecy Group values for Windows10 VPN policies with IKEv2 connection type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Forward Secrecy Group values for Windows10 VPN policies with IKEv2 connection ty
|ecp384|4|ECP384| |pfsMM|5|PFSMM| |pfs24|6|PFS24|-----
v1.0 Intune Deviceconfig Personalprofilepersonalplaystoremode https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-personalprofilepersonalplaystoremode.md
Title: "personalProfilePersonalPlayStoreMode enum type" description: "Used together with personalApplications to control how apps in the personal profile are allowed or blocked."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Used together with personalApplications to control how apps in the personal prof
|notConfigured|0|Not configured.| |blockedApps|1|Blocked Apps.| |allowedApps|2|Allowed Apps.|-----
v1.0 Intune Deviceconfig Policyplatformtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-policyplatformtype.md
Title: "policyPlatformType enum type" description: "Supported platform types for policies."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Supported platform types for policies.
|windows10XProfile|8|Windows10XProfile.| |androidAOSP|9|AndroidAOSPProfile.| |all|100|All platforms.|-----
v1.0 Intune Deviceconfig Poweractiontype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-poweractiontype.md
Title: "powerActionType enum type" description: "Power action types"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Power action types
|sleep|2|Put device in sleep state| |hibernate|3|Put device in hibernate state| |shutdown|4|Shutdown device|-----
v1.0 Intune Deviceconfig Prereleasefeatures https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-prereleasefeatures.md
Title: "prereleaseFeatures enum type" description: "Possible values for pre-release features."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for pre-release features.
|settingsOnly|1|Settings only pre-release features.| |settingsAndExperimentations|2|Settings and experimentations pre-release features.| |notAllowed|3|Pre-release features not allowed.|-----
v1.0 Intune Deviceconfig Ratingappstype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-ratingappstype.md
Title: "ratingAppsType enum type" description: "Apps rating as in media content"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Apps rating as in media content
|agesAbove9|3|9+, age 9 and above| |agesAbove12|4|12+, age 12 and above | |agesAbove17|5|17+, age 17 and above|-----
v1.0 Intune Deviceconfig Ratingaustraliamoviestype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-ratingaustraliamoviestype.md
Title: "ratingAustraliaMoviesType enum type" description: "Movies rating labels in Australia"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Movies rating labels in Australia
|mature|4|The M classification is not recommended for viewers under 15| |agesAbove15|5|The MA15+ classification is not suitable for viewers under 15| |agesAbove18|6|The R18+ classification is not suitable for viewers under 18|-----
v1.0 Intune Deviceconfig Ratingaustraliatelevisiontype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-ratingaustraliatelevisiontype.md
Title: "ratingAustraliaTelevisionType enum type" description: "TV content rating labels in Australia"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
TV content rating labels in Australia
|mature|6|The M classification is recommended for viewers over 15| |agesAbove15|7|The MA15+ classification is not suitable for viewers under 15| |agesAbove15AdultViolence|8|The AV15+ classification is not suitable for viewers under 15, adult violence-specific|-----
v1.0 Intune Deviceconfig Ratingcanadamoviestype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-ratingcanadamoviestype.md
Title: "ratingCanadaMoviesType enum type" description: "Movies rating labels in Canada"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Movies rating labels in Canada
|agesAbove14|4|The 14A classification is suitable for viewers above 14 or older| |agesAbove18|5|The 18A classification is suitable for viewers above 18 or older| |restricted|6|The R classification is restricted to 18 years and older|-----
v1.0 Intune Deviceconfig Ratingcanadatelevisiontype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-ratingcanadatelevisiontype.md
Title: "ratingCanadaTelevisionType enum type" description: "TV content rating labels in Canada"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
TV content rating labels in Canada
|parentalGuidance|5|PG, Parental Guidance| |agesAbove14|6|The 14+ classification is intended for viewers ages 14 and older| |agesAbove18|7|The 18+ classification is intended for viewers ages 18 and older|-----
v1.0 Intune Deviceconfig Ratingfrancemoviestype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-ratingfrancemoviestype.md
Title: "ratingFranceMoviesType enum type" description: "Movies rating labels in France"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Movies rating labels in France
|agesAbove12|3|The 12 classification prohibits the screening of the film to minors under 12| |agesAbove16|4|The 16 classification prohibits the screening of the film to minors under 16| |agesAbove18|5|The 18 classification prohibits the screening to minors under 18|-----
v1.0 Intune Deviceconfig Ratingfrancetelevisiontype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-ratingfrancetelevisiontype.md
Title: "ratingFranceTelevisionType enum type" description: "TV content rating labels in France"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
TV content rating labels in France
|agesAbove12|3|The -12 classification is not recommended for children under 12| |agesAbove16|4|The -16 classification is not recommended for children under 16| |agesAbove18|5|The -18 classification is not recommended for persons under 18|-----
v1.0 Intune Deviceconfig Ratinggermanymoviestype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-ratinggermanymoviestype.md
Title: "ratingGermanyMoviesType enum type" description: "Movies rating labels in Germany"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Movies rating labels in Germany
|agesAbove12|4|Ab 12 Jahren, ages 12 and older| |agesAbove16|5|Ab 16 Jahren, ages 16 and older| |adults|6|Ab 18 Jahren, adults only|-----
v1.0 Intune Deviceconfig Ratinggermanytelevisiontype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-ratinggermanytelevisiontype.md
Title: "ratingGermanyTelevisionType enum type" description: "TV content rating labels in Germany"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
TV content rating labels in Germany
|agesAbove12|4|Ab 12 Jahren, ages 12 and older| |agesAbove16|5|Ab 16 Jahren, ages 16 and older| |adults|6|Ab 18 Jahren, adults only|-----
v1.0 Intune Deviceconfig Ratingirelandmoviestype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-ratingirelandmoviestype.md
Title: "ratingIrelandMoviesType enum type" description: "Movies rating labels in Ireland"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Movies rating labels in Ireland
|agesAbove15|5|The 15A classification is suitable for viewers of 15 or older| |agesAbove16|6|The 16 classification is suitable for viewers of 16 or older| |adults|7|The 18 classification, suitable only for adults|-----
v1.0 Intune Deviceconfig Ratingirelandtelevisiontype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-ratingirelandtelevisiontype.md
Title: "ratingIrelandTelevisionType enum type" description: "TV content rating labels in Ireland"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
TV content rating labels in Ireland
|youngAdults|4|The YA classification is suitable for teenage audience| |parentalSupervision|5|The PS classification invites parents and guardians to consider restriction childrenΓÇÖs access| |mature|6|The MA classification is suitable for adults|-----
v1.0 Intune Deviceconfig Ratingjapanmoviestype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-ratingjapanmoviestype.md
Title: "ratingJapanMoviesType enum type" description: "Movies rating labels in Japan"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Movies rating labels in Japan
|parentalGuidance|3|The PG-12 classification requests parental guidance for young people under 12| |agesAbove15|4|The R15+ classification is suitable for viewers of 15 or older| |agesAbove18|5|The R18+ classification is suitable for viewers of 18 or older|-----
v1.0 Intune Deviceconfig Ratingjapantelevisiontype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-ratingjapantelevisiontype.md
Title: "ratingJapanTelevisionType enum type" description: "TV content rating labels in Japan"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
TV content rating labels in Japan
|allAllowed|0|Default value, allow all TV shows content| |allBlocked|1|Do not allow any TV shows content| |explicitAllowed|2|All TV content is explicitly allowed|-----
v1.0 Intune Deviceconfig Ratingnewzealandmoviestype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-ratingnewzealandmoviestype.md
Title: "ratingNewZealandMoviesType enum type" description: "Movies rating labels in New Zealand"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Movies rating labels in New Zealand
|agesAbove18|8|The R18 classification is restricted to persons 18 years and over| |restricted|9|The R classification is restricted to a certain audience| |agesAbove16Restricted|10|The RP16 classification requires viewers under 16 accompanied by a parent or an adult|-----
v1.0 Intune Deviceconfig Ratingnewzealandtelevisiontype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-ratingnewzealandtelevisiontype.md
Title: "ratingNewZealandTelevisionType enum type" description: "TV content rating labels in New Zealand"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
TV content rating labels in New Zealand
|general|2|The G classification excludes materials likely to harm children under 14| |parentalGuidance|3|The PGR classification encourages parents and guardians to supervise younger viewers| |adults|4|The AO classification is not suitable for children|-----
v1.0 Intune Deviceconfig Ratingunitedkingdommoviestype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-ratingunitedkingdommoviestype.md
Title: "ratingUnitedKingdomMoviesType enum type" description: "Movies rating labels in United Kingdom"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Movies rating labels in United Kingdom
|agesAbove12Cinema|6|12A, cinema release suitable for 12 years and over| |agesAbove15|7|15, suitable only for 15 years and older| |adults|8|Suitable only for adults|-----
v1.0 Intune Deviceconfig Ratingunitedkingdomtelevisiontype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-ratingunitedkingdomtelevisiontype.md
Title: "ratingUnitedKingdomTelevisionType enum type" description: "TV content rating labels in United Kingdom"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
TV content rating labels in United Kingdom
|allAllowed|0|Default value, allow all TV shows content| |allBlocked|1|Do not allow any TV shows content| |caution|2|Allowing TV contents with a warning message|-----
v1.0 Intune Deviceconfig Ratingunitedstatesmoviestype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-ratingunitedstatesmoviestype.md
Title: "ratingUnitedStatesMoviesType enum type" description: "Movies rating labels in United States"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Movies rating labels in United States
|parentalGuidance13|4|PG13, some material may be inappropriate for children under 13| |restricted|5|R, viewers under 17 require accompanying parent or adult guardian| |adults|6|NC17, adults only|-----
v1.0 Intune Deviceconfig Ratingunitedstatestelevisiontype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-ratingunitedstatestelevisiontype.md
Title: "ratingUnitedStatesTelevisionType enum type" description: "TV content rating labels in United States"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
TV content rating labels in United States
|parentalGuidance|5|TV-PG, parental guidance| |childrenAbove14|6|TV-14, children age 14 and above| |adults|7|TV-MA, adults only|-----
v1.0 Intune Deviceconfig Redirectsinglesignonextension https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-redirectsinglesignonextension.md
Title: "redirectSingleSignOnExtension resource type" description: "Represents an Apple Single Sign-On Extension."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Requiredpasswordtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-requiredpasswordtype.md
Title: "requiredPasswordType enum type" description: "Possible values of required passwords."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values of required passwords.
|deviceDefault|0|Device default value, no intent.| |alphanumeric|1|Alphanumeric password required.| |numeric|2|Numeric password required.|-----
v1.0 Intune Deviceconfig Restrictedappsstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-restrictedappsstate.md
Title: "restrictedAppsState enum type" description: "Restricted apps state"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Restricted apps state
|:|:|:| |prohibitedApps|0|Prohibited apps| |notApprovedApps|1|Not approved apps|-----
v1.0 Intune Deviceconfig Restrictedappsviolation https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-restrictedappsviolation.md
Title: "restrictedAppsViolation resource type" description: "Violation of restricted apps configuration profile per device per user"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Retirescheduledmanageddevice https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-retirescheduledmanageddevice.md
Title: "retireScheduledManagedDevice resource type" description: "ManagedDevices that are scheduled for retire"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
ManagedDevices that are scheduled for retire
|id|String|Key of the entity.| |managedDeviceId|String|Managed DeviceId| |managedDeviceName|String|Managed Device Name|
-|deviceType|[deviceType](../resources/intune-shared-devicetype.md)|Managed Device Device 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`.|
+|deviceType|[deviceType](../resources/intune-deviceconfig-devicetype.md)|Managed Device Device 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`.|
|complianceState|[complianceStatus](../resources/intune-shared-compliancestatus.md)|Managed Device ComplianceStatus. Possible values are: `unknown`, `notApplicable`, `compliant`, `remediated`, `nonCompliant`, `error`, `conflict`, `notAssigned`.| |retireAfterDateTime|DateTimeOffset|Managed Device Retire After DateTime| |managementAgent|[managementAgentType](../resources/intune-shared-managementagenttype.md)|Managed Device ManagementAgentType. Possible values are: `eas`, `mdm`, `easMdm`, `intuneClient`, `easIntuneClient`, `configurationManagerClient`, `configurationManagerClientMdm`, `configurationManagerClientMdmEas`, `unknown`, `jamf`, `googleCloudDevicePolicyController`, `microsoft365ManagedMdm`, `msSense`, `intuneAosp`.|
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Runstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-runstate.md
Title: "runState enum type" description: "Indicates the type of execution status of the device management script."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Indicates the type of execution status of the device management script.
|scriptError|3|Discovery script hits error.| |pending|4|Script is pending to execute.| |notApplicable|5|Script is not applicable for this device.|----
v1.0 Intune Deviceconfig Safesearchfiltertype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-safesearchfiltertype.md
Title: "safeSearchFilterType enum type" description: "Specifies what level of safe search (filtering adult content) is required"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Specifies what level of safe search (filtering adult content) is required
|userDefined|0|User Defined, default value, no intent.| |strict|1|Strict, highest filtering against adult content.| |moderate|2|Moderate filtering against adult content (valid search results will not be filtered).|-----
v1.0 Intune Deviceconfig Scheduledretirestate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-scheduledretirestate.md
Title: "scheduledRetireState enum type" description: "Cancel or confirm scheduled retire "-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Cancel or confirm scheduled retire
|cancelRetire|0|CancelRetire| |confirmRetire|1|ConfirmRetire| |unknownFutureValue|2|Evolvable enumeration sentinel value. Do not use.|-----
v1.0 Intune Deviceconfig Secureassessmentaccounttype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-secureassessmentaccounttype.md
Title: "secureAssessmentAccountType enum type" description: "Type of accounts that are allowed for Windows10SecureAssessment ConfigurationAccount."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Type of accounts that are allowed for Windows10SecureAssessment ConfigurationAcc
|domainAccount|1|Indicates a domain account in format of domain\user or user@domain.com.| |localAccount|2|Indicates a local account in format of username.| |localGuestAccount|3|Indicates a local guest account in format of test name.|-----
v1.0 Intune Deviceconfig Securebootwithdmatype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-securebootwithdmatype.md
Title: "secureBootWithDMAType enum type" description: "Possible values of Secure Boot with DMA"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values of Secure Boot with DMA
|notConfigured|0|Not configured, no operation| |withoutDMA|1|Turns on VBS with Secure Boot| |withDMA|3|Turns on VBS with Secure Boot and DMA|-----
v1.0 Intune Deviceconfig Servicestarttype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-servicestarttype.md
Title: "serviceStartType enum type" description: "Possible values of xbox service start type"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values of xbox service start type
|manual|0|Manual service start type(default)| |automatic|1|Automatic service start type| |disabled|2|Service start type disabled|-----
v1.0 Intune Deviceconfig Settingsource https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-settingsource.md
Title: "settingSource resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"sourceType": "String" } ```-----
v1.0 Intune Deviceconfig Settingstatedevicesummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-settingstatedevicesummary.md
Title: "settingStateDeviceSummary resource type" description: "Device Compilance Policy and Configuration for a Setting State summary"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"conflictDeviceCount": 1024 } ```-----
v1.0 Intune Deviceconfig Sharedpcaccountdeletionpolicytype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-sharedpcaccountdeletionpolicytype.md
Title: "sharedPCAccountDeletionPolicyType enum type" description: "Possible values for when accounts are deleted on a shared PC."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for when accounts are deleted on a shared PC.
|immediate|0|Delete immediately.| |diskSpaceThreshold|1|Delete at disk space threshold.| |diskSpaceThresholdOrInactiveThreshold|2|Delete at disk space threshold or inactive threshold.|-----
v1.0 Intune Deviceconfig Sharedpcaccountmanagerpolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-sharedpcaccountmanagerpolicy.md
Title: "sharedPCAccountManagerPolicy resource type" description: "SharedPC Account Manager Policy. Only applies when the account manager is enabled."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"removeAccountsBelowDiskFreePercentage": 1024 } ```-----
v1.0 Intune Deviceconfig Sharedpcallowedaccounttype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-sharedpcallowedaccounttype.md
Title: "sharedPCAllowedAccountType enum type" description: "Type of accounts that are allowed to share the PC."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Type of accounts that are allowed to share the PC.
|notConfigured|0|Not configured. Default value.| |guest|1|Only guest accounts.| |domain|2|Only domain-joined accounts.|-----
v1.0 Intune Deviceconfig Sharedpcconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-sharedpcconfiguration.md
Title: "sharedPCConfiguration resource type" description: "This topic provides descriptions of the declared methods, properties and relationships exposed by the sharedPCConfiguration resource."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"fastFirstSignIn": "String" } ```-----
v1.0 Intune Deviceconfig Signinassistantoptions https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-signinassistantoptions.md
Title: "signInAssistantOptions enum type" description: "Values for the SignInAssistantSettings."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Values for the SignInAssistantSettings.
|:|:|:| |notConfigured|0|Not configured - wlidsvc Start will be set to SERVICE_DEMAND_START.| |disabled|1|Disabled - wlidsvc Start will be set to SERVICE_DISABLED.|-----
v1.0 Intune Deviceconfig Singlesignonextension https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-singlesignonextension.md
Title: "singleSignOnExtension resource type" description: "Represents an Apple Single Sign-On Extension."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"@odata.type": "#microsoft.graph.singleSignOnExtension" } ```-----
v1.0 Intune Deviceconfig Sitesecuritylevel https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-sitesecuritylevel.md
Title: "siteSecurityLevel enum type" description: "Possible values for site security level."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for site security level.
|medium|3|Medium.| |mediumHigh|4|Medium-high.| |high|5|High.|-----
v1.0 Intune Deviceconfig Softwareupdatestatussummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-softwareupdatestatussummary.md
Title: "softwareUpdateStatusSummary resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"notApplicableUserCount": 1024 } ```-----
v1.0 Intune Deviceconfig Specifiedcaptivenetworkplugins https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-specifiedcaptivenetworkplugins.md
Title: "specifiedCaptiveNetworkPlugins resource type" description: "Specifies all the Captive network plugins allowed during the IKEv2 AlwaysOn VPN connection"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Statemanagementsetting https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-statemanagementsetting.md
Title: "stateManagementSetting enum type" description: "State Management Setting."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
State Management Setting.
|notConfigured|0|Not configured.| |blocked|1|Blocked.| |allowed|2|Allowed.|-----
v1.0 Intune Deviceconfig Subjectnameformat https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-subjectnameformat.md
Title: "subjectNameFormat enum type" description: "Subject Name Format Options."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Subject Name Format Options.
|commonNameAsAadDeviceId|7|Common Name As Serial Number.| |commonNameAsIntuneDeviceId|8|Common Name As Serial Number.| |commonNameAsDurableDeviceId|9|Common Name As Serial Number.|-----
v1.0 Intune Deviceconfig Unsupporteddeviceconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-unsupporteddeviceconfiguration.md
Title: "unsupportedDeviceConfiguration resource type" description: "UnsupportedDeviceConfiguration is used when an entity cannot be mapped to another model-compliant subtype of deviceConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Unsupporteddeviceconfigurationdetail https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-unsupporteddeviceconfigurationdetail.md
Title: "unsupportedDeviceConfigurationDetail resource type" description: "A description of why an entity is unsupported."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"propertyName": "String" } ```-----
v1.0 Intune Deviceconfig Updateclassification https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-updateclassification.md
Title: "updateClassification enum type" description: "Possible values for automatic update classification."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for automatic update classification.
|recommendedAndImportant|1|Recommended and important.| |important|2|Important.| |none|3|None.|-----
v1.0 Intune Deviceconfig Useremailsource https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-useremailsource.md
Title: "userEmailSource enum type" description: "Possible values for username source or email source."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for username source or email source.
|:|:|:| |userPrincipalName|0|User principal name.| |primarySmtpAddress|1|Primary SMTP address.|-----
v1.0 Intune Deviceconfig Usernamesource https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-usernamesource.md
Title: "usernameSource enum type" description: "Username source."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Username source.
|userPrincipalName|0|User principal name.| |primarySmtpAddress|1|Primary SMTP address.| |samAccountName|2|The user sam account name.|-----
v1.0 Intune Deviceconfig Visibilitysetting https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-visibilitysetting.md
Title: "visibilitySetting enum type" description: "Generic visibility state."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Generic visibility state.
|notConfigured|0|Not configured.| |hide|1|Hide.| |show|2|Show.|-----
v1.0 Intune Deviceconfig Vpnauthenticationmethod https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-vpnauthenticationmethod.md
Title: "vpnAuthenticationMethod enum type" description: "VPN Authentication Method."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
VPN Authentication Method.
|sharedSecret|2|Use Shared Secret for Authentication. Only valid for iOS IKEv2.| |derivedCredential|3|Use Derived Credential for Authentication.| |azureAD|4|Use Azure AD for authentication.|-----
v1.0 Intune Deviceconfig Vpnclientauthenticationtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-vpnclientauthenticationtype.md
Title: "vpnClientAuthenticationType enum type" description: "The type of VPN client authentication type"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
The type of VPN client authentication type
|:|:|:| |userAuthentication|0|User Authentication| |deviceAuthentication|1|Device Authentication|-----
v1.0 Intune Deviceconfig Vpnconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-vpnconfiguration.md
Title: "vpnConfiguration resource type" description: "Base VPN Configuration profile."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Vpndeadpeerdetectionrate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-vpndeadpeerdetectionrate.md
Title: "vpnDeadPeerDetectionRate enum type" description: "Determines how often to check if a peer connection is still alive"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Determines how often to check if a peer connection is still alive
|none|1|None| |low|2|Low| |high|3|High|-----
v1.0 Intune Deviceconfig Vpndnsrule https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-vpndnsrule.md
Title: "vpnDnsRule resource type" description: "VPN DNS Rule definition."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"persistent": true } ```-----
v1.0 Intune Deviceconfig Vpnencryptionalgorithmtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-vpnencryptionalgorithmtype.md
Title: "vpnEncryptionAlgorithmType enum type" description: "The type of VPN security association encryption algorithm"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
The type of VPN security association encryption algorithm
|aes192|6|AES-192| |aes192Gcm|7|AES-192-GCM| |chaCha20Poly1305|8|ChaCha20Poly1305|-----
v1.0 Intune Deviceconfig Vpnintegrityalgorithmtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-vpnintegrityalgorithmtype.md
Title: "vpnIntegrityAlgorithmType enum type" description: "The type of VPN security association integrity algorithm"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
The type of VPN security association integrity algorithm
|sha2_384|3|SHA2-384| |sha2_512|4|SHA2-512| |md5|5|MD5|-----
v1.0 Intune Deviceconfig Vpnlocalidentifier https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-vpnlocalidentifier.md
Title: "vpnLocalIdentifier enum type" description: "The type of VPN local identifier"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
The type of VPN local identifier
|deviceFQDN|0|Device Fully Qualified Domain Name| |empty|1|Empty| |clientCertificateSubjectName|2|Client Certificate Subject Name|-----
v1.0 Intune Deviceconfig Vpnondemandrule https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-vpnondemandrule.md
Title: "vpnOnDemandRule resource type" description: "VPN On-Demand Rule definition."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Vpnondemandruleconnectionaction https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-vpnondemandruleconnectionaction.md
Title: "vpnOnDemandRuleConnectionAction enum type" description: "VPN On-Demand Rule Connection Action."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
VPN On-Demand Rule Connection Action.
|evaluateConnection|1|Evaluate Connection.| |ignore|2|Ignore.| |disconnect|3|Disconnect.|-----
v1.0 Intune Deviceconfig Vpnondemandruleconnectiondomainaction https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-vpnondemandruleconnectiondomainaction.md
Title: "vpnOnDemandRuleConnectionDomainAction enum type" description: "VPN On-Demand Rule Connection Domain Action."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
VPN On-Demand Rule Connection Domain Action.
|:|:|:| |connectIfNeeded|0|Connect if needed.| |neverConnect|1|Never connect.|-----
v1.0 Intune Deviceconfig Vpnondemandruleinterfacetypematch https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-vpnondemandruleinterfacetypematch.md
Title: "vpnOnDemandRuleInterfaceTypeMatch enum type" description: "VPN On-Demand Rule Connection network interface type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
VPN On-Demand Rule Connection network interface type.
|ethernet|1|Ethernet.| |wiFi|2|WiFi.| |cellular|3|Cellular.|-----
v1.0 Intune Deviceconfig Vpnprovidertype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-vpnprovidertype.md
Title: "vpnProviderType enum type" description: "Provider type for per-app VPN."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Provider type for per-app VPN.
|notConfigured|0|Tunnel traffic is not explicitly configured.| |appProxy|1|Tunnel traffic at the application layer.| |packetTunnel|2|Tunnel traffic at the IP layer.|-----
v1.0 Intune Deviceconfig Vpnproxyserver https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-vpnproxyserver.md
Title: "vpnProxyServer resource type" description: "VPN Proxy Server."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"port": 1024 } ```-----
v1.0 Intune Deviceconfig Vpnroute https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-vpnroute.md
Title: "vpnRoute resource type" description: "VPN Route definition."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"prefixSize": 1024 } ```-----
v1.0 Intune Deviceconfig Vpnserver https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-vpnserver.md
Title: "vpnServer resource type" description: "VPN Server definition."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"isDefaultServer": true } ```-----
v1.0 Intune Deviceconfig Vpnservercertificatetype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-vpnservercertificatetype.md
Title: "vpnServerCertificateType enum type" description: "The type of certificate the VPN server will present to the VPN client for authentication"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
The type of certificate the VPN server will present to the VPN client for authen
|ecdsa256|1|ECDSA256| |ecdsa384|2|ECDSA384| |ecdsa521|3|ECDSA521|-----
v1.0 Intune Deviceconfig Vpnserviceexceptionaction https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-vpnserviceexceptionaction.md
Title: "vpnServiceExceptionAction enum type" description: "The VPN action to take for a specific service."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
The VPN action to take for a specific service.
|forceTrafficViaVPN|0|Make all traffic from that service go through the VPN| |allowTrafficOutside|1|Allow the service outside of the VPN| |dropTraffic|2|Drop all traffic from the service|-----
v1.0 Intune Deviceconfig Vpntrafficrule https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-vpntrafficrule.md
Title: "vpnTrafficRule resource type" description: "VPN Traffic Rule definition."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"claims": "String" } ```-----
v1.0 Intune Deviceconfig Vpntrafficruleapptype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-vpntrafficruleapptype.md
Title: "vpnTrafficRuleAppType enum type" description: "Indicates the type of app that a VPN traffic rule is associated with."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Indicates the type of app that a VPN traffic rule is associated with.
|none|0|The traffic rule is not associated with an app.| |desktop|1|The traffic rule is associated with a desktop app.| |universal|2|The traffic rule is associated with a Universal app.|-----
v1.0 Intune Deviceconfig Vpntrafficruleroutingpolicytype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-vpntrafficruleroutingpolicytype.md
Title: "vpnTrafficRuleRoutingPolicyType enum type" description: "Specifies the routing policy for a VPN traffic rule."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Specifies the routing policy for a VPN traffic rule.
|none|0|No routing policy specified.| |splitTunnel|1|Network traffic for the specified app will be routed through the VPN.| |forceTunnel|2|All network traffic will be routed through the VPN.|-----
v1.0 Intune Deviceconfig Vpntunnelconfigurationtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-vpntunnelconfigurationtype.md
Title: "vpnTunnelConfigurationType enum type" description: "The type of tunnels that will be present to the VPN client for configuration"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
The type of tunnels that will be present to the VPN client for configuration
|wifiAndCellular|0|WiFi and Cellular Tunnels| |cellular|1|Cellular Tunnel Only| |wifi|2|WiFi Tunnel Only|-----
v1.0 Intune Deviceconfig Webbrowsercookiesettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-webbrowsercookiesettings.md
Title: "webBrowserCookieSettings enum type" description: "Web Browser Cookie Settings."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Web Browser Cookie Settings.
|allowCurrentWebSite|2|Allow cookies from current Web site.| |allowFromWebsitesVisited|3|Allow Cookies from websites visited.| |allowAlways|4|Always allow cookies.|-----
v1.0 Intune Deviceconfig Weeklyschedule https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-weeklyschedule.md
Title: "weeklySchedule enum type" description: "Possible values for a weekly schedule."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for a weekly schedule.
|friday|7|Friday.| |saturday|8|Saturday.| |noScheduledScan|9|No Scheduled Scan|-----
v1.0 Intune Deviceconfig Welcomescreenmeetinginformation https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-welcomescreenmeetinginformation.md
Title: "welcomeScreenMeetingInformation enum type" description: "Possible values for welcome screen meeting information."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for welcome screen meeting information.
|userDefined|0|User Defined, default value, no intent.| |showOrganizerAndTimeOnly|1|Show organizer and time only.| |showOrganizerAndTimeAndSubject|2|Show organizer, time and subject (subject is hidden for private meetings).|-----
v1.0 Intune Deviceconfig Wifiauthenticationmethod https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-wifiauthenticationmethod.md
Title: "wiFiAuthenticationMethod enum type" description: "Wi-Fi authentication method."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Wi-Fi authentication method.
|certificate|0|Use an identity certificate for authentication.| |usernameAndPassword|1|Use username and password for authentication.| |derivedCredential|2|Use Derived Credential for authentication.|-----
v1.0 Intune Deviceconfig Wifiauthenticationtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-wifiauthenticationtype.md
Title: "wifiAuthenticationType enum type" description: "Wi-Fi Authentication Type Settings."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Wi-Fi Authentication Type Settings.
|machine|2|Machine Authentication| |machineOrUser|3|Machine or User Authentication| |guest|4|Guest Authentication|-----
v1.0 Intune Deviceconfig Wifiproxysetting https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-wifiproxysetting.md
Title: "wiFiProxySetting enum type" description: "Wi-Fi Proxy Settings."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Wi-Fi Proxy Settings.
|none|0|No Proxy.| |manual|1|Manual Proxy Settings via Address and Port.| |automatic|2|Automatic Proxy Settings via URL.|-----
v1.0 Intune Deviceconfig Wifisecuritytype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-wifisecuritytype.md
Title: "wiFiSecurityType enum type" description: "Wi-Fi Security Types."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Wi-Fi Security Types.
|wep|3|WEP Encryption.| |wpa2Personal|4|WPA2-Personal.| |wpa2Enterprise|5|WPA2-Enterprise. Must use WindowsWifiEnterpriseEAPConfiguration type to configure enterprise options.|-----
v1.0 Intune Deviceconfig Windows10appsforceupdateschedule https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windows10appsforceupdateschedule.md
Title: "windows10AppsForceUpdateSchedule resource type" description: "Windows 10 force update schedule for Apps"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"runImmediatelyIfAfterStartDateTime": true } ```-----
v1.0 Intune Deviceconfig Windows10appsupdaterecurrence https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windows10appsupdaterecurrence.md
Title: "windows10AppsUpdateRecurrence enum type" description: "Possible values for App update on Windows10 recurrence."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for App update on Windows10 recurrence.
|daily|1|Daily.| |weekly|2|Weekly.| |monthly|3|Monthly.|-----
v1.0 Intune Deviceconfig Windows10apptype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windows10apptype.md
Title: "windows10AppType enum type" description: "Windows 10 Application type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Windows 10 Application type.
|:|:|:| |desktop|0|Desktop.| |universal|1|Universal.|-----
v1.0 Intune Deviceconfig Windows10associatedapps https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windows10associatedapps.md
Title: "windows10AssociatedApps resource type" description: "Windows 10 Associated Application definition."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"identifier": "String" } ```-----
v1.0 Intune Deviceconfig Windows10certificateprofilebase https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windows10certificateprofilebase.md
Title: "windows10CertificateProfileBase resource type" description: "Base class for Windows 10 certificate profile."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"certificateValidityPeriodScale": "String" } ```-----
v1.0 Intune Deviceconfig Windows10compliancepolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windows10compliancepolicy.md
Title: "windows10CompliancePolicy resource type" description: "This class contains compliance settings for Windows 10."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Deviceconfig Windows10customconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windows10customconfiguration.md
Title: "windows10CustomConfiguration resource type" description: "This topic provides descriptions of the declared methods, properties and relationships exposed by the windows10CustomConfiguration resource."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Windows10devicefirmwareconfigurationinterface https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windows10devicefirmwareconfigurationinterface.md
Title: "windows10DeviceFirmwareConfigurationInterface resource type" description: "Graph properties for Device Firmware Configuration Interface "-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"wakeOnPower": "String" } ```-----
v1.0 Intune Deviceconfig Windows10devicemodetype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windows10devicemodetype.md
Title: "windows10DeviceModeType enum type" description: "Windows 10 Device Mode type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Windows 10 Device Mode type.
|:|:|:| |standardConfiguration|0|Standard Configuration| |sModeConfiguration|1|S Mode Configuration|-----
v1.0 Intune Deviceconfig Windows10easemailprofileconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windows10easemailprofileconfiguration.md
Title: "windows10EasEmailProfileConfiguration resource type" description: "By providing configurations in this profile you can instruct the native email client (Outlook) on Windows 10 devices to communicate with an Exchange server and get email, contacts, calendar, and tasks. Furthermore, you can also specify how much email to sync and how often the device should sync."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"requireSsl": true } ```-----
v1.0 Intune Deviceconfig Windows10editiontype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windows10editiontype.md
Title: "windows10EditionType enum type" description: "Windows 10 Edition type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Windows 10 Edition type.
|windows10Mobile|17|Windows 10 Mobile| |windows10IoTCore|18|Windows 10 IoT Core| |windows10IoTCoreCommercial|19|Windows 10 IoT Core Commercial|-----
v1.0 Intune Deviceconfig Windows10endpointprotectionconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windows10endpointprotectionconfiguration.md
Title: "windows10EndpointProtectionConfiguration resource type" description: "This topic provides descriptions of the declared methods, properties and relationships exposed by the Windows10EndpointProtectionConfiguration resource."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Deviceconfig Windows10enterprisemodernappmanagementconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windows10enterprisemodernappmanagementconfiguration.md
Title: "windows10EnterpriseModernAppManagementConfiguration resource type" description: "Windows10 Enterprise Modern App Management Configuration."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"uninstallBuiltInApps": true } ```-----
v1.0 Intune Deviceconfig Windows10generalconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windows10generalconfiguration.md
Title: "windows10GeneralConfiguration resource type" description: "This topic provides descriptions of the declared methods, properties and relationships exposed by the windows10GeneralConfiguration resource."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"configureTimeZone": "String" } ```-----
v1.0 Intune Deviceconfig Windows10importedpfxcertificateprofile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windows10importedpfxcertificateprofile.md
Title: "windows10ImportedPFXCertificateProfile resource type" description: "Windows 10 Desktop and Mobile PFX Import certificate profile"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"intendedPurpose": "String" } ```-----
v1.0 Intune Deviceconfig Windows10mobilecompliancepolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windows10mobilecompliancepolicy.md
Title: "windows10MobileCompliancePolicy resource type" description: "This class contains compliance settings for Windows 10 Mobile."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Windows10networkboundaryconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windows10networkboundaryconfiguration.md
Title: "windows10NetworkBoundaryConfiguration resource type" description: "Windows10 Network Boundary Configuration"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Deviceconfig Windows10networkproxyserver https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windows10networkproxyserver.md
Title: "windows10NetworkProxyServer resource type" description: "Network Proxy Server Policy."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"useForLocalAddresses": true } ```-----
v1.0 Intune Deviceconfig Windows10pfximportcertificateprofile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windows10pfximportcertificateprofile.md
Title: "windows10PFXImportCertificateProfile resource type" description: "Deprecated"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"keyStorageProvider": "String" } ```-----
v1.0 Intune Deviceconfig Windows10pkcscertificateprofile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windows10pkcscertificateprofile.md
Title: "windows10PkcsCertificateProfile resource type" description: "Windows 10 Desktop and Mobile PKCS certificate profile"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Windows10secureassessmentconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windows10secureassessmentconfiguration.md
Title: "windows10SecureAssessmentConfiguration resource type" description: "This topic provides descriptions of the declared methods, properties and relationships exposed by the secureAssessment resource."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"assessmentAppUserModelId": "String" } ```-----
v1.0 Intune Deviceconfig Windows10teamgeneralconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windows10teamgeneralconfiguration.md
Title: "windows10TeamGeneralConfiguration resource type" description: "This topic provides descriptions of the declared methods, properties and relationships exposed by the windows10TeamGeneralConfiguration resource."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"welcomeScreenMeetingInformation": "String" } ```-----
v1.0 Intune Deviceconfig Windows10vpnauthenticationmethod https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windows10vpnauthenticationmethod.md
Title: "windows10VpnAuthenticationMethod enum type" description: "Windows 10 VPN connection types."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Windows 10 VPN connection types.
|usernameAndPassword|1|Use username and password for authentication.| |customEapXml|2|Authentication method is specified in custom EAP XML.| |derivedCredential|3|Use Derived Credential for authentication.|-----
v1.0 Intune Deviceconfig Windows10vpnconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windows10vpnconfiguration.md
Title: "windows10VpnConfiguration resource type" description: "By providing the configurations in this profile you can instruct the Windows 10 device (desktop or mobile) to connect to desired VPN endpoint. By specifying the authentication method and security types expected by VPN endpoint you can make the VPN connection seamless for end user."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Deviceconfig Windows10vpnconnectiontype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windows10vpnconnectiontype.md
Title: "windows10VpnConnectionType enum type" description: "VPN connection types."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
VPN connection types.
|ciscoAnyConnect|10|Cisco AnyConnect| |unknownFutureValue|11|Sentinel member for cases where the client cannot handle the new enum values.| |microsoftTunnel|12|Microsoft Tunnel connection type|-----
v1.0 Intune Deviceconfig Windows10vpnprofiletarget https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windows10vpnprofiletarget.md
Title: "windows10VpnProfileTarget enum type" description: "Windows 10 VPN profile target types."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Windows 10 VPN profile target types.
|user|0|User targeted VPN profile.| |device|1|Device targeted VPN profile.| |autoPilotDevice|2|AutoPilot Device targeted VPN profile.|-----
v1.0 Intune Deviceconfig Windows10vpnproxyserver https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windows10vpnproxyserver.md
Title: "windows10VpnProxyServer resource type" description: "VPN Proxy Server."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"bypassProxyServerForLocalAddress": true } ```-----
v1.0 Intune Deviceconfig Windows81certificateprofilebase https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windows81certificateprofilebase.md
Title: "windows81CertificateProfileBase resource type" description: "Device Configuration."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Windows81compliancepolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windows81compliancepolicy.md
Title: "windows81CompliancePolicy resource type" description: "This class contains compliance settings for Windows 8.1."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"storageRequireEncryption": true } ```-----
v1.0 Intune Deviceconfig Windows81generalconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windows81generalconfiguration.md
Title: "windows81GeneralConfiguration resource type" description: "This topic provides descriptions of the declared methods, properties and relationships exposed by the windows81GeneralConfiguration resource."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"workFoldersUrl": "String" } ```-----
v1.0 Intune Deviceconfig Windows81scepcertificateprofile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windows81scepcertificateprofile.md
Title: "windows81SCEPCertificateProfile resource type" description: "Windows 8.1+ SCEP certificate profile"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"certificateStore": "String" } ```-----
v1.0 Intune Deviceconfig Windows81trustedrootcertificate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windows81trustedrootcertificate.md
Title: "windows81TrustedRootCertificate resource type" description: "Windows 8.1 Trusted Certificate configuration profile"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"destinationStore": "String" } ```-----
v1.0 Intune Deviceconfig Windows81vpnconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windows81vpnconfiguration.md
Title: "windows81VpnConfiguration resource type" description: "By providing the configurations in this profile you can instruct the Windows 8.1 (and later) devices to connect to desired VPN endpoint. By specifying the authentication method and security types expected by VPN endpoint you can make the VPN connection seamless for end user."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Deviceconfig Windows81vpnproxyserver https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windows81vpnproxyserver.md
Title: "windows81VpnProxyServer resource type" description: "VPN Proxy Server."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"bypassProxyServerForLocalAddress": true } ```-----
v1.0 Intune Deviceconfig Windows81wifiimportconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windows81wifiimportconfiguration.md
Title: "windows81WifiImportConfiguration resource type" description: "Windows 8.1+ Wi-Fi import configuration. By configuring this profile you can instruct Windows 8.1 (and later) devices to connect to desired Wi-Fi endpoint. Connect a Windows 8.1 device to the desired Wi-Fi network and extract the XML from that device to later embed into this Wi-Fi profile."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"payload": "binary" } ```-----
v1.0 Intune Deviceconfig Windowsappstartlayouttilesize https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowsappstartlayouttilesize.md
Title: "windowsAppStartLayoutTileSize enum type" description: "The tile size of Windows app in the start layout."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
The tile size of Windows app in the start layout.
|medium|2|Medium 2x2.| |wide|3|Wide 4x2.| |large|4|Large 4x4.|-----
v1.0 Intune Deviceconfig Windowscertificateprofilebase https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowscertificateprofilebase.md
Title: "windowsCertificateProfileBase resource type" description: "Device Configuration."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"certificateValidityPeriodScale": "String" } ```-----
v1.0 Intune Deviceconfig Windowsdefenderadvancedthreatprotectionconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowsdefenderadvancedthreatprotectionconfiguration.md
Title: "windowsDefenderAdvancedThreatProtectionConfiguration resource type" description: "Windows Defender AdvancedThreatProtection Configuration."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"advancedThreatProtectionOffboardingFilename": "String" } ```-----
v1.0 Intune Deviceconfig Windowsdefendertamperprotectionoptions https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowsdefendertamperprotectionoptions.md
Title: "windowsDefenderTamperProtectionOptions enum type" description: "Defender TamperProtection setting options"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Defender TamperProtection setting options
|notConfigured|0|Not Configured| |enable|1|Enable windows defender tamper protection| |disable|2|Disable windows defender tamper protection|-----
v1.0 Intune Deviceconfig Windowsdeliveryoptimizationconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowsdeliveryoptimizationconfiguration.md
Title: "windowsDeliveryOptimizationConfiguration resource type" description: "Windows Delivery Optimization configuration"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"cacheServerBackgroundDownloadFallbackToHttpDelayInSeconds": 1024 } ```-----
v1.0 Intune Deviceconfig Windowsdeliveryoptimizationmode https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowsdeliveryoptimizationmode.md
Title: "windowsDeliveryOptimizationMode enum type" description: "Delivery optimization mode for peer distribution"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Delivery optimization mode for peer distribution
|httpWithInternetPeering|4|HTTP blended with Internet peering| |simpleDownload|99|Simple download mode with no peering| |bypassMode|100|Bypass mode. Do not use Delivery Optimization and use BITS instead|-----
v1.0 Intune Deviceconfig Windowsedgekiosktype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowsedgekiosktype.md
Title: "windowsEdgeKioskType enum type" description: "Edge kiosk type"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Edge kiosk type
|:|:|:| |publicBrowsing|0|public-browsing| |fullScreen|1|fullscreen|-----
v1.0 Intune Deviceconfig Windowsfirewallnetworkprofile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowsfirewallnetworkprofile.md
Title: "windowsFirewallNetworkProfile resource type" description: "Windows Firewall Profile Policies."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"policyRulesFromGroupPolicyNotMerged": true } ```-----
v1.0 Intune Deviceconfig Windowsfirewallrule https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowsfirewallrule.md
Title: "windowsFirewallRule resource type" description: "A rule controlling traffic through the Windows Firewall."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"localUserAuthorizations": "String" } ```-----
v1.0 Intune Deviceconfig Windowsfirewallruleinterfacetypes https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowsfirewallruleinterfacetypes.md
Title: "windowsFirewallRuleInterfaceTypes enum type" description: "Flags representing firewall rule interface types."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Flags representing firewall rule interface types.
|remoteAccess|1|The Remote Access interface type.| |wireless|2|The Wireless interface type.| |lan|4|The LAN interface type.|-----
v1.0 Intune Deviceconfig Windowsfirewallrulenetworkprofiletypes https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowsfirewallrulenetworkprofiletypes.md
Title: "windowsFirewallRuleNetworkProfileTypes enum type" description: "Flags representing which network profile types apply to a firewall rule."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Flags representing which network profile types apply to a firewall rule.
|domain|1|The profile for networks that are connected to domains.| |private|2|The profile for private networks.| |public|4|The profile for public networks.|-----
v1.0 Intune Deviceconfig Windowsfirewallruletrafficdirectiontype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowsfirewallruletrafficdirectiontype.md
Title: "windowsFirewallRuleTrafficDirectionType enum type" description: "Firewall rule traffic directions."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Firewall rule traffic directions.
|notConfigured|0|Not configured.| |out|1|The rule applies to outbound traffic.| |in|2|The rule applies to inbound traffic.|-----
v1.0 Intune Deviceconfig Windowshealthmonitoringconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowshealthmonitoringconfiguration.md
Title: "windowsHealthMonitoringConfiguration resource type" description: "Windows device health monitoring configuration"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"configDeviceHealthMonitoringCustomScope": "String" } ```-----
v1.0 Intune Deviceconfig Windowshealthmonitoringscope https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowshealthmonitoringscope.md
Title: "windowsHealthMonitoringScope enum type" description: "Device health monitoring scope"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Device health monitoring scope
|healthMonitoring|1|Basic events for windows device health monitoring| |bootPerformance|2|Boot performance events| |windowsUpdates|4|Windows updates events|-----
v1.0 Intune Deviceconfig Windowsidentityprotectionconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowsidentityprotectionconfiguration.md
Title: "windowsIdentityProtectionConfiguration resource type" description: "This entity provides descriptions of the declared methods, properties and relationships exposed by Windows Hello for Business."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"windowsHelloForBusinessBlocked": true } ```-----
v1.0 Intune Deviceconfig Windowskioskactivedirectorygroup https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowskioskactivedirectorygroup.md
Title: "windowsKioskActiveDirectoryGroup resource type" description: "The class used to identify an Azure Directory group for the kiosk configuration"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"groupName": "String" } ```-----
v1.0 Intune Deviceconfig Windowskioskappbase https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowskioskappbase.md
Title: "windowsKioskAppBase resource type" description: "The base class for a type of apps"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"autoLaunch": true } ```-----
v1.0 Intune Deviceconfig Windowskioskappconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowskioskappconfiguration.md
Title: "windowsKioskAppConfiguration resource type" description: "The app base class used to identify the application info for the kiosk configuration"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"@odata.type": "#microsoft.graph.windowsKioskAppConfiguration" } ```-----
v1.0 Intune Deviceconfig Windowskioskapptype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowskioskapptype.md
Title: "windowsKioskAppType enum type" description: "The type of Windows kiosk app."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
The type of Windows kiosk app.
|store|1|Store App.| |desktop|2|Desktop App.| |aumId|3|Input by AUMID.|-----
v1.0 Intune Deviceconfig Windowskioskautologon https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowskioskautologon.md
Title: "windowsKioskAutologon resource type" description: "The class used to identify an autologon kiosk configuration"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"@odata.type": "#microsoft.graph.windowsKioskAutologon" } ```-----
v1.0 Intune Deviceconfig Windowskioskazureadgroup https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowskioskazureadgroup.md
Title: "windowsKioskAzureADGroup resource type" description: "The class used to identify an AzureAD group for the kiosk configuration"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"groupId": "String" } ```-----
v1.0 Intune Deviceconfig Windowskioskazureaduser https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowskioskazureaduser.md
Title: "windowsKioskAzureADUser resource type" description: "The class used to identify an AzureAD user account for the kiosk configuration"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"userPrincipalName": "String" } ```-----
v1.0 Intune Deviceconfig Windowskioskconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowskioskconfiguration.md
Title: "windowsKioskConfiguration resource type" description: "This entity provides descriptions of the declared methods, properties and relationships exposed by the kiosk resource."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Deviceconfig Windowskioskdesktopapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowskioskdesktopapp.md
Title: "windowsKioskDesktopApp resource type" description: "The base class for a type of apps"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"desktopApplicationLinkPath": "String" } ```-----
v1.0 Intune Deviceconfig Windowskioskforceupdateschedule https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowskioskforceupdateschedule.md
Title: "windowsKioskForceUpdateSchedule resource type" description: "Windows 10 force update schedule for Kiosk devices."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"runImmediatelyIfAfterStartDateTime": true } ```-----
v1.0 Intune Deviceconfig Windowskiosklocalgroup https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowskiosklocalgroup.md
Title: "windowsKioskLocalGroup resource type" description: "The class used to identify a local group for the kiosk configuration"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"groupName": "String" } ```-----
v1.0 Intune Deviceconfig Windowskiosklocaluser https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowskiosklocaluser.md
Title: "windowsKioskLocalUser resource type" description: "The class used to identify a local account for the kiosk configuration"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"userName": "String" } ```-----
v1.0 Intune Deviceconfig Windowskioskmultipleapps https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowskioskmultipleapps.md
Title: "windowsKioskMultipleApps resource type" description: "The class used to identify the MultiMode app configuration for the kiosk configuration"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"startMenuLayoutXml": "binary" } ```-----
v1.0 Intune Deviceconfig Windowskioskprofile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowskioskprofile.md
Title: "windowsKioskProfile resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Windowskiosksingleuwpapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowskiosksingleuwpapp.md
Title: "windowsKioskSingleUWPApp resource type" description: "The class used to identify the UWP app info for the kiosk configuration"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Deviceconfig Windowskiosksinglewin32app https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowskiosksinglewin32app.md
Title: "windowsKioskSingleWin32App resource type" description: "The class used to identify the single app configuration for the kiosk win32 configuration"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Deviceconfig Windowskioskuser https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowskioskuser.md
Title: "windowsKioskUser resource type" description: "The user base class used to identify the account info for the kiosk configuration"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"@odata.type": "#microsoft.graph.windowsKioskUser" } ```-----
v1.0 Intune Deviceconfig Windowskioskuwpapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowskioskuwpapp.md
Title: "windowsKioskUWPApp resource type" description: "The base class for a type of apps"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"containedAppId": "String" } ```-----
v1.0 Intune Deviceconfig Windowskioskvisitor https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowskioskvisitor.md
Title: "windowsKioskVisitor resource type" description: "The class used to identify a visitor kiosk account"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"@odata.type": "#microsoft.graph.windowsKioskVisitor" } ```-----
v1.0 Intune Deviceconfig Windowskioskwin32app https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowskioskwin32app.md
Title: "windowsKioskWin32App resource type" description: "KioskModeApp v4 for Win32 app support"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"edgeKiosk": "String" } ```-----
v1.0 Intune Deviceconfig Windowsnetworkisolationpolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowsnetworkisolationpolicy.md
Title: "windowsNetworkIsolationPolicy resource type" description: "Windows Network Isolation Policy"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Windowsphone81certificateprofilebase https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowsphone81certificateprofilebase.md
Title: "windowsPhone81CertificateProfileBase resource type" description: "Base Windows Phone 8.1+ certificate profile."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Windowsphone81compliancepolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowsphone81compliancepolicy.md
Title: "windowsPhone81CompliancePolicy resource type" description: "This class contains compliance settings for Windows 8.1 Mobile."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"storageRequireEncryption": true } ```-----
v1.0 Intune Deviceconfig Windowsphone81customconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowsphone81customconfiguration.md
Title: "windowsPhone81CustomConfiguration resource type" description: "This topic provides descriptions of the declared methods, properties and relationships exposed by the windowsPhone81CustomConfiguration resource."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Windowsphone81generalconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowsphone81generalconfiguration.md
Title: "windowsPhone81GeneralConfiguration resource type" description: "This topic provides descriptions of the declared methods, properties and relationships exposed by the windowsPhone81GeneralConfiguration resource."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"windowsStoreBlocked": true } ```-----
v1.0 Intune Deviceconfig Windowsphone81importedpfxcertificateprofile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowsphone81importedpfxcertificateprofile.md
Title: "windowsPhone81ImportedPFXCertificateProfile resource type" description: "Windows 8.1 Phone and Mobile PFX Import certificate profile"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"intendedPurpose": "String" } ```-----
v1.0 Intune Deviceconfig Windowsphone81scepcertificateprofile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowsphone81scepcertificateprofile.md
Title: "windowsPhone81SCEPCertificateProfile resource type" description: "Windows Phone 8.1+ SCEP certificate profile"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"subjectAlternativeNameFormatString": "String" } ```-----
v1.0 Intune Deviceconfig Windowsphone81trustedrootcertificate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowsphone81trustedrootcertificate.md
Title: "windowsPhone81TrustedRootCertificate resource type" description: "Windows Phone 8.1+ Trusted Root Certificate configuration profile"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"certFileName": "String" } ```-----
v1.0 Intune Deviceconfig Windowsphone81vpnconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowsphone81vpnconfiguration.md
Title: "windowsPhone81VpnConfiguration resource type" description: "By providing the configurations in this profile you can instruct the Windows Phone 8.1 to connect to desired VPN endpoint. By specifying the authentication method and security types expected by VPN endpoint you can make the VPN connection seamless for end user."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Windowsphoneeasemailprofileconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowsphoneeasemailprofileconfiguration.md
Title: "windowsPhoneEASEmailProfileConfiguration resource type" description: "By providing configurations in this profile you can instruct the native email client on Windows Phone to communicate with an Exchange server and get email, contacts, calendar, and tasks. Furthermore, you can also specify how much email to sync and how often the device should sync."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"requireSsl": true } ```-----
v1.0 Intune Deviceconfig Windowsprivacydataaccesscontrolitem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowsprivacydataaccesscontrolitem.md
Title: "windowsPrivacyDataAccessControlItem resource type" description: "Specify access control level per privacy data category"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"appDisplayName": "String" } ```-----
v1.0 Intune Deviceconfig Windowsprivacydataaccesslevel https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowsprivacydataaccesslevel.md
Title: "windowsPrivacyDataAccessLevel enum type" description: "Determine the access level to specific Windows privacy data category."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Determine the access level to specific Windows privacy data category.
|forceAllow|1|Apps will be allowed to access the specified privacy data.| |forceDeny|2|Apps will be denied to access specified privacy data.| |userInControl|3|Users will be prompted when apps try to access specified privacy data.|-----
v1.0 Intune Deviceconfig Windowsprivacydatacategory https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowsprivacydatacategory.md
Title: "windowsPrivacyDataCategory enum type" description: "Windows privacy data category specifier for privacy data access."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Windows privacy data category specifier for privacy data access.
|tasks|16|Let apps access Task Scheduler. Added in Windows 10, version 1703.| |syncWithDevices|17|Let apps automatically share and sync info with wireless devices that donΓÇÖt explicitly pair with userΓÇÖs device. Added in Windows 10, version 1607.| |trustedDevices|18|Let apps access trusted devices. Added in Windows 10, version 1607.|-----
v1.0 Intune Deviceconfig Windowssmodeconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowssmodeconfiguration.md
Title: "windowsSModeConfiguration enum type" description: "The possible options to configure S mode unlock"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
The possible options to configure S mode unlock
|noRestriction|0|This option will remove all restrictions to unlock S mode - default| |block|1|This option will block the user to unlock the device from S mode| |unlock|2|This option will unlock the device from S mode|-----
v1.0 Intune Deviceconfig Windowsspotlightenablementsettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowsspotlightenablementsettings.md
Title: "windowsSpotlightEnablementSettings enum type" description: "Allows IT admind to set a predefined default search engine for MDM-Controlled devices"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Allows IT admind to set a predefined default search engine for MDM-Controlled de
|notConfigured|0|Spotlight on lock screen is not configured| |disabled|1|Disable Windows Spotlight on lock screen| |enabled|2|Enable Windows Spotlight on lock screen|-----
v1.0 Intune Deviceconfig Windowsstartmenuapplistvisibilitytype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowsstartmenuapplistvisibilitytype.md
Title: "windowsStartMenuAppListVisibilityType enum type" description: "Type of start menu app list visibility."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Type of start menu app list visibility.
|collapse|1|Collapse the app list on the start menu.| |remove|2|Removes the app list entirely from the start menu.| |disableSettingsApp|4|Disables the corresponding toggle (Collapse or Remove) in the Settings app.|-----
v1.0 Intune Deviceconfig Windowsstartmenumodetype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowsstartmenumodetype.md
Title: "windowsStartMenuModeType enum type" description: "Type of display modes for the start menu."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Type of display modes for the start menu.
|userDefined|0|User defined. Default value.| |fullScreen|1|Full screen.| |nonFullScreen|2|Non-full screen.|-----
v1.0 Intune Deviceconfig Windowsupdateactivehoursinstall https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowsupdateactivehoursinstall.md
Title: "windowsUpdateActiveHoursInstall resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"activeHoursEnd": "String (time of day)" } ```-----
v1.0 Intune Deviceconfig Windowsupdateforbusinessconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowsupdateforbusinessconfiguration.md
Title: "windowsUpdateForBusinessConfiguration resource type" description: "Windows Update for business configuration, allows you to specify how and when Windows as a Service updates your Windows 10/11 devices with feature and quality updates. Supports ODATA clauses that DeviceConfiguration entity supports: $filter by types of DeviceConfiguration, $top, $select only DeviceConfiguration base properties, $orderby only DeviceConfiguration base properties, and $skip. The query parameter '$search' is not supported."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"allowWindows11Upgrade": true } ```-----
v1.0 Intune Deviceconfig Windowsupdateforbusinessupdateweeks https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowsupdateforbusinessupdateweeks.md
Title: "windowsUpdateForBusinessUpdateWeeks enum type" description: "Scheduled the update installation on the weeks of the month"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Scheduled the update installation on the weeks of the month
|fourthWeek|8|Scheduled the update installation on the fourth week of the month| |everyWeek|15|Scheduled the update installation on every week of the month| |unknownFutureValue|22|Evolvable enum member|-----
v1.0 Intune Deviceconfig Windowsupdateinstallscheduletype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowsupdateinstallscheduletype.md
Title: "windowsUpdateInstallScheduleType resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"@odata.type": "#microsoft.graph.windowsUpdateInstallScheduleType" } ```-----
v1.0 Intune Deviceconfig Windowsupdatenotificationdisplayoption https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowsupdatenotificationdisplayoption.md
Title: "windowsUpdateNotificationDisplayOption enum type" description: "Windows Update Notification Display Options"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Windows Update Notification Display Options
|restartWarningsOnly|2|Turn off all notifications, excluding restart warnings.| |disableAllNotifications|3|Turn off all notifications, including restart warnings.| |unknownFutureValue|4|Evolvable enum member|-----
v1.0 Intune Deviceconfig Windowsupdatescheduledinstall https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowsupdatescheduledinstall.md
Title: "windowsUpdateScheduledInstall resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"scheduledInstallTime": "String (time of day)" } ```-----
v1.0 Intune Deviceconfig Windowsupdatestatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowsupdatestatus.md
Title: "windowsUpdateStatus enum type" description: "Windows update for business configuration device states"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Windows update for business configuration device states
|pendingInstallation|1|There are updates thatΓÇÖs pending installation which includes updates that are not approved. There are no Pending reboot updates, no failed updates.| |pendingReboot|2|There are updates that requires reboot. There are not failed updates.| |failed|3|There are updates failed to install on the device.|-----
v1.0 Intune Deviceconfig Windowsupdatetype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowsupdatetype.md
Title: "windowsUpdateType enum type" description: "Which branch devices will receive their updates from"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Which branch devices will receive their updates from
|windowsInsiderBuildFast|3|Windows Insider build - Fast| |windowsInsiderBuildSlow|4|Windows Insider build - Slow| |windowsInsiderBuildRelease|5|Release Windows Insider build|-----
v1.0 Intune Deviceconfig Windowsuseraccountcontrolsettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowsuseraccountcontrolsettings.md
Title: "windowsUserAccountControlSettings enum type" description: "Possible values for Windows user account control settings."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for Windows user account control settings.
|notifyOnAppChanges|2|Notify on app changes.| |notifyOnAppChangesWithoutDimming|3|Notify on app changes without dimming desktop.| |neverNotify|4|Never notify.|-----
v1.0 Intune Deviceconfig Windowsvpnconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowsvpnconfiguration.md
Title: "windowsVpnConfiguration resource type" description: "Windows VPN configuration profile."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"customXml": "binary" } ```-----
v1.0 Intune Deviceconfig Windowsvpnconnectiontype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowsvpnconnectiontype.md
Title: "windowsVpnConnectionType enum type" description: "Windows VPN connection type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Windows VPN connection type.
|f5EdgeClient|1|F5 Edge Client.| |dellSonicWallMobileConnect|2|Dell SonicWALL Mobile Connection.| |checkPointCapsuleVpn|3|Check Point Capsule VPN.|-----
v1.0 Intune Deviceconfig Windowswificonfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowswificonfiguration.md
Title: "windowsWifiConfiguration resource type" description: "Device Configuration."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"forceFIPSCompliance": true } ```-----
v1.0 Intune Deviceconfig Windowswifienterpriseeapconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowswifienterpriseeapconfiguration.md
Title: "windowsWifiEnterpriseEAPConfiguration resource type" description: "This entity provides descriptions of the declared methods, properties and relationships exposed by the Wifi CSP."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"authenticationType": "String" } ```-----
v1.0 Intune Deviceconfig Windowswirednetworkconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-windowswirednetworkconfiguration.md
Title: "windowsWiredNetworkConfiguration resource type" description: "This entity provides descriptions of the declared methods, properties and relationships exposed by the Wired Network CSP."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"forceFIPSCompliance": true } ```-----
v1.0 Intune Deviceconfig Wirednetworkauthenticationmethod https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-wirednetworkauthenticationmethod.md
Title: "wiredNetworkAuthenticationMethod enum type" description: "Wired Network authentication method."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Wired Network authentication method.
|usernameAndPassword|1|Use username and password for authentication.| |derivedCredential|2|Use Derived Credential for authentication.| |unknownFutureValue|3|Sentinel member for cases where the client cannot handle the new enum values.|-----
v1.0 Intune Deviceconfig Wirednetworkauthenticationtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-wirednetworkauthenticationtype.md
Title: "wiredNetworkAuthenticationType enum type" description: "Wired Network Authentication Type Settings."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Wired Network Authentication Type Settings.
|machineOrUser|3|Machine or User Authentication| |guest|4|Guest Authentication| |unknownFutureValue|5|Sentinel member for cases where the client cannot handle the new enum values.|-----
v1.0 Intune Deviceconfig Wirednetworkinterface https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfig-wirednetworkinterface.md
Title: "wiredNetworkInterface enum type" description: "Apple network interface type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Apple network interface type.
|firstEthernet|4|First Ethernet.| |secondEthernet|5|Second Ethernet.| |thirdEthernet|6|Third Ethernet.|-----
v1.0 Intune Deviceconfigv2 Devicemanagementcomplianceactionitem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementcomplianceactionitem.md
Title: "deviceManagementComplianceActionItem resource type" description: "Scheduled Action for Rule"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementcomplianceactiontype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementcomplianceactiontype.md
Title: "deviceManagementComplianceActionType enum type" description: "Scheduled Action Type Enum"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Scheduled Action Type Enum
|removeResourceAccessProfiles|5|Remove Resource Access Profiles from the device| |pushNotification|9|Send push notification to device| |remoteLock|10|Remotely lock the device|-----
v1.0 Intune Deviceconfigv2 Devicemanagementcompliancepolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementcompliancepolicy.md
Title: "deviceManagementCompliancePolicy resource type" description: "Device Management Compliance Policy"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"isAssigned": true } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementcompliancescheduledactionforrule https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementcompliancescheduledactionforrule.md
Title: "deviceManagementComplianceScheduledActionForRule resource type" description: "Scheduled Action for Rule"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"ruleName": "String" } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationazureadtrusttype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationazureadtrusttype.md
Title: "deviceManagementConfigurationAzureAdTrustType enum type" description: "Required AAD Trust Type"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Required AAD Trust Type
|azureAdJoined|1|AAD Joined Trust Type| |addWorkAccount|2|AddWorkAccount| |mdmOnly|4|MDM only|-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationcategory https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationcategory.md
Title: "deviceManagementConfigurationCategory resource type" description: "Device Management Configuration Policy"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationchoicesettingcollectiondefinition https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationchoicesettingcollectiondefinition.md
Title: "deviceManagementConfigurationChoiceSettingCollectionDefinition resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"minimumCount": 1024 } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationchoicesettingcollectioninstance https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationchoicesettingcollectioninstance.md
Title: "deviceManagementConfigurationChoiceSettingCollectionInstance resource type" description: "Setting instance within policy"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationchoicesettingcollectioninstancetemplate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationchoicesettingcollectioninstancetemplate.md
Title: "deviceManagementConfigurationChoiceSettingCollectionInstanceTemplate resource type" description: "Choice Setting Collection Instance Template"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"allowUnmanagedValues": true } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationchoicesettingdefinition https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationchoicesettingdefinition.md
Title: "deviceManagementConfigurationChoiceSettingDefinition resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"defaultOptionId": "String" } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationchoicesettinginstance https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationchoicesettinginstance.md
Title: "deviceManagementConfigurationChoiceSettingInstance resource type" description: "Setting instance within policy"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationchoicesettinginstancetemplate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationchoicesettinginstancetemplate.md
Title: "deviceManagementConfigurationChoiceSettingInstanceTemplate resource type" description: "Choice Setting Instance Template"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationchoicesettingvalue https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationchoicesettingvalue.md
Title: "deviceManagementConfigurationChoiceSettingValue resource type" description: "Setting value"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationchoicesettingvalueconstantdefaulttemplate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationchoicesettingvalueconstantdefaulttemplate.md
Title: "deviceManagementConfigurationChoiceSettingValueConstantDefaultTemplate resource type" description: "Choice Setting Value Constant Default Template"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationchoicesettingvaluedefaulttemplate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationchoicesettingvaluedefaulttemplate.md
Title: "deviceManagementConfigurationChoiceSettingValueDefaultTemplate resource type" description: "Choice Setting Value Default Template"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingValueDefaultTemplate" } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationchoicesettingvaluedefinitiontemplate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationchoicesettingvaluedefinitiontemplate.md
Title: "deviceManagementConfigurationChoiceSettingValueDefinitionTemplate resource type" description: "Choice Setting Value Definition Template"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationchoicesettingvaluetemplate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationchoicesettingvaluetemplate.md
Title: "deviceManagementConfigurationChoiceSettingValueTemplate resource type" description: "Choice Setting Value Template"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"settingValueTemplateId": "String" } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationcontroltype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationcontroltype.md
Title: "deviceManagementConfigurationControlType enum type" description: "Setting control type representation in the UX"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Setting control type representation in the UX
|toggle|4|Allow for toggle control type| |multiheaderGrid|5|Allow for multiheader grid control type| |contextPane|6|Allow for context pane control type|-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationdependenton https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationdependenton.md
Title: "deviceManagementConfigurationDependentOn resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"parentSettingId": "String" } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationdevicemode https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationdevicemode.md
Title: "deviceManagementConfigurationDeviceMode enum type" description: "Describes applicability for the mode the device is in"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Describes applicability for the mode the device is in
|:|:|:| |none|0|No Device Mode specified| |kiosk|1|Device must be in kiosk mode for this setting to apply|-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationexchangeonlinesettingapplicability https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationexchangeonlinesettingapplicability.md
Title: "deviceManagementConfigurationExchangeOnlineSettingApplicability resource type" description: "Applicability for an Exchange Online Setting"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"technologies": "String" } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationgroupsettingcollectioninstance https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationgroupsettingcollectioninstance.md
Title: "deviceManagementConfigurationGroupSettingCollectionInstance resource type" description: "Instance of a GroupSettingCollection"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationgroupsettingcollectioninstancetemplate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationgroupsettingcollectioninstancetemplate.md
Title: "deviceManagementConfigurationGroupSettingCollectionInstanceTemplate resource type" description: "Group Setting Collection Instance Template"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"allowUnmanagedValues": true } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationgroupsettinginstance https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationgroupsettinginstance.md
Title: "deviceManagementConfigurationGroupSettingInstance resource type" description: "Instance of a GroupSetting"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationgroupsettinginstancetemplate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationgroupsettinginstancetemplate.md
Title: "deviceManagementConfigurationGroupSettingInstanceTemplate resource type" description: "Group Setting Instance Template"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationgroupsettingvalue https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationgroupsettingvalue.md
Title: "deviceManagementConfigurationGroupSettingValue resource type" description: "Value of the GroupSetting"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationgroupsettingvaluetemplate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationgroupsettingvaluetemplate.md
Title: "deviceManagementConfigurationGroupSettingValueTemplate resource type" description: "Group Setting Value Template"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"settingValueTemplateId": "String" } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationintegersettingvalue https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationintegersettingvalue.md
Title: "deviceManagementConfigurationIntegerSettingValue resource type" description: "Simple setting value"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"value": 1024 } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationintegersettingvalueconstantdefaulttemplate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationintegersettingvalueconstantdefaulttemplate.md
Title: "deviceManagementConfigurationIntegerSettingValueConstantDefaultTemplate resource type" description: "Integer Setting Value Constant Default Template"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"constantValue": 1024 } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationintegersettingvaluedefaulttemplate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationintegersettingvaluedefaulttemplate.md
Title: "deviceManagementConfigurationIntegerSettingValueDefaultTemplate resource type" description: "Integer Setting Value Default Template"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"@odata.type": "#microsoft.graph.deviceManagementConfigurationIntegerSettingValueDefaultTemplate" } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationintegersettingvaluedefinition https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationintegersettingvaluedefinition.md
Title: "deviceManagementConfigurationIntegerSettingValueDefinition resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"minimumValue": 1024 } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationintegersettingvaluedefinitiontemplate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationintegersettingvaluedefinitiontemplate.md
Title: "deviceManagementConfigurationIntegerSettingValueDefinitionTemplate resource type" description: "Integer Setting Value Definition Template"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"maxValue": 1024 } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationintegersettingvaluetemplate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationintegersettingvaluetemplate.md
Title: "deviceManagementConfigurationIntegerSettingValueTemplate resource type" description: "Integer Setting Value Template"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationoptiondefinition https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationoptiondefinition.md
Title: "deviceManagementConfigurationOptionDefinition resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"displayName": "String" } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationoptiondefinitiontemplate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationoptiondefinitiontemplate.md
Title: "deviceManagementConfigurationOptionDefinitionTemplate resource type" description: "Option Definition Template"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationplatforms https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationplatforms.md
Title: "deviceManagementConfigurationPlatforms enum type" description: "Supported platform types."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Supported platform types.
|windows10|32|Windows 10.| |linux|128|Linux.| |unknownFutureValue|1073741824|Sentinel member for cases where the client cannot handle the new enum values.|-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationpolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationpolicy.md
Title: "deviceManagementConfigurationPolicy resource type" description: "Device Management Configuration Policy"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationpolicyassignment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationpolicyassignment.md
Title: "deviceManagementConfigurationPolicyAssignment resource type" description: "The DeviceManagementConfigurationPolicyAssignment entity assigns a specific DeviceManagementConfigurationPolicy to an AAD group."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"sourceId": "String" } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationpolicytemplate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationpolicytemplate.md
Title: "deviceManagementConfigurationPolicyTemplate resource type" description: "Device Management Configuration Policy Template"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"settingTemplateCount": 1024 } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationpolicytemplatereference https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationpolicytemplatereference.md
Title: "deviceManagementConfigurationPolicyTemplateReference resource type" description: "Policy template reference information"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"templateDisplayVersion": "String" } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationredirectsettingdefinition https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationredirectsettingdefinition.md
Title: "deviceManagementConfigurationRedirectSettingDefinition resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"redirectReason": "String" } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationreferencesettingvalue https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationreferencesettingvalue.md
Title: "deviceManagementConfigurationReferenceSettingValue resource type" description: "Model for ReferenceSettingValue"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"note": "String" } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationreferredsettinginformation https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationreferredsettinginformation.md
Title: "deviceManagementConfigurationReferredSettingInformation resource type" description: "Referred setting information about reusable setting"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"settingDefinitionId": "String" } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationsecretsettingvalue https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationsecretsettingvalue.md
Title: "deviceManagementConfigurationSecretSettingValue resource type" description: "Graph model for a secret setting value"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"valueState": "String" } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationsecretsettingvaluestate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationsecretsettingvaluestate.md
Title: "deviceManagementConfigurationSecretSettingValueState enum type" description: "type tracking the encryption state of a secret setting value"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
type tracking the encryption state of a secret setting value
|invalid|0|default invalid value| |notEncrypted|1|secret value is not encrypted| |encryptedValueToken|2|a token for the encrypted value is returned by the service|-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationsetting https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationsetting.md
Title: "deviceManagementConfigurationSetting resource type" description: "Setting instance within policy"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationsettingaccesstypes https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationsettingaccesstypes.md
Title: "deviceManagementConfigurationSettingAccessTypes enum type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Not yet documented
|get|8|Not yet documented| |replace|16|Not yet documented| |execute|32|Not yet documented|-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationsettingapplicability https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationsettingapplicability.md
Title: "deviceManagementConfigurationSettingApplicability resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"technologies": "String" } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationsettingdefinition https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationsettingdefinition.md
Title: "deviceManagementConfigurationSettingDefinition resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"version": "String" } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationsettingdependedonby https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationsettingdependedonby.md
Title: "deviceManagementConfigurationSettingDependedOnBy resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"required": true } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationsettinggroupcollectiondefinition https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationsettinggroupcollectiondefinition.md
Title: "deviceManagementConfigurationSettingGroupCollectionDefinition resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"minimumCount": 1024 } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationsettinggroupcollectioninstance https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationsettinggroupcollectioninstance.md
Title: "deviceManagementConfigurationSettingGroupCollectionInstance resource type" description: "Setting instance within policy"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationsettinggroupdefinition https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationsettinggroupdefinition.md
Title: "deviceManagementConfigurationSettingGroupDefinition resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationsettinggroupinstance https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationsettinggroupinstance.md
Title: "deviceManagementConfigurationSettingGroupInstance resource type" description: "Setting instance within policy"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationsettinginstance https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationsettinginstance.md
Title: "deviceManagementConfigurationSettingInstance resource type" description: "Setting instance within policy"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationsettinginstancetemplate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationsettinginstancetemplate.md
Title: "deviceManagementConfigurationSettingInstanceTemplate resource type" description: "Setting Instance Template"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"isRequired": true } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationsettinginstancetemplatereference https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationsettinginstancetemplatereference.md
Title: "deviceManagementConfigurationSettingInstanceTemplateReference resource type" description: "Setting instance template reference information"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"settingInstanceTemplateId": "String" } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationsettingoccurrence https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationsettingoccurrence.md
Title: "deviceManagementConfigurationSettingOccurrence resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"maxDeviceOccurrence": 1024 } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationsettingtemplate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationsettingtemplate.md
Title: "deviceManagementConfigurationSettingTemplate resource type" description: "Setting Template"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationsettingusage https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationsettingusage.md
Title: "deviceManagementConfigurationSettingUsage enum type" description: "Supported setting types"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Supported setting types
|none|0|No setting type specified| |configuration|1|Configuration setting| |compliance|2|Compliance setting|-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationsettingvalue https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationsettingvalue.md
Title: "deviceManagementConfigurationSettingValue resource type" description: "Setting value"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationsettingvaluedefinition https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationsettingvaluedefinition.md
Title: "deviceManagementConfigurationSettingValueDefinition resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"@odata.type": "#microsoft.graph.deviceManagementConfigurationSettingValueDefinition" } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationsettingvaluetemplatereference https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationsettingvaluetemplatereference.md
Title: "deviceManagementConfigurationSettingValueTemplateReference resource type" description: "Setting value template reference information"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"useTemplateDefault": true } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationsettingvisibility https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationsettingvisibility.md
Title: "deviceManagementConfigurationSettingVisibility enum type" description: "Supported setting types"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Supported setting types
|none|0|Not visible| |settingsCatalog|1|Visible to setting catalog UX| |template|2|Visible to template|-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationsimplesettingcollectiondefinition https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationsimplesettingcollectiondefinition.md
Title: "deviceManagementConfigurationSimpleSettingCollectionDefinition resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"minimumCount": 1024 } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationsimplesettingcollectioninstance https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationsimplesettingcollectioninstance.md
Title: "deviceManagementConfigurationSimpleSettingCollectionInstance resource type" description: "Simple setting collection instance"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationsimplesettingcollectioninstancetemplate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationsimplesettingcollectioninstancetemplate.md
Title: "deviceManagementConfigurationSimpleSettingCollectionInstanceTemplate resource type" description: "Simple Setting Collection Instance Template"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"allowUnmanagedValues": true } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationsimplesettingdefinition https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationsimplesettingdefinition.md
Title: "deviceManagementConfigurationSimpleSettingDefinition resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationsimplesettinginstance https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationsimplesettinginstance.md
Title: "deviceManagementConfigurationSimpleSettingInstance resource type" description: "Simple setting instance"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationsimplesettinginstancetemplate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationsimplesettinginstancetemplate.md
Title: "deviceManagementConfigurationSimpleSettingInstanceTemplate resource type" description: "Simple Setting Instance Template"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationsimplesettingvalue https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationsimplesettingvalue.md
Title: "deviceManagementConfigurationSimpleSettingValue resource type" description: "Simple setting value"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationsimplesettingvaluetemplate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationsimplesettingvaluetemplate.md
Title: "deviceManagementConfigurationSimpleSettingValueTemplate resource type" description: "Simple Setting Value Template"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"settingValueTemplateId": "String" } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationstringformat https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationstringformat.md
Title: "deviceManagementConfigurationStringFormat enum type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Not yet documented
|json|12|Not yet documented| |dateTime|13|Not yet documented| |surfaceHub|14|Not yet documented|-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationstringsettingvalue https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationstringsettingvalue.md
Title: "deviceManagementConfigurationStringSettingValue resource type" description: "Simple setting value"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"value": "String" } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationstringsettingvalueconstantdefaulttemplate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationstringsettingvalueconstantdefaulttemplate.md
Title: "deviceManagementConfigurationStringSettingValueConstantDefaultTemplate resource type" description: "String Setting Value Constant Default Template"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"constantValue": "String" } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationstringsettingvaluedefaulttemplate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationstringsettingvaluedefaulttemplate.md
Title: "deviceManagementConfigurationStringSettingValueDefaultTemplate resource type" description: "String Setting Value Default Template"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"@odata.type": "#microsoft.graph.deviceManagementConfigurationStringSettingValueDefaultTemplate" } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationstringsettingvaluedefinition https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationstringsettingvaluedefinition.md
Title: "deviceManagementConfigurationStringSettingValueDefinition resource type" description: "String constraints"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationstringsettingvaluetemplate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationstringsettingvaluetemplate.md
Title: "deviceManagementConfigurationStringSettingValueTemplate resource type" description: "String Setting Value Template"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationtechnologies https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationtechnologies.md
Title: "deviceManagementConfigurationTechnologies enum type" description: "Describes which technology this setting can be deployed with"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Describes which technology this setting can be deployed with
|enrollment|4096|Setting can be deployed through device enrollment.| |endpointPrivilegeManagement|8192|Setting can be deployed using the Endpoint privilege management channel| |unknownFutureValue|16384|Evolvable enumeration sentinel value. Do not use.|-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationtemplatefamily https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationtemplatefamily.md
Title: "deviceManagementConfigurationTemplateFamily enum type" description: "Describes the TemplateFamily for the Template entity"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Describes the TemplateFamily for the Template entity
|appQuietTime|19|Template Family for QuietTimeIndicates Template Family for all the Apps QuietTime policies and templates| |baseline|20|Template Family for Baseline| |unknownFutureValue|21|Evolvable enumeration sentinel value. Do not use.|-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationwindowssettingapplicability https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationwindowssettingapplicability.md
Title: "deviceManagementConfigurationWindowsSettingApplicability resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"requiredAzureAdTrustType": "String" } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementconfigurationwindowsskus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementconfigurationwindowsskus.md
Title: "deviceManagementConfigurationWindowsSkus enum type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Not yet documented
|holographicForBusiness|12|Not yet documented| |windowsMultiSession|13|Not yet documented| |surfaceHub|14|Not yet documented|-----
v1.0 Intune Deviceconfigv2 Devicemanagementprioritymetadata https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementprioritymetadata.md
Title: "deviceManagementPriorityMetaData resource type" description: "Priority metadata of the policy."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"priority": 1024 } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementreusablepolicysetting https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementreusablepolicysetting.md
Title: "deviceManagementReusablePolicySetting resource type" description: "Graph model for a reusable setting"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"referencingConfigurationPolicyCount": 1024 } ```-----
v1.0 Intune Deviceconfigv2 Devicemanagementtemplatelifecyclestate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceconfigv2-devicemanagementtemplatelifecyclestate.md
Title: "deviceManagementTemplateLifecycleState enum type" description: "Describes current lifecycle state of a template"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Describes current lifecycle state of a template
|superseded|30|Superseded| |deprecated|40|Deprecated| |retired|50|Retired|-----
v1.0 Intune Deviceintent Devicemanagementabstractcomplexsettingdefinition https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceintent-devicemanagementabstractcomplexsettingdefinition.md
Title: "deviceManagementAbstractComplexSettingDefinition resource type" description: "Entity representing the defintion for an abstract complex setting"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceintent Devicemanagementabstractcomplexsettinginstance https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceintent-devicemanagementabstractcomplexsettinginstance.md
Title: "deviceManagementAbstractComplexSettingInstance resource type" description: "A setting instance representing a complex value for an abstract setting"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"implementationId": "String" } ```-----
v1.0 Intune Deviceintent Devicemanagementbooleansettinginstance https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceintent-devicemanagementbooleansettinginstance.md
Title: "deviceManagementBooleanSettingInstance resource type" description: "A setting instance representing a boolean value"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"value": true } ```-----
v1.0 Intune Deviceintent Devicemanagementcollectionsettingdefinition https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceintent-devicemanagementcollectionsettingdefinition.md
Title: "deviceManagementCollectionSettingDefinition resource type" description: "Entity representing the defintion for a collection setting"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"elementDefinitionId": "String" } ```-----
v1.0 Intune Deviceintent Devicemanagementcollectionsettinginstance https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceintent-devicemanagementcollectionsettinginstance.md
Title: "deviceManagementCollectionSettingInstance resource type" description: "A setting instance representing a collection of values"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"valueJson": "String" } ```-----
v1.0 Intune Deviceintent Devicemanagementcomparisonresult https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceintent-devicemanagementcomparisonresult.md
Title: "deviceManagementComparisonResult enum type" description: "Setting comparison result type"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Setting comparison result type
|notEqual|2|The setting values are not equal| |added|3|The setting is added| |removed|4|The setting is removed|-----
v1.0 Intune Deviceintent Devicemanagementcomplexsettingdefinition https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceintent-devicemanagementcomplexsettingdefinition.md
Title: "deviceManagementComplexSettingDefinition resource type" description: "Entity representing the defintion for a complex setting"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceintent Devicemanagementcomplexsettinginstance https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceintent-devicemanagementcomplexsettinginstance.md
Title: "deviceManagementComplexSettingInstance resource type" description: "A setting instance representing a complex value"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"valueJson": "String" } ```-----
v1.0 Intune Deviceintent Devicemanagementconstraint https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceintent-devicemanagementconstraint.md
Title: "deviceManagementConstraint resource type" description: "Base entity for a constraint"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"@odata.type": "#microsoft.graph.deviceManagementConstraint" } ```-----
v1.0 Intune Deviceintent Devicemanagementenumconstraint https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceintent-devicemanagementenumconstraint.md
Title: "deviceManagementEnumConstraint resource type" description: "Constraint that enforces the setting value is from a permitted set of strings"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceintent Devicemanagementenumvalue https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceintent-devicemanagementenumvalue.md
Title: "deviceManagementEnumValue resource type" description: "Definition information for an enum value"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"displayName": "String" } ```-----
v1.0 Intune Deviceintent Devicemanagementintegersettinginstance https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceintent-devicemanagementintegersettinginstance.md
Title: "deviceManagementIntegerSettingInstance resource type" description: "A setting instance representing an integer value"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"value": 1024 } ```-----
v1.0 Intune Deviceintent Devicemanagementintent https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceintent-devicemanagementintent.md
Title: "deviceManagementIntent resource type" description: "Entity that represents an intent to apply settings to a device"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceintent Devicemanagementintentassignment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceintent-devicemanagementintentassignment.md
Title: "deviceManagementIntentAssignment resource type" description: "Intent assignment entity"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Deviceintent Devicemanagementintentdevicesettingstatesummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceintent-devicemanagementintentdevicesettingstatesummary.md
Title: "deviceManagementIntentDeviceSettingStateSummary resource type" description: "Entity that represents device setting state summary for an intent"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"remediatedCount": 1024 } ```-----
v1.0 Intune Deviceintent Devicemanagementintentdevicestate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceintent-devicemanagementintentdevicestate.md
Title: "deviceManagementIntentDeviceState resource type" description: "Entity that represents device state for an intent"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"deviceId": "String" } ```-----
v1.0 Intune Deviceintent Devicemanagementintentdevicestatesummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceintent-devicemanagementintentdevicestatesummary.md
Title: "deviceManagementIntentDeviceStateSummary resource type" description: "Entity that represents device state summary for an intent"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"successCount": 1024 } ```-----
v1.0 Intune Deviceintent Devicemanagementintentsettingcategory https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceintent-devicemanagementintentsettingcategory.md
Title: "deviceManagementIntentSettingCategory resource type" description: "Entity representing an intent setting category"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"hasRequiredSetting": true } ```-----
v1.0 Intune Deviceintent Devicemanagementintentsettingsecretconstraint https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceintent-devicemanagementintentsettingsecretconstraint.md
Title: "deviceManagementIntentSettingSecretConstraint resource type" description: "Constraint indicating that this value is a secret and will be encrypted."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"@odata.type": "#microsoft.graph.deviceManagementIntentSettingSecretConstraint" } ```-----
v1.0 Intune Deviceintent Devicemanagementintentuserstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceintent-devicemanagementintentuserstate.md
Title: "deviceManagementIntentUserState resource type" description: "Entity that represents user state for an intent"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"state": "String" } ```-----
v1.0 Intune Deviceintent Devicemanagementintentuserstatesummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceintent-devicemanagementintentuserstatesummary.md
Title: "deviceManagementIntentUserStateSummary resource type" description: "Entity that represents user state summary for an intent"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"successCount": 1024 } ```-----
v1.0 Intune Deviceintent Devicemanagementsettingabstractimplementationconstraint https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceintent-devicemanagementsettingabstractimplementationconstraint.md
Title: "deviceManagementSettingAbstractImplementationConstraint resource type" description: "Constraint that enforces an AbstractComplex type has or is set to a particular value"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceintent Devicemanagementsettingappconstraint https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceintent-devicemanagementsettingappconstraint.md
Title: "deviceManagementSettingAppConstraint resource type" description: "Constraint enforcing the setting contains only vaild app types."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceintent Devicemanagementsettingbooleanconstraint https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceintent-devicemanagementsettingbooleanconstraint.md
Title: "deviceManagementSettingBooleanConstraint resource type" description: "Constraint the enforces a particular boolean value"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"value": true } ```-----
v1.0 Intune Deviceintent Devicemanagementsettingcategory https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceintent-devicemanagementsettingcategory.md
Title: "deviceManagementSettingCategory resource type" description: "Entity representing a setting category"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"hasRequiredSetting": true } ```-----
v1.0 Intune Deviceintent Devicemanagementsettingcollectionconstraint https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceintent-devicemanagementsettingcollectionconstraint.md
Title: "deviceManagementSettingCollectionConstraint resource type" description: "Constraint that enforces the maximum number of elements a collection"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"maximumLength": 1024 } ```-----
v1.0 Intune Deviceintent Devicemanagementsettingcomparison https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceintent-devicemanagementsettingcomparison.md
Title: "deviceManagementSettingComparison resource type" description: "Entity representing setting comparison result"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"comparisonResult": "String" } ```-----
v1.0 Intune Deviceintent Devicemanagementsettingdefinition https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceintent-devicemanagementsettingdefinition.md
Title: "deviceManagementSettingDefinition resource type" description: "Entity representing the defintion for a given setting"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceintent Devicemanagementsettingdependency https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceintent-devicemanagementsettingdependency.md
Title: "deviceManagementSettingDependency resource type" description: "Dependency information for a setting"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceintent Devicemanagementsettingenrollmenttypeconstraint https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceintent-devicemanagementsettingenrollmenttypeconstraint.md
Title: "deviceManagementSettingEnrollmentTypeConstraint resource type" description: "Constraint that enforces the enrollment types applied to a setting"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceintent Devicemanagementsettingfileconstraint https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceintent-devicemanagementsettingfileconstraint.md
Title: "deviceManagementSettingFileConstraint resource type" description: "Constraint enforcing the file extension is acceptable for a given setting"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceintent Devicemanagementsettinginstance https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceintent-devicemanagementsettinginstance.md
Title: "deviceManagementSettingInstance resource type" description: "Base type for a setting instance"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"valueJson": "String" } ```-----
v1.0 Intune Deviceintent Devicemanagementsettingintegerconstraint https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceintent-devicemanagementsettingintegerconstraint.md
Title: "deviceManagementSettingIntegerConstraint resource type" description: "Constraint enforcing the permitted value range for an integer setting"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"maximumValue": 1024 } ```-----
v1.0 Intune Deviceintent Devicemanagementsettingprofileconstraint https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceintent-devicemanagementsettingprofileconstraint.md
Title: "deviceManagementSettingProfileConstraint resource type" description: "Constraint enforcing a given profile metadata"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceintent Devicemanagementsettingregexconstraint https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceintent-devicemanagementsettingregexconstraint.md
Title: "deviceManagementSettingRegexConstraint resource type" description: "Constraint enforcing the setting matches against a given RegEx pattern"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"regex": "String" } ```-----
v1.0 Intune Deviceintent Devicemanagementsettingrequiredconstraint https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceintent-devicemanagementsettingrequiredconstraint.md
Title: "deviceManagementSettingRequiredConstraint resource type" description: "Constraint that enforces a particular required setting that is not null/undefined/empty string/not configured"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"notConfiguredValue": "String" } ```-----
v1.0 Intune Deviceintent Devicemanagementsettingsddlconstraint https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceintent-devicemanagementsettingsddlconstraint.md
Title: "deviceManagementSettingSddlConstraint resource type" description: "Constraint enforcing the setting is well formed SDDL"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"@odata.type": "#microsoft.graph.deviceManagementSettingSddlConstraint" } ```-----
v1.0 Intune Deviceintent Devicemanagementsettingstringlengthconstraint https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceintent-devicemanagementsettingstringlengthconstraint.md
Title: "deviceManagementSettingStringLengthConstraint resource type" description: "Constraint enforcing a given string length range"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"maximumLength": 1024 } ```-----
v1.0 Intune Deviceintent Devicemanagementsettingxmlconstraint https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceintent-devicemanagementsettingxmlconstraint.md
Title: "deviceManagementSettingXmlConstraint resource type" description: "Constraint enforcing the setting is well formed XML"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"@odata.type": "#microsoft.graph.deviceManagementSettingXmlConstraint" } ```-----
v1.0 Intune Deviceintent Devicemanagementstringsettinginstance https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceintent-devicemanagementstringsettinginstance.md
Title: "deviceManagementStringSettingInstance resource type" description: "A setting instance representing a string value"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"value": "String" } ```-----
v1.0 Intune Deviceintent Devicemanagementtemplate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceintent-devicemanagementtemplate.md
Title: "deviceManagementTemplate resource type" description: "Entity that represents a defined collection of device settings"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"publishedDateTime": "String (timestamp)" } ```-----
v1.0 Intune Deviceintent Devicemanagementtemplatesettingcategory https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceintent-devicemanagementtemplatesettingcategory.md
Title: "deviceManagementTemplateSettingCategory resource type" description: "Entity representing a template setting category"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"hasRequiredSetting": true } ```-----
v1.0 Intune Deviceintent Devicemanagementtemplatesubtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceintent-devicemanagementtemplatesubtype.md
Title: "deviceManagementTemplateSubtype enum type" description: "Template subtype"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Template subtype
|firewallSharedAppList|7|Endpoint security firewall shared app subtype| |firewallSharedIpList|8|Endpoint security firewall shared ip range list subtype| |firewallSharedPortlist|9|Endpoint security firewall shared port range list subtype|-----
v1.0 Intune Deviceintent Devicemanagementtemplatetype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceintent-devicemanagementtemplatetype.md
Title: "deviceManagementTemplateType enum type" description: "Template type"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Template type
|deviceConfigurationForOffice365|9|Device Configuration for Microsoft Office 365 settings| |cloudPC|10|Windows 365 security baseline template| |firewallSharedSettings|11|Firewall Shared Object templates for reference settings|-----
v1.0 Intune Deviceintent Devicemanangementintentvaluetype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceintent-devicemanangementintentvaluetype.md
Title: "deviceManangementIntentValueType enum type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Not yet documented
|complex|3|The setting value is a complex object| |collection|4|The setting value is a collection| |abstractComplex|5|The setting value is an abstract complex object|-----
v1.0 Intune Deviceintent Policyplatformtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceintent-policyplatformtype.md
Title: "policyPlatformType enum type" description: "Supported platform types for policies."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Supported platform types for policies.
|androidWorkProfile|7|AndroidWorkProfile.| |windows10XProfile|8|Windows10XProfile.| |all|100|All platforms.|-----
v1.0 Intune Deviceintent Securitybaselinecategorystatesummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceintent-securitybaselinecategorystatesummary.md
Title: "securityBaselineCategoryStateSummary resource type" description: "The security baseline per category compliance state summary for the security baseline of the account."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"displayName": "String" } ```-----
v1.0 Intune Deviceintent Securitybaselinecompliancestate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceintent-securitybaselinecompliancestate.md
Title: "securityBaselineComplianceState enum type" description: "Security Baseline Compliance State"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Security Baseline Compliance State
|notSecure|3|Not secure state| |error|4|Error state| |conflict|5|Conflict state|-----
v1.0 Intune Deviceintent Securitybaselinecontributingpolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceintent-securitybaselinecontributingpolicy.md
Title: "securityBaselineContributingPolicy resource type" description: "The security baseline compliance state of a setting for a device"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"sourceType": "String" } ```-----
v1.0 Intune Deviceintent Securitybaselinedevicestate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceintent-securitybaselinedevicestate.md
Title: "securityBaselineDeviceState resource type" description: "The security baseline compliance state summary of the security baseline for a device."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"lastReportedDateTime": "String (timestamp)" } ```-----
v1.0 Intune Deviceintent Securitybaselinepolicysourcetype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceintent-securitybaselinepolicysourcetype.md
Title: "securityBaselinePolicySourceType enum type" description: "Authoring source of a policy"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Authoring source of a policy
|:|:|:| |deviceConfiguration|0|Not yet documented| |deviceIntent|1|Not yet documented|-----
v1.0 Intune Deviceintent Securitybaselinestatesummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceintent-securitybaselinestatesummary.md
Title: "securityBaselineStateSummary resource type" description: "The security baseline compliance state summary for the security baseline of the account."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"notApplicableCount": 1024 } ```-----
v1.0 Intune Deviceintent Securitybaselinetemplate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-deviceintent-securitybaselinetemplate.md
Title: "securityBaselineTemplate resource type" description: "The security baseline template of the account"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"publishedDateTime": "String (timestamp)" } ```-----
v1.0 Intune Devices Activatedeviceesimactionresult https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-activatedeviceesimactionresult.md
Title: "activateDeviceEsimActionResult resource type" description: "Activate device eSIM action result"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"carrierUrl": "String" } ```-----
v1.0 Intune Devices Adminconsent https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-adminconsent.md
Title: "adminConsent resource type" description: "Admin consent information."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"shareUserExperienceAnalyticsData": "String" } ```-----
v1.0 Intune Devices Adminconsentstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-adminconsentstate.md
Title: "adminConsentState enum type" description: "Admin consent state."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Admin consent state.
|notConfigured|0|Admin did not configure the item| |granted|1|Admin granted item| |notGranted|2|Admin deos not grant item|-----
v1.0 Intune Devices Applepushnotificationcertificate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-applepushnotificationcertificate.md
Title: "applePushNotificationCertificate resource type" description: "Apple push notification certificate."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"certificate": "String" } ```-----
v1.0 Intune Devices Applogcollectiondownloaddetails https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-applogcollectiondownloaddetails.md
Title: "appLogCollectionDownloadDetails resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"appLogDecryptionAlgorithm": "String" } ```-----
v1.0 Intune Devices Applogcollectionrequest https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-applogcollectionrequest.md
Title: "appLogCollectionRequest resource type" description: "AppLogCollectionRequest Entity."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"completedDateTime": "String (timestamp)" } ```-----
v1.0 Intune Devices Applogdecryptionalgorithm https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-applogdecryptionalgorithm.md
Title: "appLogDecryptionAlgorithm enum type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Not yet documented
|Member|Value|Description| |:|:|:| |aes256|0|Not yet documented|-----
v1.0 Intune Devices Apploguploadstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-apploguploadstate.md
Title: "appLogUploadState enum type" description: "AppLogUploadStatus"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
AppLogUploadStatus
|pending|0|Request is waiting to be processed or under processing| |completed|1|Request is completed with file uploaded to Azure blob for download.| |failed|2|Request finished processing and in error state.|-----
v1.0 Intune Devices Bulkmanageddeviceactionresult https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-bulkmanageddeviceactionresult.md
Title: "bulkManagedDeviceActionResult resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Devices Chassistype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-chassistype.md
Title: "chassisType enum type" description: "Chassis type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Chassis type.
|tablet|101|Mobile tablet.| |mobileOther|102|Other mobile.| |mobileUnknown|103|Unknown mobile.|-----
v1.0 Intune Devices Chromeosdeviceproperty https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-chromeosdeviceproperty.md
Title: "chromeOSDeviceProperty resource type" description: "Represents a property of the ChromeOS device."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"updatable": true } ```-----
v1.0 Intune Devices Cloudpcconnectivityissue https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-cloudpcconnectivityissue.md
Title: "cloudPCConnectivityIssue resource type" description: "The user experience analyte connectivity issue entity."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"recommendedAction": "String" } ```-----
v1.0 Intune Devices Comanageddevicessummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-comanageddevicessummary.md
Title: "comanagedDevicesSummary resource type" description: "Summary data for co managed devices"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"totalComanagedCount": 1024 } ```-----
v1.0 Intune Devices Comanagementeligibledevice https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-comanagementeligibledevice.md
Title: "comanagementEligibleDevice resource type" description: "Device Co-Management eligibility state"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Device Co-Management eligibility state
|:|:|:| |id|String|Unique Id for the device| |deviceName|String|DeviceName|
-|deviceType|[deviceType](../resources/intune-shared-devicetype.md)|DeviceType. 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`.|
+|deviceType|[deviceType](../resources/intune-devices-devicetype.md)|DeviceType. 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`.|
|clientRegistrationStatus|[deviceRegistrationState](../resources/intune-devices-deviceregistrationstate.md)|ClientRegistrationStatus. Possible values are: `notRegistered`, `registered`, `revoked`, `keyConflict`, `approvalPending`, `certificateReset`, `notRegisteredPendingEnrollment`, `unknown`.| |ownerType|[ownerType](../resources/intune-shared-ownertype.md)|OwnerType. Possible values are: `unknown`, `company`, `personal`.| |managementAgents|[managementAgentType](../resources/intune-shared-managementagenttype.md)|ManagementAgents. Possible values are: `eas`, `mdm`, `easMdm`, `intuneClient`, `easIntuneClient`, `configurationManagerClient`, `configurationManagerClientMdm`, `configurationManagerClientMdmEas`, `unknown`, `jamf`, `googleCloudDevicePolicyController`, `microsoft365ManagedMdm`, `msSense`, `intuneAosp`.|
Here is a JSON representation of the resource.
"status": "String" } ```-----
v1.0 Intune Devices Comanagementeligibledevicessummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-comanagementeligibledevicessummary.md
Title: "comanagementEligibleDevicesSummary resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"ineligibleCount": 1024 } ```-----
v1.0 Intune Devices Comanagementeligibletype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-comanagementeligibletype.md
Title: "comanagementEligibleType enum type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Not yet documented
|ineligible|5|Not yet documented| |scheduledForEnrollment|6|Devices scheduled for Co-Management enrollment| |unknownFutureValue|7|Evolvable enumeration sentinel value. Do not use.|-----
v1.0 Intune Devices Compliancestate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-compliancestate.md
Title: "complianceState enum type" description: "Compliance state."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Compliance state.
|error|4|Error.| |inGracePeriod|254|Device is non-compliant but still has access to corporate resources| |configManager|255|Managed by Config Manager|-----
v1.0 Intune Devices Configurationmanageraction https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-configurationmanageraction.md
Title: "configurationManagerAction resource type" description: "Parameter for action triggerConfigurationManagerAction"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"action": "String" } ```-----
v1.0 Intune Devices Configurationmanageractiondeliverystatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-configurationmanageractiondeliverystatus.md
Title: "configurationManagerActionDeliveryStatus enum type" description: "Delivery state of Configuration Manager device action"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Delivery state of Configuration Manager device action
|deliveredToConnectorService|2|Action is sent to ConfigurationManager Connector service (cloud)| |failedToDeliverToConnectorService|3|Failed to send the action to ConfigurationManager Connector service (cloud)| |deliveredToOnPremisesServer|4|Action is delivered to ConfigurationManager on-prem server|-----
v1.0 Intune Devices Configurationmanageractionresult https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-configurationmanageractionresult.md
Title: "configurationManagerActionResult resource type" description: "Result of the ConfigurationManager action"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"errorCode": 1024 } ```-----
v1.0 Intune Devices Configurationmanageractiontype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-configurationmanageractiontype.md
Title: "configurationManagerActionType enum type" description: "Action type on Configuration Manager client"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Action type on Configuration Manager client
|quickScan|5|Evaluation application policy on Configuration Manager client| |fullScan|6|Evaluation application policy on Configuration Manager client| |windowsDefenderUpdateSignatures|7|Evaluation application policy on Configuration Manager client|-----
v1.0 Intune Devices Configurationmanagerclientenabledfeatures https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-configurationmanagerclientenabledfeatures.md
Title: "configurationManagerClientEnabledFeatures resource type" description: "configuration Manager client enabled features"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"officeApps": true } ```-----
v1.0 Intune Devices Configurationmanagerclienthealthstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-configurationmanagerclienthealthstate.md
Title: "configurationManagerClientHealthState resource type" description: "Configuration manager client health state"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"lastSyncDateTime": "String (timestamp)" } ```-----
v1.0 Intune Devices Configurationmanagerclientinformation https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-configurationmanagerclientinformation.md
Title: "configurationManagerClientInformation resource type" description: "Configuration Manager client information synced from SCCM"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"clientVersion": "String" } ```-----
v1.0 Intune Devices Configurationmanagerclientstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-configurationmanagerclientstate.md
Title: "configurationManagerClientState enum type" description: "Configuration manager client state"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Configuration manager client state
|installFailed|8|The configuration manager agent failed to install.| |updateFailed|11|The update from version x to version y of the configuration manager agent failed. | |communicationError|19|The configuration manager agent was able to reach the configuration manager service in the past but is now no longer able to. |-----
v1.0 Intune Devices Dataprocessorserviceforwindowsfeaturesonboarding https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-dataprocessorserviceforwindowsfeaturesonboarding.md
Title: "dataProcessorServiceForWindowsFeaturesOnboarding resource type" description: "A configuration entity for MEM features that utilize Data Processor Service for Windows (DPSW) data."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"areDataProcessorServiceForWindowsFeaturesEnabled": true } ```-----
v1.0 Intune Devices Datasharingconsent https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-datasharingconsent.md
Title: "dataSharingConsent resource type" description: "Data sharing consent information."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"grantedByUserId": "String" } ```-----
v1.0 Intune Devices Deleteuserfromsharedappledeviceactionresult https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-deleteuserfromsharedappledeviceactionresult.md
Title: "deleteUserFromSharedAppleDeviceActionResult resource type" description: "Delete user from shared apple device action result"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"userPrincipalName": "String" } ```-----
v1.0 Intune Devices Detectedapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-detectedapp.md
Title: "detectedApp resource type" description: "A managed or unmanaged app that is installed on a managed device. Unmanaged apps will only appear for devices marked as corporate owned."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"platform": "String" } ```-----
v1.0 Intune Devices Detectedappplatformtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-detectedappplatformtype.md
Title: "detectedAppPlatformType enum type" description: "Indicates the operating system / platform of the discovered application. Some possible values are Windows, iOS, macOS. The default value is unknown (0)."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Indicates the operating system / platform of the discovered application. Some p
|androidWorkProfile|9|Indicates that the platform of the detected application is Android work profile.| |androidDedicatedAndFullyManaged|10|Indicates that the platform of the detected application is Android dedicated and fully managed.| |unknownFutureValue|11|Evolvable enumeration sentinel value. Do not use.|-----
v1.0 Intune Devices Deviceactionresult https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-deviceactionresult.md
Title: "deviceActionResult resource type" description: "Device action result"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"lastUpdatedDateTime": "String (timestamp)" } ```-----
v1.0 Intune Devices Devicecompliancescript https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-devicecompliancescript.md
Title: "deviceComplianceScript resource type" description: "Intune will provide customer the ability to run their Powershell Compliance scripts (detection) on the enrolled windows 10 Azure Active Directory joined devices."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Devices Devicecompliancescriptdevicestate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-devicecompliancescriptdevicestate.md
Title: "deviceComplianceScriptDeviceState resource type" description: "Contains properties for device run state of the device compliance script."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Contains properties for device run state of the device compliance script.
|Property|Type|Description| |:|:|:| |id|String|Key of the device compliance script device state entity. This property is read-only.|
-|detectionState|[runState](../resources/intune-shared-runstate.md)|Detection state from the lastest device compliance script execution. Possible values are: `unknown`, `success`, `fail`, `scriptError`, `pending`, `notApplicable`.|
+|detectionState|[runState](../resources/intune-devices-runstate.md)|Detection state from the lastest device compliance script execution. Possible values are: `unknown`, `success`, `fail`, `scriptError`, `pending`, `notApplicable`.|
|lastStateUpdateDateTime|DateTimeOffset|The last timestamp of when the device compliance script executed| |expectedStateUpdateDateTime|DateTimeOffset|The next timestamp of when the device compliance script is expected to execute| |lastSyncDateTime|DateTimeOffset|The last time that Intune Managment Extension synced with Intune|
Here is a JSON representation of the resource.
"scriptError": "String" } ```-----
v1.0 Intune Devices Devicecompliancescriptrunsummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-devicecompliancescriptrunsummary.md
Title: "deviceComplianceScriptRunSummary resource type" description: "Contains properties for the run summary of a device management script."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"lastScriptRunDateTime": "String (timestamp)" } ```-----
v1.0 Intune Devices Devicecustomattributeshellscript https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-devicecustomattributeshellscript.md
Title: "deviceCustomAttributeShellScript resource type" description: "Represents a custom attribute script for macOS."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Devices Devicecustomattributevaluetype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-devicecustomattributevaluetype.md
Title: "deviceCustomAttributeValueType enum type" description: "Represents the expected type for a macOS custom attribute script value."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Represents the expected type for a macOS custom attribute script value.
|integer|0|Indicates the value for a custom attribute script is an integer.| |string|1|Indicates the value for a custom attribute script is a string.| |dateTime|2|Indicates the value for a custom attribute script is a date conforming to ISO 8601.|-----
v1.0 Intune Devices Deviceenrollmenttype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-deviceenrollmenttype.md
Title: "deviceEnrollmentType enum type" description: "Possible ways of adding a mobile device to management."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible ways of adding a mobile device to management.
|androidEnterpriseDedicatedDevice|15|Android Enterprise Dedicated Device| |androidEnterpriseFullyManaged|16|Android Enterprise Fully Managed| |androidEnterpriseCorporateWorkProfile|17|Android Enterprise Corporate Work Profile|-----
v1.0 Intune Devices Deviceeventlevel https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-deviceeventlevel.md
+
+ Title: "deviceEventLevel enum type"
+description: "Indicates device event level. Possible values are: None, Verbose, Information, Warning, Error, Critical"
+
+localization_priority: Normal
++
+# deviceEventLevel enum type
+
+Namespace: microsoft.graph
+
+> **Important:** Microsoft Graph APIs under the /beta version are subject to change; production use is not supported.
+
+> **Note:** The Microsoft Graph API for Intune requires an [active Intune license](https://go.microsoft.com/fwlink/?linkid=839381) for the tenant.
+
+Indicates device event level. Possible values are: None, Verbose, Information, Warning, Error, Critical
+
+## Members
+|Member|Value|Description|
+|:|:|:|
+|none|0|Indicates that the device event level is none.|
+|verbose|1|Indicates that the device event level is verbose.|
+|information|2|Indicates that the device event level is information.|
+|warning|3|Indicates that the device event level is warning.|
+|error|4|Indicates that the device event level is error.|
+|critical|5|Indicates that the device event level is critical.|
+|unknownFutureValue|6|Placeholder value for future expansion.|
v1.0 Intune Devices Deviceexchangeaccessstatesummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-deviceexchangeaccessstatesummary.md
Title: "deviceExchangeAccessStateSummary resource type" description: "Device Exchange Access State summary"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"unavailableDeviceCount": 1024 } ```-----
v1.0 Intune Devices Devicegeolocation https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-devicegeolocation.md
Title: "deviceGeoLocation resource type" description: "Device location"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"speed": "4.2" } ```-----
v1.0 Intune Devices Deviceguardlocalsystemauthoritycredentialguardstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-deviceguardlocalsystemauthoritycredentialguardstate.md
Title: "deviceGuardLocalSystemAuthorityCredentialGuardState enum type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Not yet documented
|notLicensed|2|Not licensed for Credential Guard| |notConfigured|3|Not configured| |virtualizationBasedSecurityNotRunning|4|Virtualization Based security is not running|-----
v1.0 Intune Devices Deviceguardvirtualizationbasedsecurityhardwarerequirementstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-deviceguardvirtualizationbasedsecurityhardwarerequirementstate.md
Title: "deviceGuardVirtualizationBasedSecurityHardwareRequirementState enum type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Not yet documented
|dmaProtectionRequired|2|DMA protection required| |hyperVNotSupportedForGuestVM|4|HyperV not supported for Guest VM| |hyperVNotAvailable|8|HyperV feature is not available|-----
v1.0 Intune Devices Deviceguardvirtualizationbasedsecuritystate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-deviceguardvirtualizationbasedsecuritystate.md
Title: "deviceGuardVirtualizationBasedSecurityState enum type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Not yet documented
|notConfigured|4|Not configured| |doesNotMeetHardwareRequirements|5|System does not meet hardware requirements| |other|42|Other. Event logs in microsoft-Windows-DeviceGuard have more details.|-----
v1.0 Intune Devices Devicehealthattestationstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-devicehealthattestationstate.md
Title: "deviceHealthAttestationState resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"healthAttestationSupportedStatus": "String" } ```-----
v1.0 Intune Devices Devicehealthscript https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-devicehealthscript.md
Title: "deviceHealthScript resource type" description: "Intune will provide customer the ability to run their Powershell Health scripts (remediation + detection) on the enrolled windows 10 Azure Active Directory joined devices."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Devices Devicehealthscriptassignment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-devicehealthscriptassignment.md
Title: "deviceHealthScriptAssignment resource type" description: "Contains properties used to assign a device management script to a group."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Devices Devicehealthscriptbooleanparameter https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-devicehealthscriptbooleanparameter.md
Title: "deviceHealthScriptBooleanParameter resource type" description: "Properties of the Booolean script parameter."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"defaultValue": true } ```-----
v1.0 Intune Devices Devicehealthscriptdailyschedule https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-devicehealthscriptdailyschedule.md
Title: "deviceHealthScriptDailySchedule resource type" description: "Device health script daily schedule."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"time": "String (time of day)" } ```-----
v1.0 Intune Devices Devicehealthscriptdevicestate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-devicehealthscriptdevicestate.md
Title: "deviceHealthScriptDeviceState resource type" description: "Contains properties for device run state of the device health script."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Contains properties for device run state of the device health script.
|Property|Type|Description| |:|:|:| |id|String|Key of the device health script device state entity. This property is read-only.|
-|detectionState|[runState](../resources/intune-shared-runstate.md)|Detection state from the lastest device health script execution. Possible values are: `unknown`, `success`, `fail`, `scriptError`, `pending`, `notApplicable`.|
+|detectionState|[runState](../resources/intune-devices-runstate.md)|Detection state from the lastest device health script execution. Possible values are: `unknown`, `success`, `fail`, `scriptError`, `pending`, `notApplicable`.|
|lastStateUpdateDateTime|DateTimeOffset|The last timestamp of when the device health script executed| |expectedStateUpdateDateTime|DateTimeOffset|The next timestamp of when the device health script is expected to execute| |lastSyncDateTime|DateTimeOffset|The last time that Intune Managment Extension synced with Intune|
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Devices Devicehealthscripthourlyschedule https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-devicehealthscripthourlyschedule.md
Title: "deviceHealthScriptHourlySchedule resource type" description: "Type of Device health script hourly schedule."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"interval": 1024 } ```-----
v1.0 Intune Devices Devicehealthscriptintegerparameter https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-devicehealthscriptintegerparameter.md
Title: "deviceHealthScriptIntegerParameter resource type" description: "Properties of the Integer script parameter."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"defaultValue": 1024 } ```-----
v1.0 Intune Devices Devicehealthscriptparameter https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-devicehealthscriptparameter.md
Title: "deviceHealthScriptParameter resource type" description: "Base properties of the script parameter."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"applyDefaultValueWhenNotAssigned": true } ```-----
v1.0 Intune Devices Devicehealthscriptremediationhistory https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-devicehealthscriptremediationhistory.md
Title: "deviceHealthScriptRemediationHistory resource type" description: "The number of devices remediated by a device health script on a given date with the last modified time."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Devices Devicehealthscriptremediationhistorydata https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-devicehealthscriptremediationhistorydata.md
Title: "deviceHealthScriptRemediationHistoryData resource type" description: "The number of devices remediated by a device health script on a given date."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"noIssueDeviceCount": 1024 } ```-----
v1.0 Intune Devices Devicehealthscriptremediationsummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-devicehealthscriptremediationsummary.md
Title: "deviceHealthScriptRemediationSummary resource type" description: "The number of device health scripts deployed and the number of devices the scripts remediated."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"remediatedDeviceCount": 1024 } ```-----
v1.0 Intune Devices Devicehealthscriptrunonceschedule https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-devicehealthscriptrunonceschedule.md
Title: "deviceHealthScriptRunOnceSchedule resource type" description: "Device health script run once schedule."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"date": "String (Date)" } ```-----
v1.0 Intune Devices Devicehealthscriptrunschedule https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-devicehealthscriptrunschedule.md
Title: "deviceHealthScriptRunSchedule resource type" description: "Base type of Device health script run schedule."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"interval": 1024 } ```-----
v1.0 Intune Devices Devicehealthscriptrunsummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-devicehealthscriptrunsummary.md
Title: "deviceHealthScriptRunSummary resource type" description: "Contains properties for the run summary of a device management script."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"issueRemediatedCumulativeDeviceCount": 1024 } ```-----
v1.0 Intune Devices Devicehealthscriptstringparameter https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-devicehealthscriptstringparameter.md
Title: "deviceHealthScriptStringParameter resource type" description: "Properties of the String script parameter."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"defaultValue": "String" } ```-----
v1.0 Intune Devices Devicehealthscripttimeschedule https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-devicehealthscripttimeschedule.md
Title: "deviceHealthScriptTimeSchedule resource type" description: "Base type of Device health script time schedule."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"time": "String (time of day)" } ```-----
v1.0 Intune Devices Devicelicensingstatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-devicelicensingstatus.md
Title: "deviceLicensingStatus enum type" description: "Indicates the device licensing status after Windows device based subscription has been enabled."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Indicates the device licensing status after Windows device based subscription ha
|deviceLicenseRemoveFailed|13|This status is set when the device license removing fails.| |unknownFutureValue|14|This is put here as a place holder for future extension.| |unknown|-1|Default. Set to unknown when status cannot be determined.|-----
v1.0 Intune Devices Devicelogcollectionrequest https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-devicelogcollectionrequest.md
Title: "deviceLogCollectionRequest resource type" description: "Windows Log Collection request entity."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"templateType": "String" } ```-----
v1.0 Intune Devices Devicelogcollectionresponse https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-devicelogcollectionresponse.md
Title: "deviceLogCollectionResponse resource type" description: "Windows Log Collection request entity."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"enrolledByUser": "String" } ```-----
v1.0 Intune Devices Devicelogcollectiontemplatetype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-devicelogcollectiontemplatetype.md
Title: "deviceLogCollectionTemplateType enum type" description: "Enum for the template type used for collecting logs"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Enum for the template type used for collecting logs
|Member|Value|Description| |:|:|:| |predefined|0|Predefined template for what will be collected|-----
v1.0 Intune Devices Devicemanagementexchangeaccessstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-devicemanagementexchangeaccessstate.md
Title: "deviceManagementExchangeAccessState enum type" description: "Device Exchange Access State."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Device Exchange Access State.
|allowed|2|Device has access to Exchange| |blocked|3|Device is Blocked in Exchange| |quarantined|4|Device is Quarantined in Exchange|-----
v1.0 Intune Devices Devicemanagementexchangeaccessstatereason https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-devicemanagementexchangeaccessstatereason.md
Title: "deviceManagementExchangeAccessStateReason enum type" description: "Device Exchange Access State Reason."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Device Exchange Access State Reason.
|azureADBlockDueToAccessPolicy|14|Access State revoked by AAD Access Policy| |compromisedPassword|15|Access State revoked by compromised password| |deviceNotKnownWithManagedApp|16|Access state revoked by managed application challenge|-----
v1.0 Intune Devices Devicemanagementscriptassignment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-devicemanagementscriptassignment.md
Title: "deviceManagementScriptAssignment resource type" description: "Contains properties used to assign a device management script to a group."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Devices Devicemanagementscriptdevicestate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-devicemanagementscriptdevicestate.md
Title: "deviceManagementScriptDeviceState resource type" description: "Contains properties for device run state of the device management script."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Contains properties for device run state of the device management script.
|Property|Type|Description| |:|:|:| |id|String|Key of the device management script device state entity. This property is read-only.|
-|runState|[runState](../resources/intune-shared-runstate.md)|State of latest run of the device management script. Possible values are: `unknown`, `success`, `fail`, `scriptError`, `pending`, `notApplicable`.|
+|runState|[runState](../resources/intune-devices-runstate.md)|State of latest run of the device management script. Possible values are: `unknown`, `success`, `fail`, `scriptError`, `pending`, `notApplicable`.|
|resultMessage|String|Details of execution output.| |lastStateUpdateDateTime|DateTimeOffset|Latest time the device management script executes.| |errorCode|Int32|Error code corresponding to erroneous execution of the device management script.|
Here is a JSON representation of the resource.
"errorDescription": "String" } ```-----
v1.0 Intune Devices Devicemanagementscriptgroupassignment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-devicemanagementscriptgroupassignment.md
Title: "deviceManagementScriptGroupAssignment resource type" description: "Contains properties used to assign a device management script to a group."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"targetGroupId": "String" } ```-----
v1.0 Intune Devices Devicemanagementscriptrunsummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-devicemanagementscriptrunsummary.md
Title: "deviceManagementScriptRunSummary resource type" description: "Contains properties for the run summary of a device management script."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"errorUserCount": 1024 } ```-----
v1.0 Intune Devices Devicemanagementscriptuserstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-devicemanagementscriptuserstate.md
Title: "deviceManagementScriptUserState resource type" description: "Contains properties for user run state of the device management script."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"userPrincipalName": "String" } ```-----
v1.0 Intune Devices Devicemanagementsubscriptions https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-devicemanagementsubscriptions.md
Title: "deviceManagementSubscriptions enum type" description: "Tenant mobile device management subscriptions."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Tenant mobile device management subscriptions.
|intunePremium|4|Microsoft Intune Premium Subscription| |intune_EDU|8|Microsoft Intune for Education Subscription| |intune_SMB|16|Microsoft Intune for Small Businesses Subscription|-----
v1.0 Intune Devices Devicemanagementsubscriptionstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-devicemanagementsubscriptionstate.md
Title: "deviceManagementSubscriptionState enum type" description: "Tenant mobile device management subscription state."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Tenant mobile device management subscription state.
|deleted|4|Deleted| |blocked|5|Blocked| |lockedOut|8|LockedOut|-----
v1.0 Intune Devices Deviceoperatingsystemsummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-deviceoperatingsystemsummary.md
Title: "deviceOperatingSystemSummary resource type" description: "Device operating system summary."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"chromeOSCount": 1024 } ```-----
v1.0 Intune Devices Deviceprotectionoverview https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-deviceprotectionoverview.md
Title: "deviceProtectionOverview resource type" description: "Hardware information of a given device."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"pendingQuickScanDeviceCount": 1024 } ```-----
v1.0 Intune Devices Deviceregistrationstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-deviceregistrationstate.md
Title: "deviceRegistrationState enum type" description: "Device registration status."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Device registration status.
|certificateReset|6|The device certificate has been reset.| |notRegisteredPendingEnrollment|7|The device is not registered and pending enrollment.| |unknown|8|The device registration status is unknown.|-----
v1.0 Intune Devices Devicescopeaction https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-devicescopeaction.md
Title: "deviceScopeAction enum type" description: "Trigger on the service to either START or STOP computing metrics data based on a device scope configuration."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Trigger on the service to either START or STOP computing metrics data based on a
|:|:|:| |stop|0|Stop computing metrics data| |start|1|Start computing metrics data|----
v1.0 Intune Devices Devicescopeactionresult https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-devicescopeactionresult.md
Title: "deviceScopeActionResult resource type" description: "The result of the triggered device scope action."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"failedMessage": "String" } ```-----
v1.0 Intune Devices Devicescopeactionstatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-devicescopeactionstatus.md
Title: "deviceScopeActionStatus enum type" description: "Indicates the status of the attempted device scope action"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Indicates the status of the attempted device scope action
|failed|0|Indicates the device scope action failed to trigger.| |succeeded|1|Indicates the device scope action was successfully triggered.| |unknownFutureValue|2|Placeholder value for future expansion.|-----
v1.0 Intune Devices Devicescopeoperator https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-devicescopeoperator.md
Title: "deviceScopeOperator enum type" description: "Device scope configuration query operator. Possible values are: equals, notEquals, contains, notContains, greaterThan, lessThan. Default value: equals."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Device scope configuration query operator. Possible values are: equals, notEqual
|none|0|No operator set for the device scope configuration.| |equals|1|Operator for the device configuration query to be used (Equals).| |unknownFutureValue|2|Placeholder value for future expansion enums such as notEquals, contains, notContains, greaterThan, lessThan.|-----
v1.0 Intune Devices Devicescopeparameter https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-devicescopeparameter.md
Title: "deviceScopeParameter enum type" description: "Device scope configuration parameter. It will be expend in future to add more parameter. Eg: device scope parameter can be OS version, Disk Type, Device manufacturer, device model or Scope tag. Default value: scopeTag."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Device scope configuration parameter. It will be expend in future to add more pa
|none|0|Device Scope parameter is not set| |scopeTag|1|use Scope Tag as parameter for the device scope configuration.| |unknownFutureValue|2|Placeholder value for future expansion.|-----
v1.0 Intune Devices Devicescopestatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-devicescopestatus.md
Title: "deviceScopeStatus enum type" description: "Indicates the device scope status after the device scope has been enabled. Possible values are: none, computing, insufficientData or completed. Default value is none."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Indicates the device scope status after the device scope has been enabled. Possi
|insufficientData|2|Indicates the device scope is enabled but there is insufficient data to calculate results. The system requires information from at least 5 devices before calculations can occur.| |completed|3|Device scope is enabled and finished recalculating the report metric. Device scope is now ready to be used.| |unknownFutureValue|4|Placeholder value for future expansion.|-----
v1.0 Intune Devices Deviceshellscript https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-deviceshellscript.md
Title: "deviceShellScript resource type" description: "Intune will provide customer the ability to run their Shell scripts on the enrolled Mac OS devices. The script can be run once or periodically."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Devices Devicetype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-devicetype.md
Title: "deviceType enum type" description: "Device type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Device type.
|palm|101|Palm.| |unknown|255|Represents that the device type is unknown.| |cloudPC|257|Cloud PC device.|----
v1.0 Intune Devices Disktype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-disktype.md
Title: "diskType enum type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Not yet documented
|hdd|1|Enum member for HDD devices| |ssd|2|Enum member for SSD devices| |unknownFutureValue|3|Evolvable enum member|-----
v1.0 Intune Devices Globaldevicehealthscriptstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-globaldevicehealthscriptstate.md
Title: "globalDeviceHealthScriptState enum type" description: "Indicates whether global device health scripts are enabled and are in which state"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Indicates whether global device health scripts are enabled and are in which stat
|notConfigured|0|Global device health scripts are not configured| |pending|1|Global device health scripts are configured but not fully enabled| |enabled|2|Global device health scripts are enabled and ready to use|-----
v1.0 Intune Devices Hardwareinformation https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-hardwareinformation.md
Title: "hardwareInformation resource type" description: "Hardware information of a given device."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"deviceLicensingLastErrorDescription": "String" } ```-----
v1.0 Intune Devices Healthstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-healthstate.md
Title: "healthState enum type" description: "Indicates health state of the Windows management app."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Indicates health state of the Windows management app.
|unknown|0|Unknown state.| |healthy|1|Healthy state.| |unhealthy|2|Unhealthy state.|-----
v1.0 Intune Devices Insightvaluedouble https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-insightvaluedouble.md
Title: "insightValueDouble resource type" description: "The value in an user experience analytics insight."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"value": "4.2" } ```-----
v1.0 Intune Devices Insightvalueint https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-insightvalueint.md
Title: "insightValueInt resource type" description: "The value in an user experience analytics insight."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"value": 1024 } ```-----
v1.0 Intune Devices Jointype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-jointype.md
Title: "joinType enum type" description: "Device enrollment join type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Device enrollment join type.
|azureADJoined|1|The device is joined by Azure AD.| |azureADRegistered|2|The device is registered by Azure AD.| |hybridAzureADJoined|3|The device is joined by hybrid Azure AD.|-----
v1.0 Intune Devices Locatedeviceactionresult https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-locatedeviceactionresult.md
Title: "locateDeviceActionResult resource type" description: "Locate device action result"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Devices Loggedonuser https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-loggedonuser.md
Title: "loggedOnUser resource type" description: "Logged On User"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"lastLogOnDateTime": "String (timestamp)" } ```-----
v1.0 Intune Devices Lostmodestate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-lostmodestate.md
Title: "lostModeState enum type" description: "State of lost mode, indicating if lost mode is enabled or disabled"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
State of lost mode, indicating if lost mode is enabled or disabled
|:|:|:| |disabled|0|Lost mode is disabled.| |enabled|1|Lost mode is enabled.|-----
v1.0 Intune Devices Malwarestateforwindowsdevice https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-malwarestateforwindowsdevice.md
Title: "malwareStateForWindowsDevice resource type" description: "Malware state for a windows device"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"detectionCount": 1024 } ```-----
v1.0 Intune Devices Manageddevice https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-manageddevice.md
Title: "managedDevice resource type" description: "Devices that are managed or pre-enrolled through Intune"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Devices that are managed or pre-enrolled through Intune
|lastSyncDateTime|DateTimeOffset|The date and time that the device last completed a successful sync with Intune. This property is read-only.| |chassisType|[chassisType](../resources/intune-devices-chassistype.md)|Chassis type of the device. This property is read-only. Possible values are: `unknown`, `desktop`, `laptop`, `worksWorkstation`, `enterpriseServer`, `phone`, `tablet`, `mobileOther`, `mobileUnknown`.| |operatingSystem|String|Operating system of the device. Windows, iOS, etc. This property is read-only.|
-|deviceType|[deviceType](../resources/intune-shared-devicetype.md)|Platform of the device. This property is read-only. 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`.|
+|deviceType|[deviceType](../resources/intune-devices-devicetype.md)|Platform of the device. This property is read-only. 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`.|
|complianceState|[complianceState](../resources/intune-devices-compliancestate.md)|Compliance state of the device. This property is read-only. Possible values are: `unknown`, `compliant`, `noncompliant`, `conflict`, `error`, `inGracePeriod`, `configManager`.| |jailBroken|String|whether the device is jail broken or rooted. This property is read-only.| |managementAgent|[managementAgentType](../resources/intune-shared-managementagenttype.md)|Management channel of the device. Intune, EAS, etc. This property is read-only. Possible values are: `eas`, `mdm`, `easMdm`, `intuneClient`, `easIntuneClient`, `configurationManagerClient`, `configurationManagerClientMdm`, `configurationManagerClientMdmEas`, `unknown`, `jamf`, `googleCloudDevicePolicyController`, `microsoft365ManagedMdm`, `msSense`, `intuneAosp`.|
Devices that are managed or pre-enrolled through Intune
|azureADRegistered|Boolean|Whether the device is Azure Active Directory registered. This property is read-only.| |deviceEnrollmentType|[deviceEnrollmentType](../resources/intune-devices-deviceenrollmenttype.md)|Enrollment type of the device. This property is read-only. Possible values are: `unknown`, `userEnrollment`, `deviceEnrollmentManager`, `appleBulkWithUser`, `appleBulkWithoutUser`, `windowsAzureADJoin`, `windowsBulkUserless`, `windowsAutoEnrollment`, `windowsBulkAzureDomainJoin`, `windowsCoManagement`, `windowsAzureADJoinUsingDeviceAuth`, `appleUserEnrollment`, `appleUserEnrollmentWithServiceAccount`, `azureAdJoinUsingAzureVmExtension`, `androidEnterpriseDedicatedDevice`, `androidEnterpriseFullyManaged`, `androidEnterpriseCorporateWorkProfile`.| |lostModeState|[lostModeState](../resources/intune-devices-lostmodestate.md)|Indicates if Lost mode is enabled or disabled. This property is read-only. Possible values are: `disabled`, `enabled`.|
-|activationLockBypassCode|String|Code that allows the Activation Lock on a device to be bypassed. This property is read-only.|
+|activationLockBypassCode|String|The code that allows the Activation Lock on managed device to be bypassed. Default, is Null (Non-Default property) for this property when returned as part of managedDevice entity in LIST call. Individual GET call with select query options is needed to retrieve actual values. Supports: $select. $Search is not supported. Read-only. This property is read-only.|
|emailAddress|String|Email(s) for the user associated with the device. This property is read-only.| |azureActiveDirectoryDeviceId|String|The unique identifier for the Azure Active Directory device. Read only. This property is read-only.| |azureADDeviceId|String|The unique identifier for the Azure Active Directory device. Read only. This property is read-only.|
Devices that are managed or pre-enrolled through Intune
|notes|String|Notes on the device created by IT Admin. Return default value null in LIST managedDevices. Real value only returned in singel device GET call with device id and included in select parameter. Supports: $select. $Search is not supported.| |configurationManagerClientHealthState|[configurationManagerClientHealthState](../resources/intune-devices-configurationmanagerclienthealthstate.md)|Configuration manager client health state, valid only for devices managed by MDM/ConfigMgr Agent| |configurationManagerClientInformation|[configurationManagerClientInformation](../resources/intune-devices-configurationmanagerclientinformation.md)|Configuration manager client information, valid only for devices managed, duel-managed or tri-managed by ConfigMgr Agent|
-|ethernetMacAddress|String|Ethernet MAC. This property is read-only.|
+|ethernetMacAddress|String|Ethernet MAC. Default, is Null (Non-Default property) for this property when returned as part of managedDevice entity. Individual get call with select query options is needed to retrieve actual values. Example: deviceManagement/managedDevices({managedDeviceId})?$select=ethernetMacAddress Supports: $select. $Search is not supported. Read-only. This property is read-only.|
|physicalMemoryInBytes|Int64|Total Memory in Bytes. Return default value 0 in LIST managedDevices. Real value only returned in singel device GET call with device id and included in select parameter. Supports: $select. Default value is 0. Read-only. This property is read-only.| |processorArchitecture|[managedDeviceArchitecture](../resources/intune-devices-manageddevicearchitecture.md)|Processor architecture. This property is read-only. Possible values are: `unknown`, `x86`, `x64`, `arm`, `arM64`.| |specificationVersion|String|Specification version. This property is read-only.| |joinType|[joinType](../resources/intune-devices-jointype.md)|Device join type. Possible values are: `unknown`, `azureADJoined`, `azureADRegistered`, `hybridAzureADJoined`.| |skuFamily|String|Device sku family|
-|skuNumber|Int32|Device sku number, see also: https://learn.microsoft.com/windows/win32/api/sysinfoapi/nf-sysinfoapi-getproductinfo. Valid values 0 to 2147483647. This property is read-only.|
+|skuNumber|Int32|Device sku number, see also: https://learn.microsoft.com/en-us/windows/win32/api/sysinfoapi/nf-sysinfoapi-getproductinfo. Valid values 0 to 2147483647. This property is read-only.|
|managementFeatures|[managedDeviceManagementFeatures](../resources/intune-devices-manageddevicemanagementfeatures.md)|Device management features. Possible values are: `none`, `microsoftManagedDesktop`.| |chromeOSDeviceInfo|[chromeOSDeviceProperty](../resources/intune-devices-chromeosdeviceproperty.md) collection|List of properties of the ChromeOS Device.| |enrollmentProfileName|String|Name of the enrollment profile assigned to the device. Default value is empty string, indicating no enrollment profile was assgined. This property is read-only.|
Here is a JSON representation of the resource.
"deviceFirmwareConfigurationInterfaceManaged": true } ```------
v1.0 Intune Devices Manageddevicearchitecture https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-manageddevicearchitecture.md
Title: "managedDeviceArchitecture enum type" description: "Processor architecture"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Processor architecture
|x64|2|X64| |arm|3|ARM| |arM64|4|ARM64|-----
v1.0 Intune Devices Manageddevicecleanupsettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-manageddevicecleanupsettings.md
Title: "managedDeviceCleanupSettings resource type" description: "Define the rule when the admin wants the devices to be cleaned up."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"deviceInactivityBeforeRetirementInDays": "String" } ```-----
v1.0 Intune Devices Manageddevicemanagementfeatures https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-manageddevicemanagementfeatures.md
Title: "managedDeviceManagementFeatures enum type" description: "Device management features."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Device management features.
|:|:|:| |none|0|Unknown device management features.| |microsoftManagedDesktop|1|Microsoft Managed Desktop|-----
v1.0 Intune Devices Manageddevicemodelsandmanufacturers https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-manageddevicemodelsandmanufacturers.md
Title: "managedDeviceModelsAndManufacturers resource type" description: "Models and Manufactures meatadata for managed devices in the account"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Devices Manageddeviceoverview https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-manageddeviceoverview.md
Title: "managedDeviceOverview resource type" description: "Summary data for managed devices"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"lastModifiedDateTime": "String (timestamp)" } ```-----
v1.0 Intune Devices Manageddevicepartnerreportedhealthstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-manageddevicepartnerreportedhealthstate.md
Title: "managedDevicePartnerReportedHealthState enum type" description: "Available health states for the Device Health API"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Available health states for the Device Health API
|unresponsive|7|Device is considered unresponsive by the mobile threat defense partner. The device health is not known.| |compromised|8|Device is considered compromised by the Threat Defense partner. This means the device has an active Threat or Risk which cannot be easily remediated by the end user and the user should contact their IT Admin.| |misconfigured|9|Device is considered misconfigured with the Threat Defense partner. This means the device is missing a required profile or configuration for the Threat Defense Partner to function properly and is thus threat or risk analysis is not able to complete.|-----
v1.0 Intune Devices Manageddeviceremoteaction https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-manageddeviceremoteaction.md
Title: "managedDeviceRemoteAction enum type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Not yet documented
|activateDeviceEsim|14|Name of action to Activate eSIM on the device.| |collectDiagnostics|15|Name of the collectDiagnostics action.| |initiateMobileDeviceManagementKeyRecovery|16|Name of action to initiate MDM key recovery|-----
v1.0 Intune Devices Managedinstallerstatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-managedinstallerstatus.md
Title: "managedInstallerStatus enum type" description: "ManagedInstallerStatus"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
ManagedInstallerStatus
|:|:|:| |disabled|0|Managed Installer is Disabled| |enabled|1|Managed Installer is Enabled|-----
v1.0 Intune Devices Managementagenttype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-managementagenttype.md
Title: "managementAgentType enum type" description: "Management agent type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Management agent type.
|microsoft365ManagedMdm|258|This device is managed by Microsoft 365 through Intune.| |msSense|1024|Not yet documented| |intuneAosp|2048|This device is managed by Intune's MDM for AOSP (Android Open Source Project) devices|----
v1.0 Intune Devices Managementstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-managementstate.md
Title: "managementState enum type" description: "Management state of device in Microsoft Intune."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Management state of device in Microsoft Intune.
|wipeCanceled|9|A wipe command for this device has been canceled| |retireCanceled|10|A retire command for this device has been canceled| |discovered|11|The device is discovered but not fully enrolled.|-----
v1.0 Intune Devices Oemwarranty https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-oemwarranty.md
Title: "oemWarranty resource type" description: "OEM Warranty information for a given device"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"deviceConfigurationUrl": "String" } ```-----
v1.0 Intune Devices Oemwarrantyinformationonboarding https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-oemwarrantyinformationonboarding.md
Title: "oemWarrantyInformationOnboarding resource type" description: "Warranty status entity for a given OEM"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"available": true } ```-----
v1.0 Intune Devices Operatingsystemupgradeeligibility https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-operatingsystemupgradeeligibility.md
Title: "operatingSystemUpgradeEligibility enum type" description: "Work From Anywhere windows device upgrade eligibility status"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Work From Anywhere windows device upgrade eligibility status
|unknown|1|Not enough data available to compute the eligibility of device for windows upgrade| |notCapable|2|The device is not capable for windows upgrade| |capable|3|The device is capable for windows upgrade|-----
v1.0 Intune Devices Osversioncount https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-osversioncount.md
Title: "osVersionCount resource type" description: "Count of devices with malware for each OS version"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"lastUpdateDateTime": "String (timestamp)" } ```-----
v1.0 Intune Devices Powerliftdownloadrequest https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-powerliftdownloadrequest.md
Title: "powerliftDownloadRequest resource type" description: "Request used to download app diagnostic files."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Devices Powerliftincidentmetadata https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-powerliftincidentmetadata.md
Title: "powerliftIncidentMetadata resource type" description: "Collection of app diagnostics associated with a user."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Devices Remediationstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-remediationstate.md
Title: "remediationState enum type" description: "Indicates the type of execution status of the device management script."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Indicates the type of execution status of the device management script.
|success|2|Remediation script executed successfully and remediated the device state| |remediationFailed|3|Remediation script executed successfully but failed to remediated the device state| |scriptError|4|Remediation script execution encountered and error or timed out|-----
v1.0 Intune Devices Remoteaction https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-remoteaction.md
Title: "remoteAction enum type" description: "Remote actions Intune supports."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Remote actions Intune supports.
|reenable|26|Indicate user initiates an action to reenable the device.| |moveDeviceToOrganizationalUnit|27|Indicate user initiates an action to move the device to a new organizational unit.| |initiateMobileDeviceManagementKeyRecovery|28|Add device action of InitiateMobileDeviceManagementKeyRecovery|-----
v1.0 Intune Devices Remoteactionaudit https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-remoteactionaudit.md
Title: "remoteActionAudit resource type" description: "Report of remote actions initiated on the devices belonging to a certain tenant."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"managedDeviceId": "String" } ```-----
v1.0 Intune Devices Remotelockactionresult https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-remotelockactionresult.md
Title: "remoteLockActionResult resource type" description: "Lock action result with a pin to unlock"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"unlockPin": "String" } ```-----
v1.0 Intune Devices Resetpasscodeactionresult https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-resetpasscodeactionresult.md
Title: "resetPasscodeActionResult resource type" description: "Reset passcode action result"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"errorCode": 1024 } ```-----
v1.0 Intune Devices Revokeapplevpplicensesactionresult https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-revokeapplevpplicensesactionresult.md
Title: "revokeAppleVppLicensesActionResult resource type" description: "Revoke Apple Vpp licenses action result"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"failedLicensesCount": 1024 } ```-----
v1.0 Intune Devices Rotatebitlockerkeysdeviceactionresult https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-rotatebitlockerkeysdeviceactionresult.md
Title: "rotateBitLockerKeysDeviceActionResult resource type" description: "RotateBitLockerKeys device action result"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"errorCode": 1024 } ```-----
v1.0 Intune Devices Runstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-runstate.md
Title: "runState enum type" description: "Indicates the type of execution status of the device management script."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Indicates the type of execution status of the device management script.
|scriptError|3|Discovery script hits error.| |pending|4|Script is pending to execute.| |notApplicable|5|Script is not applicable for this device.|----
v1.0 Intune Devices Sharedappledeviceuser https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-sharedappledeviceuser.md
Title: "sharedAppleDeviceUser resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"dataUsed": 1024 } ```-----
v1.0 Intune Devices Tenantattachrbac https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-tenantattachrbac.md
Title: "tenantAttachRBAC resource type" description: "Singleton entity that acts as a container for tenant attach enablement functionality."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"id": "String (identifier)" } ```-----
v1.0 Intune Devices Tenantattachrbacstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-tenantattachrbacstate.md
Title: "tenantAttachRBACState resource type" description: "Represents result of GetState API."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"enabled": true } ```-----
v1.0 Intune Devices Updatewindowsdeviceaccountactionparameter https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-updatewindowsdeviceaccountactionparameter.md
Title: "updateWindowsDeviceAccountActionParameter resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"sessionInitiationProtocalAddress": "String" } ```-----
v1.0 Intune Devices Userexperienceanalyticsanomaly https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticsanomaly.md
Title: "userExperienceAnalyticsAnomaly resource type" description: "The user experience analytics anomaly entity contains anomaly details."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"assetPublisher": "String" } ```-----
v1.0 Intune Devices Userexperienceanalyticsanomalydevice https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticsanomalydevice.md
Title: "userExperienceAnalyticsAnomalyDevice resource type" description: "The user experience analytics anomaly entity contains device details."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"anomalyOnDeviceLatestOccurrenceDateTime": "String (timestamp)" } ```-----
v1.0 Intune Devices Userexperienceanalyticsanomalyseverity https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticsanomalyseverity.md
Title: "userExperienceAnalyticsAnomalySeverity enum type" description: "Indicates the severity of the anomaly. Eg: anomaly severity can be high, medium, low, informational or other."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Indicates the severity of the anomaly. Eg: anomaly severity can be high, medium,
|informational|3|Indicates the anomaly is of informational severity.| |other|4|Indicates the severity of anomaly is undefined.| |unknownFutureValue|5|Evolvable enumeration sentinel value. Do not use.|-----
v1.0 Intune Devices Userexperienceanalyticsanomalyseverityoverview https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticsanomalyseverityoverview.md
Title: "userExperienceAnalyticsAnomalySeverityOverview resource type" description: "The user experience analytics anomaly severity overview entity contains the count information for each severity of anomaly."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
The user experience analytics anomaly severity overview entity contains the coun
## Properties |Property|Type|Description| |:|:|:|
-|lowSeverityAnomalyCount|Int32|The number of low severity anomalies which have been detected. Valid values -2147483648 to 2147483647|
-|mediumSeverityAnomalyCount|Int32|The number of medium severity anomalies which have been detected. Valid values -2147483648 to 2147483647|
-|highSeverityAnomalyCount|Int32|The number of high severity anomalies which have been detected. Valid values -2147483648 to 2147483647|
-|informationalSeverityAnomalyCount|Int32|The number of informational severity anomalies which have been detected. Valid values -2147483648 to 2147483647|
+|lowSeverityAnomalyCount|Int32|Indicates count of low severity anomalies which have been detected. Valid values -2147483648 to 2147483647|
+|mediumSeverityAnomalyCount|Int32|Indicates count of medium severity anomalies which have been detected. Valid values -2147483648 to 2147483647|
+|highSeverityAnomalyCount|Int32|Indicates count of high severity anomalies which have been detected. Valid values -2147483648 to 2147483647|
+|informationalSeverityAnomalyCount|Int32|Indicates count of informational severity anomalies which have been detected. Valid values -2147483648 to 2147483647|
## Relationships None
Here is a JSON representation of the resource.
"informationalSeverityAnomalyCount": 1024 } ```-----
v1.0 Intune Devices Userexperienceanalyticsanomalystate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticsanomalystate.md
Title: "userExperienceAnalyticsAnomalyState enum type" description: "Indicates the state of the anomaly. Eg: anomaly severity can be new, active, disabled, removed or other."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Indicates the state of the anomaly. Eg: anomaly severity can be new, active, dis
|removed|3|Indicates the state of anomaly is removed.| |other|4|Indicates the state of anomaly is undefined.| |unknownFutureValue|5|Evolvable enumeration sentinel value. Do not use.|-----
v1.0 Intune Devices Userexperienceanalyticsanomalytype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticsanomalytype.md
Title: "userExperienceAnalyticsAnomalyType enum type" description: "Indicates the category of the anomaly. Eg: anomaly type can be device, application, stop error, driver or other."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Indicates the category of the anomaly. Eg: anomaly type can be device, applicati
|driver|3|Indicates the detected anomaly is due to a specific driver.| |other|4|Indicates the category of detected anomaly is undefined.| |unknownFutureValue|5|Evolvable enumeration sentinel value. Do not use.|-----
v1.0 Intune Devices Userexperienceanalyticsapphealthapplicationperformance https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticsapphealthapplicationperformance.md
Title: "userExperienceAnalyticsAppHealthApplicationPerformance resource type" description: "The user experience analytics application performance entity contains app performance details."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"meanTimeToFailureInMinutes": 1024 } ```-----
v1.0 Intune Devices Userexperienceanalyticsapphealthappperformancebyappversion https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticsapphealthappperformancebyappversion.md
Title: "userExperienceAnalyticsAppHealthAppPerformanceByAppVersion resource type" description: "The user experience analytics application performance entity contains app performance details by app version."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"meanTimeToFailureInMinutes": 1024 } ```-----
v1.0 Intune Devices Userexperienceanalyticsapphealthappperformancebyappversiondetails https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticsapphealthappperformancebyappversiondetails.md
Title: "userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails resource type" description: "The user experience analytics application performance entity contains app performance by app version details."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"appCrashCount": 1024 } ```-----
v1.0 Intune Devices Userexperienceanalyticsapphealthappperformancebyappversiondeviceid https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticsapphealthappperformancebyappversiondeviceid.md
Title: "userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId resource type" description: "The user experience analytics application performance entity contains app performance by app version device id."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"appCrashCount": 1024 } ```-----
v1.0 Intune Devices Userexperienceanalyticsapphealthappperformancebyosversion https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticsapphealthappperformancebyosversion.md
Title: "userExperienceAnalyticsAppHealthAppPerformanceByOSVersion resource type" description: "The user experience analytics application performance entity contains app performance details by OS version."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"meanTimeToFailureInMinutes": 1024 } ```-----
v1.0 Intune Devices Userexperienceanalyticsapphealthdevicemodelperformance https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticsapphealthdevicemodelperformance.md
Title: "userExperienceAnalyticsAppHealthDeviceModelPerformance resource type" description: "The user experience analytics device model performance entity contains device model performance details."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"healthStatus": "String" } ```-----
v1.0 Intune Devices Userexperienceanalyticsapphealthdeviceperformance https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticsapphealthdeviceperformance.md
Title: "userExperienceAnalyticsAppHealthDevicePerformance resource type" description: "The user experience analytics device performance entity contains device performance details."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"deviceDisplayName": "String" } ```-----
v1.0 Intune Devices Userexperienceanalyticsapphealthdeviceperformancedetails https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticsapphealthdeviceperformancedetails.md
Title: "userExperienceAnalyticsAppHealthDevicePerformanceDetails resource type" description: "The user experience analytics device performance entity contains device performance details."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"deviceDisplayName": "String" } ```-----
v1.0 Intune Devices Userexperienceanalyticsapphealthosversionperformance https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticsapphealthosversionperformance.md
Title: "userExperienceAnalyticsAppHealthOSVersionPerformance resource type" description: "The user experience analytics device OS version performance entity contains OS version performance details."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"osVersionAppHealthStatus": "String" } ```-----
v1.0 Intune Devices Userexperienceanalyticsautopilotdevicessummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticsautopilotdevicessummary.md
Title: "userExperienceAnalyticsAutopilotDevicesSummary resource type" description: "The user experience analytics summary of Devices not windows autopilot ready."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"totalWindows10DevicesWithoutTenantAttached": 1024 } ```-----
v1.0 Intune Devices Userexperienceanalyticsbaseline https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticsbaseline.md
Title: "userExperienceAnalyticsBaseline resource type" description: "The user experience analytics baseline entity contains baseline values against which to compare the user experience analytics scores."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"createdDateTime": "String (timestamp)" } ```-----
v1.0 Intune Devices Userexperienceanalyticsbatteryhealthappimpact https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticsbatteryhealthappimpact.md
Title: "userExperienceAnalyticsBatteryHealthAppImpact resource type" description: "The user experience analytics battery health app impact entity contains battery usage related information at an app level for the tenant."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"batteryUsagePercentage": "4.2" } ```-----
v1.0 Intune Devices Userexperienceanalyticsbatteryhealthcapacitydetails https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticsbatteryhealthcapacitydetails.md
Title: "userExperienceAnalyticsBatteryHealthCapacityDetails resource type" description: "The user experience analytics battery health capacity entity contains count of devices broken down into 3 categories - devices with capacity > 80%, devices with capacity 50-80% and devices with capacity < 50 %.This API provides the count of devices in these 3 categories.."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"lastRefreshedDateTime": "String (timestamp)" } ```-----
v1.0 Intune Devices Userexperienceanalyticsbatteryhealthdeviceappimpact https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticsbatteryhealthdeviceappimpact.md
Title: "userExperienceAnalyticsBatteryHealthDeviceAppImpact resource type" description: "The user experience analytics battery health device app impact entity contains battery usage related information at an app level for a given device."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"batteryUsagePercentage": "4.2" } ```-----
v1.0 Intune Devices Userexperienceanalyticsbatteryhealthdeviceperformance https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticsbatteryhealthdeviceperformance.md
Title: "userExperienceAnalyticsBatteryHealthDevicePerformance resource type" description: "The user experience analytics battery health device performance entity contains device level battery information."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"healthStatus": "String" } ```-----
v1.0 Intune Devices Userexperienceanalyticsbatteryhealthdeviceruntimehistory https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticsbatteryhealthdeviceruntimehistory.md
Title: "userExperienceAnalyticsBatteryHealthDeviceRuntimeHistory resource type" description: "The user experience analytics battery health runtime history entity contains the trend of runtime of a device over a period of 30 days"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"estimatedRuntimeInMinutes": 1024 } ```-----
v1.0 Intune Devices Userexperienceanalyticsbatteryhealthmodelperformance https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticsbatteryhealthmodelperformance.md
Title: "userExperienceAnalyticsBatteryHealthModelPerformance resource type" description: "The user experience analytics battery health model performance entity contains battery related information for all unique device models in their organization."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"modelBatteryHealthScore": 1024 } ```-----
v1.0 Intune Devices Userexperienceanalyticsbatteryhealthosperformance https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticsbatteryhealthosperformance.md
Title: "userExperienceAnalyticsBatteryHealthOsPerformance resource type" description: "The user experience analytics battery health os performance entity contains battery related information for all operating system versions in their organization."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"averageBatteryAgeInDays": 1024 } ```-----
v1.0 Intune Devices Userexperienceanalyticsbatteryhealthruntimedetails https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticsbatteryhealthruntimedetails.md
Title: "userExperienceAnalyticsBatteryHealthRuntimeDetails resource type" description: "The user experience analytics battery health runtime entity contains count of devices broken down into 3 categories - devices with runtime > 5 hours, devices with runtime 3-5 hours and devices with runtime < 3 hours.This API provides the count of devices in these 3 categories."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"lastRefreshedDateTime": "String (timestamp)" } ```-----
v1.0 Intune Devices Userexperienceanalyticscategory https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticscategory.md
Title: "userExperienceAnalyticsCategory resource type" description: "The user experience analytics category entity contains the scores and insights for the various metrics of a category."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"state": "String" } ```-----
v1.0 Intune Devices Userexperienceanalyticscloudidentitydevicessummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticscloudidentitydevicessummary.md
Title: "userExperienceAnalyticsCloudIdentityDevicesSummary resource type" description: "The user experience analytics work from anywhere cloud identity devices summary."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"deviceWithoutCloudIdentityCount": 1024 } ```-----
v1.0 Intune Devices Userexperienceanalyticscloudmanagementdevicessummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticscloudmanagementdevicessummary.md
Title: "userExperienceAnalyticsCloudManagementDevicesSummary resource type" description: "The user experience work from anywhere Cloud management devices summary."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"tenantAttachDeviceCount": 1024 } ```-----
v1.0 Intune Devices Userexperienceanalyticsdeviceperformance https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticsdeviceperformance.md
Title: "userExperienceAnalyticsDevicePerformance resource type" description: "The user experience analytics device performance entity contains device boot performance details."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"modelStartupPerformanceScore": "4.2" } ```-----
v1.0 Intune Devices Userexperienceanalyticsdevicescope https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticsdevicescope.md
Title: "userExperienceAnalyticsDeviceScope resource type" description: "The user experience analytics device scope entity contains device scope configuration values use to apply filtering on the endpoint analytics reports."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"lastModifiedDateTime": "String (timestamp)" } ```-----
v1.0 Intune Devices Userexperienceanalyticsdevicescopesummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticsdevicescopesummary.md
Title: "userExperienceAnalyticsDeviceScopeSummary resource type" description: "The user experience analytics tenant level information for all the device scope configurations"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Devices Userexperienceanalyticsdevicescores https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticsdevicescores.md
Title: "userExperienceAnalyticsDeviceScores resource type" description: "The user experience analytics device scores entity consolidates the various endpoint analytics scores."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"healthStatus": "String" } ```-----
v1.0 Intune Devices Userexperienceanalyticsdevicestartuphistory https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticsdevicestartuphistory.md
Title: "userExperienceAnalyticsDeviceStartupHistory resource type" description: "The user experience analytics device startup history entity contains device boot performance history details."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"restartFaultBucket": "String" } ```-----
v1.0 Intune Devices Userexperienceanalyticsdevicestartupprocess https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticsdevicestartupprocess.md
Title: "userExperienceAnalyticsDeviceStartupProcess resource type" description: "The user experience analytics device startup process details."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"startupImpactInMs": 1024 } ```-----
v1.0 Intune Devices Userexperienceanalyticsdevicestartupprocessperformance https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticsdevicestartupprocessperformance.md
Title: "userExperienceAnalyticsDeviceStartupProcessPerformance resource type" description: "The user experience analytics device startup process performance."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"totalImpactInMs2": 1024 } ```-----
v1.0 Intune Devices Userexperienceanalyticsdevicetimelineevents https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticsdevicetimelineevents.md
+
+ Title: "userExperienceAnalyticsDeviceTimelineEvents resource type"
+description: "The user experience analytics device events entity contains NRT device events details."
+
+localization_priority: Normal
++
+# userExperienceAnalyticsDeviceTimelineEvents resource type
+
+Namespace: microsoft.graph
+
+> **Important:** Microsoft Graph APIs under the /beta version are subject to change; production use is not supported.
+
+> **Note:** The Microsoft Graph API for Intune requires an [active Intune license](https://go.microsoft.com/fwlink/?linkid=839381) for the tenant.
+
+The user experience analytics device events entity contains NRT device events details.
+
+## Methods
+|Method|Return Type|Description|
+|:|:|:|
+|[List userExperienceAnalyticsDeviceTimelineEventses](../api/intune-devices-userexperienceanalyticsdevicetimelineevents-list.md)|[userExperienceAnalyticsDeviceTimelineEvents](../resources/intune-devices-userexperienceanalyticsdevicetimelineevents.md) collection|List properties and relationships of the [userExperienceAnalyticsDeviceTimelineEvents](../resources/intune-devices-userexperienceanalyticsdevicetimelineevents.md) objects.|
+|[Get userExperienceAnalyticsDeviceTimelineEvents](../api/intune-devices-userexperienceanalyticsdevicetimelineevents-get.md)|[userExperienceAnalyticsDeviceTimelineEvents](../resources/intune-devices-userexperienceanalyticsdevicetimelineevents.md)|Read properties and relationships of the [userExperienceAnalyticsDeviceTimelineEvents](../resources/intune-devices-userexperienceanalyticsdevicetimelineevents.md) object.|
+|[Create userExperienceAnalyticsDeviceTimelineEvents](../api/intune-devices-userexperienceanalyticsdevicetimelineevents-create.md)|[userExperienceAnalyticsDeviceTimelineEvents](../resources/intune-devices-userexperienceanalyticsdevicetimelineevents.md)|Create a new [userExperienceAnalyticsDeviceTimelineEvents](../resources/intune-devices-userexperienceanalyticsdevicetimelineevents.md) object.|
+|[Delete userExperienceAnalyticsDeviceTimelineEvents](../api/intune-devices-userexperienceanalyticsdevicetimelineevents-delete.md)|None|Deletes a [userExperienceAnalyticsDeviceTimelineEvents](../resources/intune-devices-userexperienceanalyticsdevicetimelineevents.md).|
+|[Update userExperienceAnalyticsDeviceTimelineEvents](../api/intune-devices-userexperienceanalyticsdevicetimelineevents-update.md)|[userExperienceAnalyticsDeviceTimelineEvents](../resources/intune-devices-userexperienceanalyticsdevicetimelineevents.md)|Update the properties of a [userExperienceAnalyticsDeviceTimelineEvents](../resources/intune-devices-userexperienceanalyticsdevicetimelineevents.md) object.|
+
+## Properties
+|Property|Type|Description|
+|:|:|:|
+|id|String|The unique identifier of the user experience analytics NRT device timeline events object.|
+|deviceId|String|The id of the device where the event occurred.|
+|eventDateTime|DateTimeOffset|The time the event occured.|
+|eventLevel|[deviceEventLevel](../resources/intune-devices-deviceeventlevel.md)|The severity level of the event enum. Possible values are: `none`, `verbose`, `information`, `warning`, `error` ,`critical`. Default value: `none`. Possible values are: `none`, `verbose`, `information`, `warning`, `error`, `critical`, `unknownFutureValue`.|
+|eventSource|String|The source of the event. Examples include: Intune, Sccm.|
+|eventName|String|The name of the event. Examples include: BootEvent, LogonEvent, AppCrashEvent, AppHangEvent.|
+|eventDetails|String|The details provided by the event, format depends on event type.|
+|eventAdditionalInformation|String|Placeholder value for future expansion.|
+
+## Relationships
+None
+
+## JSON Representation
+Here is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "keyProperty": "id",
+ "@odata.type": "microsoft.graph.userExperienceAnalyticsDeviceTimelineEvents"
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.userExperienceAnalyticsDeviceTimelineEvents",
+ "id": "String (identifier)",
+ "deviceId": "String",
+ "eventDateTime": "String (timestamp)",
+ "eventLevel": "String",
+ "eventSource": "String",
+ "eventName": "String",
+ "eventDetails": "String",
+ "eventAdditionalInformation": "String"
+}
+```
v1.0 Intune Devices Userexperienceanalyticsdevicewithoutcloudidentity https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticsdevicewithoutcloudidentity.md
Title: "userExperienceAnalyticsDeviceWithoutCloudIdentity resource type" description: "The user experience analytics Device without Cloud Identity."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"azureAdDeviceId": "String" } ```-----
v1.0 Intune Devices Userexperienceanalyticshealthstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticshealthstate.md
Title: "userExperienceAnalyticsHealthState enum type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Not yet documented
|needsAttention|2|Not yet documented| |meetingGoals|3|Not yet documented| |unknownFutureValue|4|Evolvable enum member|-----
v1.0 Intune Devices Userexperienceanalyticsimpactingprocess https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticsimpactingprocess.md
Title: "userExperienceAnalyticsImpactingProcess resource type" description: "The user experience analytics top impacting process entity."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"impactValue": "4.2" } ```-----
v1.0 Intune Devices Userexperienceanalyticsinsight https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticsinsight.md
Title: "userExperienceAnalyticsInsight resource type" description: "The user experience analytics insight is the recomendation to improve the user experience analytics score."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"severity": "String" } ```-----
v1.0 Intune Devices Userexperienceanalyticsinsightseverity https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticsinsightseverity.md
Title: "userExperienceAnalyticsInsightSeverity enum type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Not yet documented
|informational|1|Not yet documented| |warning|2|Not yet documented| |error|3|Not yet documented|-----
v1.0 Intune Devices Userexperienceanalyticsinsightvalue https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticsinsightvalue.md
Title: "userExperienceAnalyticsInsightValue resource type" description: "The value in an user experience analytics insight."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"@odata.type": "#microsoft.graph.userExperienceAnalyticsInsightValue" } ```-----
v1.0 Intune Devices Userexperienceanalyticsmetric https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticsmetric.md
Title: "userExperienceAnalyticsMetric resource type" description: "The user experience analytics metric contains the score and units of a metric of a user experience anlaytics category."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"unit": "String" } ```-----
v1.0 Intune Devices Userexperienceanalyticsmetrichistory https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticsmetrichistory.md
Title: "userExperienceAnalyticsMetricHistory resource type" description: "The user experience analytics metric history."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"metricType": "String" } ```-----
v1.0 Intune Devices Userexperienceanalyticsmodelscores https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticsmodelscores.md
Title: "userExperienceAnalyticsModelScores resource type" description: "The user experience analytics model scores entity consolidates the various endpoint analytics scores."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"healthStatus": "String" } ```-----
v1.0 Intune Devices Userexperienceanalyticsnotautopilotreadydevice https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticsnotautopilotreadydevice.md
Title: "userExperienceAnalyticsNotAutopilotReadyDevice resource type" description: "The user experience analytics Device not windows autopilot ready."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"azureAdJoinType": "String" } ```-----
v1.0 Intune Devices Userexperienceanalyticsoperatingsystemrestartcategory https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticsoperatingsystemrestartcategory.md
Title: "userExperienceAnalyticsOperatingSystemRestartCategory enum type" description: "Operating System restart category"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Operating System restart category
|longPowerButtonPress|6|Long power button press| |bootError|7|Boot error| |update|8|Update|-----
v1.0 Intune Devices Userexperienceanalyticsoverview https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticsoverview.md
Title: "userExperienceAnalyticsOverview resource type" description: "The user experience analytics overview entity contains the overall score and the scores and insights of every metric of all categories."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"batteryHealthState": "String" } ```-----
v1.0 Intune Devices Userexperienceanalyticsregressionsummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticsregressionsummary.md
Title: "userExperienceAnalyticsRegressionSummary resource type" description: "The user experience analytics Regression Summary."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"id": "String (identifier)" } ```-----
v1.0 Intune Devices Userexperienceanalyticsremoteconnection https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticsremoteconnection.md
Title: "userExperienceAnalyticsRemoteConnection resource type" description: "The user experience analyte remote connection entity."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"userPrincipalName": "String" } ```-----
v1.0 Intune Devices Userexperienceanalyticsresourceperformance https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticsresourceperformance.md
Title: "userExperienceAnalyticsResourcePerformance resource type" description: "The user experience analytics resource performance entity."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"averageSpikeTimeScore": 1024 } ```-----
v1.0 Intune Devices Userexperienceanalyticsscorehistory https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticsscorehistory.md
Title: "userExperienceAnalyticsScoreHistory resource type" description: "The user experience analytics device startup score history."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"restartScore": 1024 } ```-----
v1.0 Intune Devices Userexperienceanalyticssettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticssettings.md
Title: "userExperienceAnalyticsSettings resource type" description: "The user experience analytics insight is the recomendation to improve the user experience analytics score."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"configurationManagerDataConnectorConfigured": true } ```-----
v1.0 Intune Devices Userexperienceanalyticssummarizedby https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticssummarizedby.md
Title: "userExperienceAnalyticsSummarizedBy enum type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Not yet documented
|modelRegression|4|Not yet documented| |manufacturerRegression|5|Not yet documented| |operatingSystemVersionRegression|6|Not yet documented|-----
v1.0 Intune Devices Userexperienceanalyticswindows10devicessummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticswindows10devicessummary.md
Title: "userExperienceAnalyticsWindows10DevicesSummary resource type" description: "The user experience analytics work from anywhere Windows 10 devices summary."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"unsupportedOSversionDeviceCount": 1024 } ```-----
v1.0 Intune Devices Userexperienceanalyticsworkfromanywheredevice https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticsworkfromanywheredevice.md
Title: "userExperienceAnalyticsWorkFromAnywhereDevice resource type" description: "The user experience analytics Device for work from anywhere report"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"healthStatus": "String" } ```-----
v1.0 Intune Devices Userexperienceanalyticsworkfromanywheredevicessummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticsworkfromanywheredevicessummary.md
Title: "userExperienceAnalyticsWorkFromAnywhereDevicesSummary resource type" description: "The user experience analytics Work From Anywhere metrics devices summary."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"devicesWithoutAutopilotProfileAssigned": 1024 } ```-----
v1.0 Intune Devices Userexperienceanalyticsworkfromanywherehardwarereadinessmetric https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticsworkfromanywherehardwarereadinessmetric.md
Title: "userExperienceAnalyticsWorkFromAnywhereHardwareReadinessMetric resource type" description: "The user experience analytics hardware readiness entity contains account level information about hardware blockers for windows upgrade."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"osCheckFailedPercentage": "4.2" } ```-----
v1.0 Intune Devices Userexperienceanalyticsworkfromanywheremetric https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticsworkfromanywheremetric.md
Title: "userExperienceAnalyticsWorkFromAnywhereMetric resource type" description: "The user experience analytics metric for work from anywhere report"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"id": "String (identifier)" } ```-----
v1.0 Intune Devices Userexperienceanalyticsworkfromanywheremodelperformance https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-userexperienceanalyticsworkfromanywheremodelperformance.md
Title: "userExperienceAnalyticsWorkFromAnywhereModelPerformance resource type" description: "The user experience analytics work from anywhere model performance."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"healthStatus": "String" } ```-----
v1.0 Intune Devices Warrantyoffer https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-warrantyoffer.md
Title: "warrantyOffer resource type" description: "Models and Manufactures meatadata for managed devices in the account"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"endDateTime": "String (timestamp)" } ```-----
v1.0 Intune Devices Warrantytype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-warrantytype.md
Title: "warrantyType enum type" description: "Models and Manufactures meatadata for managed devices in the account"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Models and Manufactures meatadata for managed devices in the account
|manufacturer|1|Manufacturer warranty| |contractual|2|Contractual warranty| |unknownFutureValue|255|Unknown future value|-----
v1.0 Intune Devices Windowsdefenderproductstatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-windowsdefenderproductstatus.md
Title: "windowsDefenderProductStatus enum type" description: "Product Status of Windows Defender"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Product Status of Windows Defender
|platformAboutToBeOutdated|4194304|Platform is about to be outdated| |signatureOrPlatformEndOfLifeIsPastOrIsImpending|8388608|Signature or platform end of life is past or is impending| |windowsSModeSignaturesInUseOnNonWin10SInstall|16777216|Windows SMode signatures still in use on non-Win10S install|-----
v1.0 Intune Devices Windowsdefenderscanactionresult https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-windowsdefenderscanactionresult.md
Title: "windowsDefenderScanActionResult resource type" description: "Windows Defender last scan result"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"scanType": "String" } ```-----
v1.0 Intune Devices Windowsdeviceaccount https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-windowsdeviceaccount.md
Title: "windowsDeviceAccount resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"password": "String" } ```-----
v1.0 Intune Devices Windowsdeviceadaccount https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-windowsdeviceadaccount.md
Title: "windowsDeviceADAccount resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"userName": "String" } ```-----
v1.0 Intune Devices Windowsdeviceazureadaccount https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-windowsdeviceazureadaccount.md
Title: "windowsDeviceAzureADAccount resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"userPrincipalName": "String" } ```-----
v1.0 Intune Devices Windowsdevicehealthstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-windowsdevicehealthstate.md
Title: "windowsDeviceHealthState enum type" description: "Computer endpoint protection state"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Computer endpoint protection state
|manualStepsPending|4|Computer is in pending manual steps state| |offlineScanPending|8|Computer is in pending offline scan state| |critical|16|Computer is in critical failure state|-----
v1.0 Intune Devices Windowsdevicemalwarestate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-windowsdevicemalwarestate.md
Title: "windowsDeviceMalwareState resource type" description: "Malware detection entity."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"category": "String" } ```-----
v1.0 Intune Devices Windowsmalwarecategory https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-windowsmalwarecategory.md
Title: "windowsMalwareCategory enum type" description: "Malware category id"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Malware category id
|enterpriseUnwantedSoftware|49|Enterprise Unwanted Software| |ransom|50|Ransom| |hipsRule|51|HIPS Rule|-----
v1.0 Intune Devices Windowsmalwarecategorycount https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-windowsmalwarecategorycount.md
Title: "windowsMalwareCategoryCount resource type" description: "Malware category device count"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"lastUpdateDateTime": "String (timestamp)" } ```-----
v1.0 Intune Devices Windowsmalwareexecutionstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-windowsmalwareexecutionstate.md
Title: "windowsMalwareExecutionState enum type" description: "Malware execution status"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Malware execution status
|allowed|2|Allowed| |running|3|Running| |notRunning|4|Not running|-----
v1.0 Intune Devices Windowsmalwareexecutionstatecount https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-windowsmalwareexecutionstatecount.md
Title: "windowsMalwareExecutionStateCount resource type" description: "Windows malware execution state summary."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"lastUpdateDateTime": "String (timestamp)" } ```-----
v1.0 Intune Devices Windowsmalwareinformation https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-windowsmalwareinformation.md
Title: "windowsMalwareInformation resource type" description: "Malware information entity."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"lastDetectionDateTime": "String (timestamp)" } ```-----
v1.0 Intune Devices Windowsmalwarenamecount https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-windowsmalwarenamecount.md
Title: "windowsMalwareNameCount resource type" description: "Malware name device count"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"lastUpdateDateTime": "String (timestamp)" } ```-----
v1.0 Intune Devices Windowsmalwareoverview https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-windowsmalwareoverview.md
Title: "windowsMalwareOverview resource type" description: "Windows device malware overview."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Devices Windowsmalwareseverity https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-windowsmalwareseverity.md
Title: "windowsMalwareSeverity enum type" description: "Malware severity"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Malware severity
|moderate|2|Moderate| |high|4|High| |severe|5|Severe|-----
v1.0 Intune Devices Windowsmalwareseveritycount https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-windowsmalwareseveritycount.md
Title: "windowsMalwareSeverityCount resource type" description: "Windows Malware Severity Count Summary"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"lastUpdateDateTime": "String (timestamp)" } ```-----
v1.0 Intune Devices Windowsmalwarestate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-windowsmalwarestate.md
Title: "windowsMalwareState enum type" description: "Malware current status"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Malware current status
|allowFailed|105|Allow failed| |abandoned|106|Abandoned| |blockFailed|107|Block failed|-----
v1.0 Intune Devices Windowsmalwarestatecount https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-windowsmalwarestatecount.md
Title: "windowsMalwareStateCount resource type" description: "Windows Malware State Summary."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"lastUpdateDateTime": "String (timestamp)" } ```-----
v1.0 Intune Devices Windowsmalwarethreatstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-windowsmalwarethreatstate.md
Title: "windowsMalwareThreatState enum type" description: "Malware threat status"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Malware threat status
|cleaned|8|Cleaned| |allowed|9|Allowed| |noStatusCleared|10|No status cleared|-----
v1.0 Intune Devices Windowsmanageddevice https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-windowsmanageddevice.md
Title: "windowsManagedDevice resource type" description: "Windows devices that are managed or pre-enrolled through Intune"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Inherits from [managedDevice](../resources/intune-devices-manageddevice.md)
|lastSyncDateTime|DateTimeOffset|The date and time that the device last completed a successful sync with Intune. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)| |chassisType|[chassisType](../resources/intune-devices-chassistype.md)|Chassis type of the device. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md). Possible values are: `unknown`, `desktop`, `laptop`, `worksWorkstation`, `enterpriseServer`, `phone`, `tablet`, `mobileOther`, `mobileUnknown`.| |operatingSystem|String|Operating system of the device. Windows, iOS, etc. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)|
-|deviceType|[deviceType](../resources/intune-shared-devicetype.md)|Platform of the device. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md). 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`.|
+|deviceType|[deviceType](../resources/intune-devices-devicetype.md)|Platform of the device. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md). 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`.|
|complianceState|[complianceState](../resources/intune-devices-compliancestate.md)|Compliance state of the device. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md). Possible values are: `unknown`, `compliant`, `noncompliant`, `conflict`, `error`, `inGracePeriod`, `configManager`.| |jailBroken|String|whether the device is jail broken or rooted. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)| |managementAgent|[managementAgentType](../resources/intune-shared-managementagenttype.md)|Management channel of the device. Intune, EAS, etc. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md). Possible values are: `eas`, `mdm`, `easMdm`, `intuneClient`, `easIntuneClient`, `configurationManagerClient`, `configurationManagerClientMdm`, `configurationManagerClientMdmEas`, `unknown`, `jamf`, `googleCloudDevicePolicyController`, `microsoft365ManagedMdm`, `msSense`, `intuneAosp`.|
Inherits from [managedDevice](../resources/intune-devices-manageddevice.md)
|azureADRegistered|Boolean|Whether the device is Azure Active Directory registered. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)| |deviceEnrollmentType|[deviceEnrollmentType](../resources/intune-devices-deviceenrollmenttype.md)|Enrollment type of the device. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md). Possible values are: `unknown`, `userEnrollment`, `deviceEnrollmentManager`, `appleBulkWithUser`, `appleBulkWithoutUser`, `windowsAzureADJoin`, `windowsBulkUserless`, `windowsAutoEnrollment`, `windowsBulkAzureDomainJoin`, `windowsCoManagement`, `windowsAzureADJoinUsingDeviceAuth`, `appleUserEnrollment`, `appleUserEnrollmentWithServiceAccount`, `azureAdJoinUsingAzureVmExtension`, `androidEnterpriseDedicatedDevice`, `androidEnterpriseFullyManaged`, `androidEnterpriseCorporateWorkProfile`.| |lostModeState|[lostModeState](../resources/intune-devices-lostmodestate.md)|Indicates if Lost mode is enabled or disabled. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md). Possible values are: `disabled`, `enabled`.|
-|activationLockBypassCode|String|Code that allows the Activation Lock on a device to be bypassed. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)|
+|activationLockBypassCode|String|The code that allows the Activation Lock on managed device to be bypassed. Default, is Null (Non-Default property) for this property when returned as part of managedDevice entity in LIST call. Individual GET call with select query options is needed to retrieve actual values. Supports: $select. $Search is not supported. Read-only. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)|
|emailAddress|String|Email(s) for the user associated with the device. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)| |azureActiveDirectoryDeviceId|String|The unique identifier for the Azure Active Directory device. Read only. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)| |azureADDeviceId|String|The unique identifier for the Azure Active Directory device. Read only. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)|
Inherits from [managedDevice](../resources/intune-devices-manageddevice.md)
|notes|String|Notes on the device created by IT Admin. Return default value null in LIST managedDevices. Real value only returned in singel device GET call with device id and included in select parameter. Supports: $select. $Search is not supported. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)| |configurationManagerClientHealthState|[configurationManagerClientHealthState](../resources/intune-devices-configurationmanagerclienthealthstate.md)|Configuration manager client health state, valid only for devices managed by MDM/ConfigMgr Agent Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)| |configurationManagerClientInformation|[configurationManagerClientInformation](../resources/intune-devices-configurationmanagerclientinformation.md)|Configuration manager client information, valid only for devices managed, duel-managed or tri-managed by ConfigMgr Agent Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)|
-|ethernetMacAddress|String|Ethernet MAC. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)|
+|ethernetMacAddress|String|Ethernet MAC. Default, is Null (Non-Default property) for this property when returned as part of managedDevice entity. Individual get call with select query options is needed to retrieve actual values. Example: deviceManagement/managedDevices({managedDeviceId})?$select=ethernetMacAddress Supports: $select. $Search is not supported. Read-only. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)|
|physicalMemoryInBytes|Int64|Total Memory in Bytes. Return default value 0 in LIST managedDevices. Real value only returned in singel device GET call with device id and included in select parameter. Supports: $select. Default value is 0. Read-only. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)| |processorArchitecture|[managedDeviceArchitecture](../resources/intune-devices-manageddevicearchitecture.md)|Processor architecture. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md). Possible values are: `unknown`, `x86`, `x64`, `arm`, `arM64`.| |specificationVersion|String|Specification version. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)| |joinType|[joinType](../resources/intune-devices-jointype.md)|Device join type Inherited from [managedDevice](../resources/intune-devices-manageddevice.md). Possible values are: `unknown`, `azureADJoined`, `azureADRegistered`, `hybridAzureADJoined`.| |skuFamily|String|Device sku family Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)|
-|skuNumber|Int32|Device sku number, see also: https://learn.microsoft.com/windows/win32/api/sysinfoapi/nf-sysinfoapi-getproductinfo. Valid values 0 to 2147483647. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)|
+|skuNumber|Int32|Device sku number, see also: https://learn.microsoft.com/en-us/windows/win32/api/sysinfoapi/nf-sysinfoapi-getproductinfo. Valid values 0 to 2147483647. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)|
|managementFeatures|[managedDeviceManagementFeatures](../resources/intune-devices-manageddevicemanagementfeatures.md)|Device management features Inherited from [managedDevice](../resources/intune-devices-manageddevice.md). Possible values are: `none`, `microsoftManagedDesktop`.| |chromeOSDeviceInfo|[chromeOSDeviceProperty](../resources/intune-devices-chromeosdeviceproperty.md) collection|List of properties of the ChromeOS Device. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)| |enrollmentProfileName|String|Name of the enrollment profile assigned to the device. Default value is empty string, indicating no enrollment profile was assgined. This property is read-only. Inherited from [managedDevice](../resources/intune-devices-manageddevice.md)|
Here is a JSON representation of the resource.
"deviceFirmwareConfigurationInterfaceManaged": true } ```------
v1.0 Intune Devices Windowsmanagementapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-windowsmanagementapp.md
Title: "windowsManagementApp resource type" description: "Windows management app entity."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"managedInstallerConfiguredDateTime": "String" } ```-----
v1.0 Intune Devices Windowsmanagementapphealthstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-windowsmanagementapphealthstate.md
Title: "windowsManagementAppHealthState resource type" description: "Windows management app health state entity."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"deviceOSVersion": "String" } ```-----
v1.0 Intune Devices Windowsprotectionstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-devices-windowsprotectionstate.md
Title: "windowsProtectionState resource type" description: "Device protection status entity."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"tamperProtectionEnabled": true } ```-----
v1.0 Intune Enrollment Activedirectorywindowsautopilotdeploymentprofile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-enrollment-activedirectorywindowsautopilotdeploymentprofile.md
Title: "activeDirectoryWindowsAutopilotDeploymentProfile resource type" description: "Windows Autopilot Deployment Profile"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"hybridAzureADJoinSkipConnectivityCheck": true } ```-----
v1.0 Intune Enrollment Appleenrollmentprofileassignment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-enrollment-appleenrollmentprofileassignment.md
Title: "appleEnrollmentProfileAssignment resource type" description: "An assignment of an Apple profile."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Enrollment Appleownertypeenrollmenttype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-enrollment-appleownertypeenrollmenttype.md
Title: "appleOwnerTypeEnrollmentType resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"enrollmentType": "String" } ```-----
v1.0 Intune Enrollment Appleuserinitiatedenrollmentprofile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-enrollment-appleuserinitiatedenrollmentprofile.md
Title: "appleUserInitiatedEnrollmentProfile resource type" description: "The enrollmentProfile resource represents a collection of configurations which must be provided pre-enrollment to enable enrolling certain devices whose identities have been pre-staged. Pre-staged device identities are assigned to this type of profile to apply the profile's configurations at enrollment of the corresponding device."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"lastModifiedDateTime": "String (timestamp)" } ```-----
v1.0 Intune Enrollment Appleuserinitiatedenrollmenttype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-enrollment-appleuserinitiatedenrollmenttype.md
Title: "appleUserInitiatedEnrollmentType enum type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Not yet documented
|unknown|0|Unknown enrollment type| |device|1|Device enrollment type| |user|2|User enrollment type|-----
v1.0 Intune Enrollment Azureadwindowsautopilotdeploymentprofile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-enrollment-azureadwindowsautopilotdeploymentprofile.md
Title: "azureADWindowsAutopilotDeploymentProfile resource type" description: "Windows Autopilot Deployment Profile"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"managementServiceAppId": "String" } ```-----
v1.0 Intune Enrollment Conceptual https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-enrollment-conceptual.md
Title: "Enroll corporate devices by using Intune - Microsoft Graph API" description: "Lists the Microsoft Graph API for Intune endpoints (REST) that enroll devices for a tenant organization."-+ ms.localizationpriority: medium ms.prod: "intune"
v1.0 Intune Enrollment Depenrollmentbaseprofile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-enrollment-depenrollmentbaseprofile.md
Title: "depEnrollmentBaseProfile resource type" description: "The DepEnrollmentBaseProfile resource represents an Apple Device Enrollment Program (DEP) enrollment profile. This type of profile must be assigned to Apple DEP serial numbers before the corresponding devices can enroll via DEP."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Inherits from [enrollmentProfile](../resources/intune-enrollment-enrollmentprofi
|enableAuthenticationViaCompanyPortal|Boolean|Indicates to authenticate with Apple Setup Assistant instead of Company Portal. Inherited from [enrollmentProfile](../resources/intune-enrollment-enrollmentprofile.md)| |requireCompanyPortalOnSetupAssistantEnrolledDevices|Boolean|Indicates that Company Portal is required on setup assistant enrolled devices Inherited from [enrollmentProfile](../resources/intune-enrollment-enrollmentprofile.md)| |isDefault|Boolean|Indicates if this is the default profile|
-|supervisedModeEnabled|Boolean|Supervised mode, True to enable, false otherwise. See https://learn.microsoft.com/intune/deploy-use/enroll-devices-in-microsoft-intune for additional information.|
+|supervisedModeEnabled|Boolean|Supervised mode, True to enable, false otherwise. See https://learn.microsoft.com/en-us/intune/deploy-use/enroll-devices-in-microsoft-intune for additional information.|
|supportDepartment|String|Support department information| |isMandatory|Boolean|Indicates if the profile is mandatory| |locationDisabled|Boolean|Indicates if Location service setup pane is disabled|
Inherits from [enrollmentProfile](../resources/intune-enrollment-enrollmentprofi
|screenTimeScreenDisabled|Boolean|Indicates if screen timeout setup is disabled| |deviceNameTemplate|String|Sets a literal or name pattern.| |configurationWebUrl|Boolean|URL for setup assistant login|
+|enabledSkipKeys|String collection|enabledSkipKeys contains all the enabled skip keys as strings|
## Relationships None
Here is a JSON representation of the resource.
"privacyPaneDisabled": true, "screenTimeScreenDisabled": true, "deviceNameTemplate": "String",
- "configurationWebUrl": true
+ "configurationWebUrl": true,
+ "enabledSkipKeys": [
+ "String"
+ ]
} ```------
v1.0 Intune Enrollment Depenrollmentprofile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-enrollment-depenrollmentprofile.md
Title: "depEnrollmentProfile resource type" description: "The depEnrollmentProfile resource represents an Apple Device Enrollment Program (DEP) enrollment profile. This type of profile must be assigned to Apple DEP serial numbers before the corresponding devices can enroll via DEP."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Inherits from [enrollmentProfile](../resources/intune-enrollment-enrollmentprofi
|enableAuthenticationViaCompanyPortal|Boolean|Indicates to authenticate with Apple Setup Assistant instead of Company Portal. Inherited from [enrollmentProfile](../resources/intune-enrollment-enrollmentprofile.md)| |requireCompanyPortalOnSetupAssistantEnrolledDevices|Boolean|Indicates that Company Portal is required on setup assistant enrolled devices Inherited from [enrollmentProfile](../resources/intune-enrollment-enrollmentprofile.md)| |isDefault|Boolean|Indicates if this is the default profile|
-|supervisedModeEnabled|Boolean|Supervised mode, True to enable, false otherwise. See https://learn.microsoft.com/intune/deploy-use/enroll-devices-in-microsoft-intune for additional information.|
+|supervisedModeEnabled|Boolean|Supervised mode, True to enable, false otherwise. See https://learn.microsoft.com/en-us/intune/deploy-use/enroll-devices-in-microsoft-intune for additional information.|
|supportDepartment|String|Support department information| |passCodeDisabled|Boolean|Indicates if Passcode setup pane is disabled| |isMandatory|Boolean|Indicates if the profile is mandatory|
Here is a JSON representation of the resource.
"enableSharedIPad": true } ```------
v1.0 Intune Enrollment Depiosenrollmentprofile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-enrollment-depiosenrollmentprofile.md
Title: "depIOSEnrollmentProfile resource type" description: "The DepIOSEnrollmentProfile resource represents an Apple Device Enrollment Program (DEP) enrollment profile specific to iOS configuration. This type of profile must be assigned to Apple DEP serial numbers before the corresponding devices can enroll via DEP."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Inherits from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrol
|enableAuthenticationViaCompanyPortal|Boolean|Indicates to authenticate with Apple Setup Assistant instead of Company Portal. Inherited from [enrollmentProfile](../resources/intune-enrollment-enrollmentprofile.md)| |requireCompanyPortalOnSetupAssistantEnrolledDevices|Boolean|Indicates that Company Portal is required on setup assistant enrolled devices Inherited from [enrollmentProfile](../resources/intune-enrollment-enrollmentprofile.md)| |isDefault|Boolean|Indicates if this is the default profile Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)|
-|supervisedModeEnabled|Boolean|Supervised mode, True to enable, false otherwise. See https://learn.microsoft.com/intune/deploy-use/enroll-devices-in-microsoft-intune for additional information. Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)|
+|supervisedModeEnabled|Boolean|Supervised mode, True to enable, false otherwise. See https://learn.microsoft.com/en-us/intune/deploy-use/enroll-devices-in-microsoft-intune for additional information. Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)|
|supportDepartment|String|Support department information Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)| |isMandatory|Boolean|Indicates if the profile is mandatory Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)| |locationDisabled|Boolean|Indicates if Location service setup pane is disabled Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)|
Inherits from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrol
|screenTimeScreenDisabled|Boolean|Indicates if screen timeout setup is disabled Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)| |deviceNameTemplate|String|Sets a literal or name pattern. Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)| |configurationWebUrl|Boolean|URL for setup assistant login Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)|
+|enabledSkipKeys|String collection|enabledSkipKeys contains all the enabled skip keys as strings Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)|
|iTunesPairingMode|[iTunesPairingMode](../resources/intune-enrollment-itunespairingmode.md)|Indicates the iTunes pairing mode. Possible values are: `disallow`, `allow`, `requiresCertificate`.| |managementCertificates|[managementCertificateWithThumbprint](../resources/intune-enrollment-managementcertificatewiththumbprint.md) collection|Management certificates for Apple Configurator| |restoreFromAndroidDisabled|Boolean|Indicates if Restore from Android is disabled|
Inherits from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrol
|userSessionTimeoutInSeconds|Int32|Indicates timeout of temporary session| |passcodeLockGracePeriodInSeconds|Int32|Indicates timeout before locked screen requires the user to enter the device passocde to unlock it| |carrierActivationUrl|String|Carrier URL for activating device eSIM.|
-|userlessSharedAadModeEnabled|Boolean|Indicates that this apple device is designated to support 'shared device mode' scenarios. This is distinct from the 'shared iPad' scenario. See https://learn.microsoft.com/mem/intune/enrollment/device-enrollment-shared-ios|
+|userlessSharedAadModeEnabled|Boolean|Indicates that this apple device is designated to support 'shared device mode' scenarios. This is distinct from the 'shared iPad' scenario. See https://learn.microsoft.com/en-us/mem/intune/enrollment/device-enrollment-shared-ios|
## Relationships None
Here is a JSON representation of the resource.
"screenTimeScreenDisabled": true, "deviceNameTemplate": "String", "configurationWebUrl": true,
+ "enabledSkipKeys": [
+ "String"
+ ],
"iTunesPairingMode": "String", "managementCertificates": [ {
Here is a JSON representation of the resource.
"userlessSharedAadModeEnabled": true } ```------
v1.0 Intune Enrollment Depmacosenrollmentprofile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-enrollment-depmacosenrollmentprofile.md
Title: "depMacOSEnrollmentProfile resource type" description: "The DepMacOSEnrollmentProfile resource represents an Apple Device Enrollment Program (DEP) enrollment profile specific to macOS configuration. This type of profile must be assigned to Apple DEP serial numbers before the corresponding devices can enroll via DEP."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Inherits from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrol
|enableAuthenticationViaCompanyPortal|Boolean|Indicates to authenticate with Apple Setup Assistant instead of Company Portal. Inherited from [enrollmentProfile](../resources/intune-enrollment-enrollmentprofile.md)| |requireCompanyPortalOnSetupAssistantEnrolledDevices|Boolean|Indicates that Company Portal is required on setup assistant enrolled devices Inherited from [enrollmentProfile](../resources/intune-enrollment-enrollmentprofile.md)| |isDefault|Boolean|Indicates if this is the default profile Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)|
-|supervisedModeEnabled|Boolean|Supervised mode, True to enable, false otherwise. See https://learn.microsoft.com/intune/deploy-use/enroll-devices-in-microsoft-intune for additional information. Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)|
+|supervisedModeEnabled|Boolean|Supervised mode, True to enable, false otherwise. See https://learn.microsoft.com/en-us/intune/deploy-use/enroll-devices-in-microsoft-intune for additional information. Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)|
|supportDepartment|String|Support department information Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)| |isMandatory|Boolean|Indicates if the profile is mandatory Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)| |locationDisabled|Boolean|Indicates if Location service setup pane is disabled Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)|
Inherits from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrol
|screenTimeScreenDisabled|Boolean|Indicates if screen timeout setup is disabled Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)| |deviceNameTemplate|String|Sets a literal or name pattern. Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)| |configurationWebUrl|Boolean|URL for setup assistant login Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)|
+|enabledSkipKeys|String collection|enabledSkipKeys contains all the enabled skip keys as strings Inherited from [depEnrollmentBaseProfile](../resources/intune-enrollment-depenrollmentbaseprofile.md)|
|registrationDisabled|Boolean|Indicates if registration is disabled| |fileVaultDisabled|Boolean|Indicates if file vault is disabled| |iCloudDiagnosticsDisabled|Boolean|Indicates if iCloud Analytics screen is disabled|
Here is a JSON representation of the resource.
"screenTimeScreenDisabled": true, "deviceNameTemplate": "String", "configurationWebUrl": true,
+ "enabledSkipKeys": [
+ "String"
+ ],
"registrationDisabled": true, "fileVaultDisabled": true, "iCloudDiagnosticsDisabled": true,
Here is a JSON representation of the resource.
"enableRestrictEditing": true } ```------
v1.0 Intune Enrollment Deponboardingsetting https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-enrollment-deponboardingsetting.md
Title: "depOnboardingSetting resource type" description: "The depOnboardingSetting represents an instance of the Apple DEP service being onboarded to Intune. The onboarded service instance manages an Apple Token used to synchronize data between Apple and Intune."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Enrollment Deptokentype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-enrollment-deptokentype.md
Title: "depTokenType enum type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Not yet documented
|none|0|Token Type is None| |dep|1|Token Type is Dep.| |appleSchoolManager|2|Token Type is Apple School Manager|-----
v1.0 Intune Enrollment Deviceplatformtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-enrollment-deviceplatformtype.md
Title: "devicePlatformType enum type" description: "Supported platform types."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Supported platform types.
|androidWorkProfile|7|Android Work Profile.| |unknown|8|Unknown.| |androidAOSP|9|Android AOSP.|-----
v1.0 Intune Enrollment Discoverysource https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-enrollment-discoverysource.md
Title: "discoverySource enum type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Not yet documented
|unknown|0|DiscoverySource is Unknown.| |adminImport|2|Device is imported by admin.| |deviceEnrollmentProgram|4|Device is added by Apple device enrollment program (Dep).|-----
v1.0 Intune Enrollment Enrollmentprofile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-enrollment-enrollmentprofile.md
Title: "enrollmentProfile resource type" description: "The enrollmentProfile resource represents a collection of configurations which must be provided pre-enrollment to enable enrolling certain devices whose identities have been pre-staged. Pre-staged device identities are assigned to this type of profile to apply the profile's configurations at enrollment of the corresponding device."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"requireCompanyPortalOnSetupAssistantEnrolledDevices": true } ```-----
v1.0 Intune Enrollment Importedappledeviceidentity https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-enrollment-importedappledeviceidentity.md
Title: "importedAppleDeviceIdentity resource type" description: "The importedAppleDeviceIdentity resource represents the imported device identity of an Apple device ."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"platform": "String" } ```-----
v1.0 Intune Enrollment Importedappledeviceidentityresult https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-enrollment-importedappledeviceidentityresult.md
Title: "importedAppleDeviceIdentityResult resource type" description: "The importedAppleDeviceIdentityResult resource represents the result of attempting to import Apple devices identities."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"status": true } ```-----
v1.0 Intune Enrollment Importeddeviceidentity https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-enrollment-importeddeviceidentity.md
Title: "importedDeviceIdentity resource type" description: "The importedDeviceIdentity resource represents a unique hardware identity of a device that has been pre-staged for pre-enrollment configuration."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"platform": "String" } ```-----
v1.0 Intune Enrollment Importeddeviceidentityresult https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-enrollment-importeddeviceidentityresult.md
Title: "importedDeviceIdentityResult resource type" description: "The importedDeviceIdentityResult resource represents the result of attempting to import a device identity."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"status": true } ```-----
v1.0 Intune Enrollment Importeddeviceidentitytype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-enrollment-importeddeviceidentitytype.md
Title: "importedDeviceIdentityType enum type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Not yet documented
|unknown|0|Unknown value of importedDeviceIdentityType.| |imei|1|Device Identity is of type imei.| |serialNumber|2|Device Identity is of type serial number.|-----
v1.0 Intune Enrollment Importedwindowsautopilotdeviceidentity https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-enrollment-importedwindowsautopilotdeviceidentity.md
Title: "importedWindowsAutopilotDeviceIdentity resource type" description: "Imported windows autopilot devices."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"assignedUserPrincipalName": "String" } ```-----
v1.0 Intune Enrollment Importedwindowsautopilotdeviceidentityimportstatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-enrollment-importedwindowsautopilotdeviceidentityimportstatus.md
Title: "importedWindowsAutopilotDeviceIdentityImportStatus enum type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Not yet documented
|partial|2|Partial status.| |complete|3|Complete status.| |error|4|Error status.|-----
v1.0 Intune Enrollment Importedwindowsautopilotdeviceidentitystate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-enrollment-importedwindowsautopilotdeviceidentitystate.md
Title: "importedWindowsAutopilotDeviceIdentityState resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"deviceErrorName": "String" } ```-----
v1.0 Intune Enrollment Importedwindowsautopilotdeviceidentityuploadstatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-enrollment-importedwindowsautopilotdeviceidentityuploadstatus.md
Title: "importedWindowsAutopilotDeviceIdentityUploadStatus enum type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Not yet documented
|pending|1|Pending status.| |complete|2|Complete status.| |error|3|Error status.|-----
v1.0 Intune Enrollment Itunespairingmode https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-enrollment-itunespairingmode.md
Title: "iTunesPairingMode enum type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Not yet documented
|disallow|0|Pairing is not allowed| |allow|1|Pairing allowed| |requiresCertificate|2|Certificate required to pair with iTunes|-----
v1.0 Intune Enrollment Managementcertificatewiththumbprint https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-enrollment-managementcertificatewiththumbprint.md
Title: "managementCertificateWithThumbprint resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"certificate": "String" } ```-----
v1.0 Intune Enrollment Outofboxexperiencesettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-enrollment-outofboxexperiencesettings.md
Title: "outOfBoxExperienceSettings resource type" description: "Out of box experience setting"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"hideEscapeLink": true } ```-----
v1.0 Intune Enrollment Platform https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-enrollment-platform.md
Title: "platform enum type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Not yet documented
|windows|3|Windows device platform| |windowsMobile|4|WindowsMobile device platform| |macOS|5|Mac device platform|-----
v1.0 Intune Enrollment Suggestedenrollmentlimit https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-enrollment-suggestedenrollmentlimit.md
Title: "suggestedEnrollmentLimit resource type" description: "The suggestedEnrollmentLimit resource represents the suggested enrollment limit when given an enrollment type."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"suggestedDailyLimit": 1024 } ```-----
v1.0 Intune Enrollment Windowsautopilotdeploymentprofileassignment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-enrollment-windowsautopilotdeploymentprofileassignment.md
Title: "windowsAutopilotDeploymentProfileAssignment resource type" description: "An assignment of a Windows Autopilot deployment profile to an AAD group."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"sourceId": "String" } ```-----
v1.0 Intune Enrollment Windowsautopilotdeviceidentity https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-enrollment-windowsautopilotdeviceidentity.md
Title: "windowsAutopilotDeviceIdentity resource type" description: "The windowsAutopilotDeviceIdentity resource represents a Windows Autopilot Device."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"remediationStateLastModifiedDateTime": "String (timestamp)" } ```-----
v1.0 Intune Enrollment Windowsautopilotdeviceremediationstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-enrollment-windowsautopilotdeviceremediationstate.md
Title: "windowsAutopilotDeviceRemediationState enum type" description: "Device remediation status, indicating whether or not hardware has been changed for an Autopilot-registered device."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Device remediation status, indicating whether or not hardware has been changed f
|automaticRemediationRequired|2|Hardware change detected on client. Additional remediation is required.| |manualRemediationRequired|3|Hardware change detected on client that could not resolved automatically. Additional remediation is required.| |unknownFutureValue|4|Marks the end of known enum values, and allows for additional values in the future.|-----
v1.0 Intune Enrollment Windowsautopilotdevicetype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-enrollment-windowsautopilotdevicetype.md
Title: "windowsAutopilotDeviceType enum type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Not yet documented
|surfaceHub2S|3|SurfaceHub2S| |virtualMachine|4|VirtualMachine| |unknownFutureValue|99|Placeholder for evolvable enum, but this enum is never returned to the caller, so it shouldn't be necessary. |-----
v1.0 Intune Enrollment Windowsautopilotprofileassignmentdetailedstatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-enrollment-windowsautopilotprofileassignmentdetailedstatus.md
Title: "windowsAutopilotProfileAssignmentDetailedStatus enum type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Not yet documented
|windowsPcProfileNotSupported|4|Indicates that a Windows PC AutoPilot Profile is assigned to a device that is not Windows PC.| |surfaceHub2SProfileNotSupported|5|Indicates that a surface Hub 2S AutoPilot Profile is assigned to a device that is not surface Hub 2S.| |unknownFutureValue|99|Placeholder for evolvable enum, but this enum is never returned to the caller, so it shouldn't be necessary.|-----
v1.0 Intune Enrollment Windowsautopilotprofileassignmentstatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-enrollment-windowsautopilotprofileassignmentstatus.md
Title: "windowsAutopilotProfileAssignmentStatus enum type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Not yet documented
|notAssigned|4|Not assigned| |pending|5|Pending assignment| |failed|6| Assignment failed|-----
v1.0 Intune Enrollment Windowsautopilotsettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-enrollment-windowsautopilotsettings.md
Title: "windowsAutopilotSettings resource type" description: "The windowsAutopilotSettings resource represents a Windows Autopilot Account to sync data with Windows device data sync service."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"syncStatus": "String" } ```-----
v1.0 Intune Enrollment Windowsautopilotsyncstatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-enrollment-windowsautopilotsyncstatus.md
Title: "windowsAutopilotSyncStatus enum type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Not yet documented
|inProgress|1|Sync is in progress| |completed|2|Sync completed.| |failed|3|Sync failed.|-----
v1.0 Intune Enrollment Windowsdeviceusagetype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-enrollment-windowsdeviceusagetype.md
Title: "windowsDeviceUsageType enum type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Not yet documented
|:|:|:| |singleUser|0|Single User Device Type| |shared|1|Shared Device Type|-----
v1.0 Intune Enrollment Windowsenrollmentstatusscreensettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-enrollment-windowsenrollmentstatusscreensettings.md
Title: "windowsEnrollmentStatusScreenSettings resource type" description: "Enrollment status screen setting"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"allowDeviceUseOnInstallFailure": true } ```-----
v1.0 Intune Enrollment Windowsusertype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-enrollment-windowsusertype.md
Title: "windowsUserType enum type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Not yet documented
|:|:|:| |administrator|0|Not yet documented| |standard|1|Not yet documented|-----
v1.0 Intune Esim Embeddedsimactivationcode https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-esim-embeddedsimactivationcode.md
Title: "embeddedSIMActivationCode resource type" description: "The embedded SIM activation code as provided by the mobile operator."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"smdpPlusServerAddress": "String" } ```-----
v1.0 Intune Esim Embeddedsimactivationcodepool https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-esim-embeddedsimactivationcodepool.md
Title: "embeddedSIMActivationCodePool resource type" description: "A pool represents a group of embedded SIM activation codes."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"activationCodeCount": 1024 } ```-----
v1.0 Intune Esim Embeddedsimactivationcodepoolassignment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-esim-embeddedsimactivationcodepoolassignment.md
Title: "embeddedSIMActivationCodePoolAssignment resource type" description: "The embedded SIM activation code pool assignment entity assigns a specific embeddedSIMActivationCodePool to an AAD device group."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Esim Embeddedsimdevicestate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-esim-embeddedsimdevicestate.md
Title: "embeddedSIMDeviceState resource type" description: "Describes the embedded SIM activation code deployment state in relation to a device."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"stateDetails": "String" } ```-----
v1.0 Intune Esim Embeddedsimdevicestatevalue https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-esim-embeddedsimdevicestatevalue.md
Title: "embeddedSIMDeviceStateValue enum type" description: "Describes the various states for an embedded SIM activation code."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Describes the various states for an embedded SIM activation code.
|error|5|Designates that there is error with this profile.| |deleted|6|Designates that the profile is deleted from the device.| |removedByUser|7|Designates that the profile is removed from the device by the user|-----
v1.0 Intune Esim Platformtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-esim-platformtype.md
Title: "platformType enum type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Not yet documented
|windows81AndLater|6|Not yet documented| |windows10AndLater|7|Not yet documented| |androidWorkProfile|8|Not yet documented|-----
v1.0 Intune Esim Tuple_2Ofexecutiontype_Icollection_1Ofoperation https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-esim-tuple_2ofexecutiontype_icollection_1ofoperation.md
Title: "tuple_2OfExecutionType_ICollection_1OfOperation resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Fencing Binarymanagementconditionexpression https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-fencing-binarymanagementconditionexpression.md
Title: "binaryManagementConditionExpression resource type" description: "A management condition expression that is evaluated using a binary operation."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```---
v1.0 Intune Fencing Binarymanagementconditionexpressionoperatortype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-fencing-binarymanagementconditionexpressionoperatortype.md
Title: "binaryManagementConditionExpressionOperatorType enum type" description: "Supported binary operators for management condition expressions."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Supported binary operators for management condition expressions.
|:|:|:| |or|0|Evaluates a set of operands as true if and only if one or more of its operands is true.| |and|1|Evaluates a set of operands as true if and only if all of its operands are true.|---
v1.0 Intune Fencing Circulargeofencemanagementcondition https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-fencing-circulargeofencemanagementcondition.md
Title: "circularGeofenceManagementCondition resource type" description: "Contains the information to define a circular geo-fence management condition, an area of interest, to monitor."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"radiusInMeters": 4.2 } ```---
v1.0 Intune Fencing Deviceplatformtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-fencing-deviceplatformtype.md
Title: "devicePlatformType enum type" description: "Supported platform types."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Supported platform types.
|windows10AndLater|6|Windows 10 and later.| |androidWorkProfile|7|Android Work Profile.| |unknown|8|Unknown.|---
v1.0 Intune Fencing Locationmanagementcondition https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-fencing-locationmanagementcondition.md
Title: "locationManagementCondition resource type" description: "Contains the information to define a location management condition, an area of interest, to monitor."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```---
v1.0 Intune Fencing Managementcondition https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-fencing-managementcondition.md
Title: "managementCondition resource type" description: "Management conditions are events that can be triggered dynamically such as geo-fences, time-fences, and network-fences."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```---
v1.0 Intune Fencing Managementconditionexpression https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-fencing-managementconditionexpression.md
Title: "managementConditionExpression resource type" description: "A management condition expression is an expression that produces a boolean value when evaluated, i.e. one of true or false, indicating that a management condition statement is activated/deactivated. A management condition expression may be composed of a combination of the expression variables and boolean-valued expression operators."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"@odata.type": "#microsoft.graph.managementConditionExpression" } ```---
v1.0 Intune Fencing Managementconditionexpressionmodel https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-fencing-managementconditionexpressionmodel.md
Title: "managementConditionExpressionModel resource type" description: "A management condition expression model is an model representation of a management condition expression."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"@odata.type": "#microsoft.graph.managementConditionExpressionModel" } ```---
v1.0 Intune Fencing Managementconditionexpressionstring https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-fencing-managementconditionexpressionstring.md
Title: "managementConditionExpressionString resource type" description: "A management condition expression string is a string representation of a management condition expression."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"value": "String" } ```---
v1.0 Intune Fencing Managementconditionstatement https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-fencing-managementconditionstatement.md
Title: "managementConditionStatement resource type" description: "A management condition statement is a group of management conditions that enable/disable device/application configurations when all contained management conditions are met."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```---
v1.0 Intune Fencing Networkipv4configurationmanagementcondition https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-fencing-networkipv4configurationmanagementcondition.md
Title: "networkIPv4ConfigurationManagementCondition resource type" description: "IPv4 configuration-based management conditions may be defined that will trigger when a device detects certain IP network settings. An IP config management conditions will only be considered TRUE when the network connection is active."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```---
v1.0 Intune Fencing Networkipv6configurationmanagementcondition https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-fencing-networkipv6configurationmanagementcondition.md
Title: "networkIPv6ConfigurationManagementCondition resource type" description: "IPv6 configuration-based management conditions may be defined that will trigger when a device detects certain IP network settings. An IP config management condition will only be considered TRUE when the network connection is active. IPv6 DHCP server addresses may not be matched. This is because Windows(circa Redstone) does not expose this information to the Natural Authentication service."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```---
v1.0 Intune Fencing Networkmanagementcondition https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-fencing-networkmanagementcondition.md
Title: "networkManagementCondition resource type" description: "Contains the information to define a network management condition."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```---
v1.0 Intune Fencing Unarymanagementconditionexpression https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-fencing-unarymanagementconditionexpression.md
Title: "unaryManagementConditionExpression resource type" description: "A management condition expression that is evaluated using a unary operation."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```---
v1.0 Intune Fencing Unarymanagementconditionexpressionoperatortype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-fencing-unarymanagementconditionexpressionoperatortype.md
Title: "unaryManagementConditionExpressionOperatorType enum type" description: "Supported operators for unary management condition expressions"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Supported operators for unary management condition expressions
|Member|Value|Description| |:|:|:| |not|0|Negates the evaluation of the operand.|---
v1.0 Intune Fencing Variablemanagementconditionexpression https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-fencing-variablemanagementconditionexpression.md
Title: "variableManagementConditionExpression resource type" description: "Evaluates the management condition state as a Boolean expression."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"managementConditionId": "String" } ```---
v1.0 Intune Gpanalyticsservice Grouppolicymigrationreadiness https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-gpanalyticsservice-grouppolicymigrationreadiness.md
Title: "groupPolicyMigrationReadiness enum type" description: "Indicates if the Group Policy Object file is covered and ready for Intune migration."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Indicates if the Group Policy Object file is covered and ready for Intune migrat
|complete|3|Complete Intune coverage| |error|4|Error when analyzing coverage| |notApplicable|5|No Group Policy settings in GPO|-----
v1.0 Intune Gpanalyticsservice Grouppolicymigrationreport https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-gpanalyticsservice-grouppolicymigrationreport.md
Title: "groupPolicyMigrationReport resource type" description: "The Group Policy migration report."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
The Group Policy migration report.
|[Delete groupPolicyMigrationReport](../api/intune-gpanalyticsservice-grouppolicymigrationreport-delete.md)|None|Deletes a [groupPolicyMigrationReport](../resources/intune-gpanalyticsservice-grouppolicymigrationreport.md).| |[Update groupPolicyMigrationReport](../api/intune-gpanalyticsservice-grouppolicymigrationreport-update.md)|[groupPolicyMigrationReport](../resources/intune-gpanalyticsservice-grouppolicymigrationreport.md)|Update the properties of a [groupPolicyMigrationReport](../resources/intune-gpanalyticsservice-grouppolicymigrationreport.md) object.| |[createMigrationReport action](../api/intune-gpanalyticsservice-grouppolicymigrationreport-createmigrationreport.md)|String|Not yet documented|
+|[updateScopeTags action](../api/intune-gpanalyticsservice-grouppolicymigrationreport-updatescopetags.md)|String|Not yet documented|
## Properties |Property|Type|Description|
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Gpanalyticsservice Grouppolicyobjectfile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-gpanalyticsservice-grouppolicyobjectfile.md
Title: "groupPolicyObjectFile resource type" description: "The Group Policy Object file uploaded by admin."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Gpanalyticsservice Grouppolicysettingmapping https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-gpanalyticsservice-grouppolicysettingmapping.md
Title: "groupPolicySettingMapping resource type" description: "The Group Policy setting to MDM/Intune mapping."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"admxSettingDefinitionId": "String" } ```-----
v1.0 Intune Gpanalyticsservice Grouppolicysettingscope https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-gpanalyticsservice-grouppolicysettingscope.md
Title: "groupPolicySettingScope enum type" description: "Scope of the group policy setting."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Scope of the group policy setting.
|unknown|0|Device scope unknown| |device|1|Device scope| |user|2|User scope|-----
v1.0 Intune Gpanalyticsservice Grouppolicysettingtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-gpanalyticsservice-grouppolicysettingtype.md
Title: "groupPolicySettingType enum type" description: "Setting type of the group policy."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Setting type of the group policy.
|scheduledTasks|25|ScheduledTasks setting type| |shortcutSettings|26|ShortcutSettings setting type| |startMenuSettings|27|StartMenuSettings setting type|-----
v1.0 Intune Gpanalyticsservice Mdmsupportedstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-gpanalyticsservice-mdmsupportedstate.md
Title: "mdmSupportedState enum type" description: "Mdm Support Status of the setting."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Mdm Support Status of the setting.
|supported|1|Setting is supported.| |unsupported|2|Setting is unsupported.| |deprecated|3|Setting is depcrecated.|-----
v1.0 Intune Gpanalyticsservice Unsupportedgrouppolicyextension https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-gpanalyticsservice-unsupportedgrouppolicyextension.md
Title: "unsupportedGroupPolicyExtension resource type" description: "Unsupported Group Policy Extension."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"nodeName": "String" } ```-----
v1.0 Intune Graph Overview https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-graph-overview.md
Title: "Working with Intune in Microsoft Graph" description: "The Microsoft Graph API for Intune enables programmatic access to Intune information for your tenant; the API performs the same Intune operations as those available through the Azure Portal."-+ ms.localizationpriority: high ms.prod: "intune"
v1.0 Intune Grouppolicy Devicemanagementreports https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-grouppolicy-devicemanagementreports.md
Title: "deviceManagementReports resource type" description: "Singleton entity that acts as a container for all reports functionality."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"id": "String (identifier)" } ```-----
v1.0 Intune Grouppolicy Grouppolicycategory https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-grouppolicy-grouppolicycategory.md
Title: "groupPolicyCategory resource type" description: "The category entity stores the category of a group policy definition"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"lastModifiedDateTime": "String (timestamp)" } ```-----
v1.0 Intune Grouppolicy Grouppolicyconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-grouppolicy-grouppolicyconfiguration.md
Title: "groupPolicyConfiguration resource type" description: "The group policy configuration entity contains the configured values for one or more group policy definitions."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"lastModifiedDateTime": "String (timestamp)" } ```-----
v1.0 Intune Grouppolicy Grouppolicyconfigurationassignment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-grouppolicy-grouppolicyconfigurationassignment.md
Title: "groupPolicyConfigurationAssignment resource type" description: "The group policy configuration assignment entity assigns one or more AAD groups to a specific group policy configuration."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Grouppolicy Grouppolicyconfigurationingestiontype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-grouppolicy-grouppolicyconfigurationingestiontype.md
Title: "groupPolicyConfigurationIngestionType enum type" description: "Group Policy Configuration Ingestion Type"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Group Policy Configuration Ingestion Type
|builtIn|2|Indicates policy created have definitions ingested through system ingestion process| |mixed|3|Indicated atleast 1 tenant admin & system ingested definitions configured for this policy| |unknownFutureValue|4|Unknown future enum value|-----
v1.0 Intune Grouppolicy Grouppolicyconfigurationtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-grouppolicy-grouppolicyconfigurationtype.md
Title: "groupPolicyConfigurationType enum type" description: "Group Policy Configuration Type"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Group Policy Configuration Type
|:|:|:| |policy|0|The policy type does not tattoo the value, which means the value is removed allowing the original configuration value to be used. The policy type supercedes application configuration setting so the application is always aware of the value. The policy type prevents the user from modifying the value through the application's user interface.| |preference|1|The preference type does tattoo the value, which means the value is not removed from the registry. The preference type will overwrite the user configured-value and does not retain the previous value. The preference type does not prevent the user from modifying the value through the application's user interface.|-----
v1.0 Intune Grouppolicy Grouppolicydefinition https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-grouppolicy-grouppolicydefinition.md
Title: "groupPolicyDefinition resource type" description: "The entity describes all of the information about a single group policy."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"lastModifiedDateTime": "String (timestamp)" } ```-----
v1.0 Intune Grouppolicy Grouppolicydefinitionclasstype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-grouppolicy-grouppolicydefinitionclasstype.md
Title: "groupPolicyDefinitionClassType enum type" description: "Group Policy Definition Class Type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Group Policy Definition Class Type.
|:|:|:| |user|0|Identifies placement of the policy setting under the user configuration node.| |machine|1|Identifies placement of the policy setting under the computer configuration node.|-----
v1.0 Intune Grouppolicy Grouppolicydefinitionfile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-grouppolicy-grouppolicydefinitionfile.md
Title: "groupPolicyDefinitionFile resource type" description: "The entity represents an ADMX (Administrative Template) XML file. The ADMX file contains a collection of group policy definitions and their locations by category path. The group policy definition file also contains the languages supported as determined by the language dependent ADML (Administrative Template) language files."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"lastModifiedDateTime": "String (timestamp)" } ```-----
v1.0 Intune Grouppolicy Grouppolicydefinitionvalue https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-grouppolicy-grouppolicydefinitionvalue.md
Title: "groupPolicyDefinitionValue resource type" description: "The definition value entity stores the value for a single group policy definition."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"lastModifiedDateTime": "String (timestamp)" } ```-----
v1.0 Intune Grouppolicy Grouppolicyoperation https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-grouppolicy-grouppolicyoperation.md
Title: "groupPolicyOperation resource type" description: "The entity represents an group policy operation."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"lastModifiedDateTime": "String (timestamp)" } ```-----
v1.0 Intune Grouppolicy Grouppolicyoperationstatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-grouppolicy-grouppolicyoperationstatus.md
Title: "groupPolicyOperationStatus enum type" description: "Type of Group Policy operation status."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Type of Group Policy operation status.
|inProgress|1|Group Policy in progress operation status.| |success|2|Group Policy successful operation status.| |failed|3|Group Policy failed operation status.|-----
v1.0 Intune Grouppolicy Grouppolicyoperationtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-grouppolicy-grouppolicyoperationtype.md
Title: "groupPolicyOperationType enum type" description: "Type of Group Policy operation."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Type of Group Policy operation.
|removeLanguageFiles|4|Group Policy remove language(ADML) files operation type.| |updateLanguageFiles|5|Group Policy update language(ADML) files operation type.| |remove|6|Group Policy remove uploaded file operation type.|-----
v1.0 Intune Grouppolicy Grouppolicypresentation https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-grouppolicy-grouppolicypresentation.md
Title: "groupPolicyPresentation resource type" description: "The base entity for the display presentation of any of the additional options in a group policy definition."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"lastModifiedDateTime": "String (timestamp)" } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationcheckbox https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-grouppolicy-grouppolicypresentationcheckbox.md
Title: "groupPolicyPresentationCheckBox resource type" description: "Represents an ADMX checkBox element and an ADMX boolean element."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"defaultChecked": true } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationcombobox https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-grouppolicy-grouppolicypresentationcombobox.md
Title: "groupPolicyPresentationComboBox resource type" description: "Represents an ADMX comboBox element and an ADMX text element."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"maxLength": 1024 } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationdecimaltextbox https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-grouppolicy-grouppolicypresentationdecimaltextbox.md
Title: "groupPolicyPresentationDecimalTextBox resource type" description: "Represents an ADMX decimalTextBox element and an ADMX decimal element."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"maxValue": 1024 } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationdropdownlist https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-grouppolicy-grouppolicypresentationdropdownlist.md
Title: "groupPolicyPresentationDropdownList resource type" description: "Represents an ADMX dropdownList element and an ADMX enum element."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"required": true } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationdropdownlistitem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-grouppolicy-grouppolicypresentationdropdownlistitem.md
Title: "groupPolicyPresentationDropdownListItem resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"value": "String" } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationlistbox https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-grouppolicy-grouppolicypresentationlistbox.md
Title: "groupPolicyPresentationListBox resource type" description: "Represents an ADMX listBox element and an ADMX list element."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"valuePrefix": "String" } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationlongdecimaltextbox https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-grouppolicy-grouppolicypresentationlongdecimaltextbox.md
Title: "groupPolicyPresentationLongDecimalTextBox resource type" description: "Represents an ADMX longDecimalTextBox element and an ADMX longDecimal element."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"maxValue": 1024 } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationmultitextbox https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-grouppolicy-grouppolicypresentationmultitextbox.md
Title: "groupPolicyPresentationMultiTextBox resource type" description: "Represents an ADMX multiTextBox element and an ADMX multiText element."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"maxStrings": 1024 } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationtext https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-grouppolicy-grouppolicypresentationtext.md
Title: "groupPolicyPresentationText resource type" description: "Represents an ADMX text element."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"lastModifiedDateTime": "String (timestamp)" } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationtextbox https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-grouppolicy-grouppolicypresentationtextbox.md
Title: "groupPolicyPresentationTextBox resource type" description: "Represents an ADMX textBox element and an ADMX text element."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"maxLength": 1024 } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationvalue https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-grouppolicy-grouppolicypresentationvalue.md
Title: "groupPolicyPresentationValue resource type" description: "The base presentation value entity that stores the value for a single group policy presentation."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"id": "String (identifier)" } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationvalueboolean https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-grouppolicy-grouppolicypresentationvalueboolean.md
Title: "groupPolicyPresentationValueBoolean resource type" description: "The entity represents a Boolean value of a checkbox presentation on a policy definition."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"value": true } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationvaluedecimal https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-grouppolicy-grouppolicypresentationvaluedecimal.md
Title: "groupPolicyPresentationValueDecimal resource type" description: "The entity represents an unsigned integer value of a decimal text box presentation on a policy definition."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"value": 1024 } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationvaluelist https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-grouppolicy-grouppolicypresentationvaluelist.md
Title: "groupPolicyPresentationValueList resource type" description: "The entity represents a collection of name/value pairs of a list box presentation on a policy definition."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Inherits from [groupPolicyPresentationValue](../resources/intune-grouppolicy-gro
|lastModifiedDateTime|DateTimeOffset|The date and time the object was last modified. Inherited from [groupPolicyPresentationValue](../resources/intune-grouppolicy-grouppolicypresentationvalue.md)| |createdDateTime|DateTimeOffset|The date and time the object was created. Inherited from [groupPolicyPresentationValue](../resources/intune-grouppolicy-grouppolicypresentationvalue.md)| |id|String|Key of the entity. Inherited from [groupPolicyPresentationValue](../resources/intune-grouppolicy-grouppolicypresentationvalue.md)|
-|values|[keyValuePair](../resources/intune-shared-keyvaluepair.md) collection|A list of pairs for the associated presentation.|
+|values|[keyValuePair](../resources/intune-grouppolicy-keyvaluepair.md) collection|A list of pairs for the associated presentation.|
## Relationships |Relationship|Type|Description|
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationvaluelongdecimal https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-grouppolicy-grouppolicypresentationvaluelongdecimal.md
Title: "groupPolicyPresentationValueLongDecimal resource type" description: "The entity represents an unsigned long value of a long decimal text box presentation on a policy definition."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"value": 1024 } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationvaluemultitext https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-grouppolicy-grouppolicypresentationvaluemultitext.md
Title: "groupPolicyPresentationValueMultiText resource type" description: "The entity represents a string value of a multi-line text box presentation on a policy definition."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Grouppolicy Grouppolicypresentationvaluetext https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-grouppolicy-grouppolicypresentationvaluetext.md
Title: "groupPolicyPresentationValueText resource type" description: "The entity represents a string value for a drop-down list, combo box, or text box presentation on a policy definition."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"value": "String" } ```-----
v1.0 Intune Grouppolicy Grouppolicytype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-grouppolicy-grouppolicytype.md
Title: "groupPolicyType enum type" description: "Type of Group Policy File or Definition."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Type of Group Policy File or Definition.
|:|:|:| |admxBacked|0|Group Policy administrative templates built-in to the Policy configuration service provider (CSP).| |admxIngested|1|Group Policy administrative templates installed using the Policy configuration service provider (CSP).|-----
v1.0 Intune Grouppolicy Grouppolicyuploadedcategory https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-grouppolicy-grouppolicyuploadedcategory.md
Title: "groupPolicyUploadedCategory resource type" description: "The category entity stores the category of a group policy definition"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"lastModifiedDateTime": "String (timestamp)" } ```-----
v1.0 Intune Grouppolicy Grouppolicyuploadeddefinition https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-grouppolicy-grouppolicyuploadeddefinition.md
Title: "groupPolicyUploadedDefinition resource type" description: "The entity describes all of the information about a single group policy."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"lastModifiedDateTime": "String (timestamp)" } ```-----
v1.0 Intune Grouppolicy Grouppolicyuploadeddefinitionfile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-grouppolicy-grouppolicyuploadeddefinitionfile.md
Title: "groupPolicyUploadedDefinitionFile resource type" description: "The entity represents an ADMX (Administrative Template) XML file uploaded by Administrator. The ADMX file contains a collection of group policy definitions and their locations by category path. The group policy definition file also contains the languages supported as determined by the language dependent ADML (Administrative Template) language files."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Grouppolicy Grouppolicyuploadeddefinitionfilestatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-grouppolicy-grouppolicyuploadeddefinitionfilestatus.md
Title: "groupPolicyUploadedDefinitionFileStatus enum type" description: "Type of Group Policy uploaded definition file status."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Type of Group Policy uploaded definition file status.
|removalInProgress|4|Group Policy uploaded definition file removal in progress.| |uploadFailed|5|Group Policy uploaded definition file upload failed.| |removalFailed|6|Group Policy uploaded definition file removal failed.|-----
v1.0 Intune Grouppolicy Grouppolicyuploadedlanguagefile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-grouppolicy-grouppolicyuploadedlanguagefile.md
Title: "groupPolicyUploadedLanguageFile resource type" description: "The entity represents an ADML (Administrative Template language) XML file uploaded by Administrator."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"lastModifiedDateTime": "String (timestamp)" } ```-----
v1.0 Intune Grouppolicy Grouppolicyuploadedpresentation https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-grouppolicy-grouppolicyuploadedpresentation.md
Title: "groupPolicyUploadedPresentation resource type" description: "Represents an ADMX checkBox element and an ADMX boolean element."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"lastModifiedDateTime": "String (timestamp)" } ```-----
v1.0 Intune Grouppolicy Ingestionsource https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-grouppolicy-ingestionsource.md
Title: "ingestionSource enum type" description: "Category Ingestion source"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Category Ingestion source
|custom|1|Indicates the category is ingested by IT admin with sufficient permissions through custom ingestion process| |builtIn|2|Indicates the category is ingested through system ingestion process| |unknownFutureValue|3|Unknown future enum value|-----
v1.0 Intune Grouppolicy Keyvaluepair https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-grouppolicy-keyvaluepair.md
Title: "keyValuePair resource type" description: "Key value pair for storing custom settings"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"value": "String" } ```----
v1.0 Intune Mam Androidmanagedappregistration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-androidmanagedappregistration.md
Title: "androidManagedAppRegistration resource type" description: "Represents the synchronization details of an android app, with management capabilities, for a specific user. The ManagedAppRegistration resource represents the details of an app, with management capability, used by a member of the organization."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"patchVersion": "String" } ```-----
v1.0 Intune Mam Androidmanagedappsafetynetappsverificationtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-androidmanagedappsafetynetappsverificationtype.md
Title: "androidManagedAppSafetyNetAppsVerificationType enum type" description: "An admin enforced Android SafetyNet Device Attestation requirement on a managed app."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
An admin enforced Android SafetyNet Device Attestation requirement on a managed
|:|:|:| |none|0|no requirement set| |enabled|1|require that Android device has SafetyNet Apps Verification enabled|-----
v1.0 Intune Mam Androidmanagedappsafetynetdeviceattestationtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-androidmanagedappsafetynetdeviceattestationtype.md
Title: "androidManagedAppSafetyNetDeviceAttestationType enum type" description: "An admin enforced Android SafetyNet Device Attestation requirement on a managed app."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
An admin enforced Android SafetyNet Device Attestation requirement on a managed
|none|0|no requirement set| |basicIntegrity|1|require that Android device passes SafetyNet Basic Integrity validation| |basicIntegrityAndDeviceCertification|2|require that Android device passes SafetyNet Basic Integrity and Device Certification validations|-----
v1.0 Intune Mam Androidmanagedappsafetynetevaluationtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-androidmanagedappsafetynetevaluationtype.md
Title: "androidManagedAppSafetyNetEvaluationType enum type" description: "An admin enforced Android SafetyNet evaluation type requirement on a managed app."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
An admin enforced Android SafetyNet evaluation type requirement on a managed app
|:|:|:| |basic|0|Require basic evaluation| |hardwareBacked|1|Require hardware backed evaluation|-----
v1.0 Intune Mam Androidmobileappidentifier https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-androidmobileappidentifier.md
Title: "androidMobileAppIdentifier resource type" description: "The identifier for an Android app."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"packageId": "String" } ```-----
v1.0 Intune Mam Appmanagementlevel https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-appmanagementlevel.md
Title: "appManagementLevel enum type" description: "Management levels for apps"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Management levels for apps
|androidOpenSourceProjectUserAssociated|16|Android Open Source Project (AOSP) devices| |androidOpenSourceProjectUserless|32|Android Open Source Project (AOSP) userless devices| |unknownFutureValue|64|Place holder for evolvable enum|-----
v1.0 Intune Mam Conceptual https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-conceptual.md
Title: "Manage mobile apps with Microsoft Intune - Microsoft Graph API" description: "Lists the Microsoft Graph API for Intune endpoints (REST) related to mobile app management (MAM) for a tenant organization."-+ ms.localizationpriority: medium ms.prod: "intune"
v1.0 Intune Mam Defaultmanagedappprotection https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-defaultmanagedappprotection.md
Title: "defaultManagedAppProtection resource type" description: "Policy used to configure detailed management settings for a specified set of apps for all users not targeted by a TargetedManagedAppProtection Policy"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Inherits from [managedAppProtection](../resources/intune-mam-managedappprotectio
|encryptAppData|Boolean|Indicates whether managed-app data should be encrypted. (Android only)| |disableAppEncryptionIfDeviceEncryptionIsEnabled|Boolean|When this setting is enabled, app level encryption is disabled if device level encryption is enabled. (Android only)| |minimumRequiredSdkVersion|String|Versions less than the specified version will block the managed app from accessing company data. (iOS Only)|
-|customSettings|[keyValuePair](../resources/intune-shared-keyvaluepair.md) collection|A set of string key and string value pairs to be sent to the affected users, unalterned by this service|
+|customSettings|[keyValuePair](../resources/intune-mam-keyvaluepair.md) collection|A set of string key and string value pairs to be sent to the affected users, unalterned by this service|
|deployedAppCount|Int32|Count of apps to which the current policy is deployed.| |minimumRequiredPatchVersion|String|Define the oldest required Android security patch level a user can have to gain secure access to the app. (Android only)| |minimumWarningPatchVersion|String|Define the oldest recommended Android security patch level a user can have for secure access to the app. (Android only)|
-|exemptedAppProtocols|[keyValuePair](../resources/intune-shared-keyvaluepair.md) collection|iOS Apps in this list will be exempt from the policy and will be able to receive data from managed apps. (iOS Only)|
-|exemptedAppPackages|[keyValuePair](../resources/intune-shared-keyvaluepair.md) collection|Android App packages in this list will be exempt from the policy and will be able to receive data from managed apps. (Android only)|
+|exemptedAppProtocols|[keyValuePair](../resources/intune-mam-keyvaluepair.md) collection|iOS Apps in this list will be exempt from the policy and will be able to receive data from managed apps. (iOS Only)|
+|exemptedAppPackages|[keyValuePair](../resources/intune-mam-keyvaluepair.md) collection|Android App packages in this list will be exempt from the policy and will be able to receive data from managed apps. (Android only)|
|faceIdBlocked|Boolean|Indicates whether use of the FaceID is allowed in place of a pin if PinRequired is set to True. (iOS Only)| |minimumWipeSdkVersion|String|Versions less than the specified version will block the managed app from accessing company data.| |minimumWipePatchVersion|String|Android security patch level less than or equal to the specified value will wipe the managed app and the associated company data. (Android only)|
Here is a JSON representation of the resource.
"minimumWarningSdkVersion": "String" } ```-----
v1.0 Intune Mam Devicemanagementconfigurationexchangeonlinesettingapplicability https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-devicemanagementconfigurationexchangeonlinesettingapplicability.md
Title: "deviceManagementConfigurationExchangeOnlineSettingApplicability resource type" description: "Applicability for an Exchange Online Setting"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"technologies": "String" } ```----
v1.0 Intune Mam Devicemanagementconfigurationsettingapplicability https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-devicemanagementconfigurationsettingapplicability.md
Title: "deviceManagementConfigurationSettingApplicability resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"technologies": "String" } ```----
v1.0 Intune Mam Devicemanagementconfigurationstringsettingvaluedefinition https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-devicemanagementconfigurationstringsettingvaluedefinition.md
Title: "deviceManagementConfigurationStringSettingValueDefinition resource type" description: "String constraints"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"isSecret": true } ```----
v1.0 Intune Mam Devicemanagementconfigurationtechnologies https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-devicemanagementconfigurationtechnologies.md
Title: "deviceManagementConfigurationTechnologies enum type" description: "Describes which technology this setting can be deployed with"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Describes which technology this setting can be deployed with
|exchangeOnline|256|Setting can be deployed through the Exchange Online agent channel| |linuxMdm|1024|Setting can be deployed through the Linux Mdm channel| |unknownFutureValue|1073741824|Sentinel member for cases where the client cannot handle the new enum values.|----
v1.0 Intune Mam Devicemanagementconfigurationwindowssettingapplicability https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-devicemanagementconfigurationwindowssettingapplicability.md
Title: "deviceManagementConfigurationWindowsSettingApplicability resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"requiredAzureAdTrustType": "String" } ```----
v1.0 Intune Mam Devicemanagementreports https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-devicemanagementreports.md
Title: "deviceManagementReports resource type" description: "Singleton entity that acts as a container for all device management functionality."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"id": "String (identifier)" } ```-----
v1.0 Intune Mam Iosmanagedappregistration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-iosmanagedappregistration.md
Title: "iosManagedAppRegistration resource type" description: "Represents the synchronization details of an ios app, with management capabilities, for a specific user. The ManagedAppRegistration resource represents the details of an app, with management capability, used by a member of the organization."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"version": "String" } ```-----
v1.0 Intune Mam Iosmobileappidentifier https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-iosmobileappidentifier.md
Title: "iosMobileAppIdentifier resource type" description: "The identifier for an iOS app."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"bundleId": "String" } ```-----
v1.0 Intune Mam Json https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-json.md
Title: "Json resource type" description: "Represents data returned in JSON format"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"@odata.type": "#microsoft.graph.Json" } ```-----
v1.0 Intune Mam Keyvaluepair https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-keyvaluepair.md
Title: "keyValuePair resource type" description: "Key value pair for storing custom settings"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"value": "String" } ```----
v1.0 Intune Mam Macappidentifier https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-macappidentifier.md
Title: "macAppIdentifier resource type" description: "The identifier for a Mac app."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"bundleId": "String" } ```-----
v1.0 Intune Mam Managedappclipboardsharinglevel https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-managedappclipboardsharinglevel.md
Title: "managedAppClipboardSharingLevel enum type" description: "Represents the level to which the device's clipboard may be shared between apps"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Represents the level to which the device's clipboard may be shared between apps
|managedAppsWithPasteIn|1|Sharing is allowed between all managed apps with paste in enabled| |managedApps|2|Sharing is allowed between all managed apps| |blocked|3|Sharing between apps is disabled|-----
v1.0 Intune Mam Managedappconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-managedappconfiguration.md
Title: "managedAppConfiguration resource type" description: "Configuration used to deliver a set of custom settings as-is to apps for users to whom the configuration is scoped"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Inherits from [managedAppPolicy](../resources/intune-mam-managedapppolicy.md)
|roleScopeTagIds|String collection|List of Scope Tags for this Entity instance. Inherited from [managedAppPolicy](../resources/intune-mam-managedapppolicy.md)| |id|String|Key of the entity. Inherited from [managedAppPolicy](../resources/intune-mam-managedapppolicy.md)| |version|String|Version of the entity. Inherited from [managedAppPolicy](../resources/intune-mam-managedapppolicy.md)|
-|customSettings|[keyValuePair](../resources/intune-shared-keyvaluepair.md) collection|A set of string key and string value pairs to be sent to apps for users to whom the configuration is scoped, unalterned by this service|
+|customSettings|[keyValuePair](../resources/intune-mam-keyvaluepair.md) collection|A set of string key and string value pairs to be sent to apps for users to whom the configuration is scoped, unalterned by this service|
## Relationships None
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Mam Managedappdataencryptiontype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-managedappdataencryptiontype.md
Title: "managedAppDataEncryptionType enum type" description: "Represents the level to which app data is encrypted for managed apps"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Represents the level to which app data is encrypted for managed apps
|afterDeviceRestart|1|App data is encrypted when the device is restarted.| |whenDeviceLockedExceptOpenFiles|2|App data associated with this policy is encrypted when the device is locked, except data in files that are open| |whenDeviceLocked|3|App data associated with this policy is encrypted when the device is locked|-----
v1.0 Intune Mam Managedappdataingestionlocation https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-managedappdataingestionlocation.md
Title: "managedAppDataIngestionLocation enum type" description: "Locations which can be used to bring data into organization documents"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Locations which can be used to bring data into organization documents
|sharePoint|2|SharePoint Online| |camera|3|The device's camera| |photoLibrary|4|The device's photo library|-----
v1.0 Intune Mam Managedappdatastoragelocation https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-managedappdatastoragelocation.md
Title: "managedAppDataStorageLocation enum type" description: "Storage locations where managed apps can potentially store their data"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Storage locations where managed apps can potentially store their data
|box|3|Box| |localStorage|6|Local storage on the device| |photoLibrary|7|The device's photo library|-----
v1.0 Intune Mam Managedappdatatransferlevel https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-managedappdatatransferlevel.md
Title: "managedAppDataTransferLevel enum type" description: "Data can be transferred from/to these classes of apps"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Data can be transferred from/to these classes of apps
|allApps|0|All apps.| |managedApps|1|Managed apps.| |none|2|No apps.|-----
v1.0 Intune Mam Managedappdevicethreatlevel https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-managedappdevicethreatlevel.md
Title: "managedAppDeviceThreatLevel enum type" description: "The maxium threat level allowed for an app to be compliant."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
The maxium threat level allowed for an app to be compliant.
|low|2|Device needs to have a low threat.| |medium|3|Device needs to have not more than medium threat.| |high|4|Device needs to have not more than high threat|-----
v1.0 Intune Mam Managedappdiagnosticstatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-managedappdiagnosticstatus.md
Title: "managedAppDiagnosticStatus resource type" description: "Represents diagnostics status."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"mitigationInstruction": "String" } ```-----
v1.0 Intune Mam Managedappflaggedreason https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-managedappflaggedreason.md
Title: "managedAppFlaggedReason enum type" description: "The reason for which a user has been flagged"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
The reason for which a user has been flagged
|rootedDevice|1|The app registration is running on a rooted/unlocked device.| |androidBootloaderUnlocked|2|The app registration is running on an Android device on which the bootloader is unlocked.| |androidFactoryRomModified|3|The app registration is running on an Android device on which the factory ROM has been modified.|-----
v1.0 Intune Mam Managedappnotificationrestriction https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-managedappnotificationrestriction.md
Title: "managedAppNotificationRestriction enum type" description: "Restrict managed app notification"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Restrict managed app notification
|allow|0|Share all notifications.| |blockOrganizationalData|1|Do not share Orgnizational data in notifications.| |block|2|Do not share notifications.|-----
v1.0 Intune Mam Managedappoperation https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-managedappoperation.md
Title: "managedAppOperation resource type" description: "Represents an operation applied against an app registration."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"version": "String" } ```-----
v1.0 Intune Mam Managedappphonenumberredirectlevel https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-managedappphonenumberredirectlevel.md
Title: "managedAppPhoneNumberRedirectLevel enum type" description: "The classes of apps that are allowed to click-to-open a phone number, for making phone calls or sending text messages."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
The classes of apps that are allowed to click-to-open a phone number, for making
|managedApps|1|Sharing is allowed to all managed apps.| |customApp|2|Sharing is allowed to a custom app.| |blocked|3|Sharing between apps is blocked.|-----
v1.0 Intune Mam Managedapppincharacterset https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-managedapppincharacterset.md
Title: "managedAppPinCharacterSet enum type" description: "Character set which is to be used for a user's app PIN"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Character set which is to be used for a user's app PIN
|:|:|:| |numeric|0|Numeric characters| |alphanumericAndSymbol|1|Alphanumeric and symbolic characters|-----
v1.0 Intune Mam Managedapppolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-managedapppolicy.md
Title: "managedAppPolicy resource type" description: "The ManagedAppPolicy resource represents a base type for platform specific policies."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"version": "String" } ```-----
v1.0 Intune Mam Managedapppolicydeploymentsummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-managedapppolicydeploymentsummary.md
Title: "managedAppPolicyDeploymentSummary resource type" description: "The ManagedAppEntity is the base entity type for all other entity types under app management workflow."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"version": "String" } ```-----
v1.0 Intune Mam Managedapppolicydeploymentsummaryperapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-managedapppolicydeploymentsummaryperapp.md
Title: "managedAppPolicyDeploymentSummaryPerApp resource type" description: "Represents policy deployment summary per app."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"configurationAppliedUserCount": 1024 } ```-----
v1.0 Intune Mam Managedappprotection https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-managedappprotection.md
Title: "managedAppProtection resource type" description: "Policy used to configure detailed management settings for a specified set of apps"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"gracePeriodToBlockAppsDuringOffClockHours": "String (duration)" } ```-----
v1.0 Intune Mam Managedappregistration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-managedappregistration.md
Title: "managedAppRegistration resource type" description: "The ManagedAppEntity is the base entity type for all other entity types under app management workflow. The ManagedAppRegistration resource represents the details of an app, with management capability, used by a member of the organization."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"version": "String" } ```-----
v1.0 Intune Mam Managedappremediationaction https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-managedappremediationaction.md
Title: "managedAppRemediationAction enum type" description: "An admin initiated action to be applied on a managed app."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
An admin initiated action to be applied on a managed app.
|block|0|app and the corresponding company data to be blocked| |wipe|1|app and the corresponding company data to be wiped| |warn|2|app and the corresponding user to be warned|-----
v1.0 Intune Mam Managedappstatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-managedappstatus.md
Title: "managedAppStatus resource type" description: "Represents app protection and configuration status for the organization."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"version": "String" } ```-----
v1.0 Intune Mam Managedappstatusraw https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-managedappstatusraw.md
Title: "managedAppStatusRaw resource type" description: "Represents an un-typed status report about organizations app protection and configuration."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Mam Managedbrowsertype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-managedbrowsertype.md
Title: "managedBrowserType enum type" description: "Type of managed browser"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Type of managed browser
|:|:|:| |notConfigured|0|Not configured| |microsoftEdge|1|Microsoft Edge|-----
v1.0 Intune Mam Managedmobileapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-managedmobileapp.md
Title: "managedMobileApp resource type" description: "The identifier for the deployment an app."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"version": "String" } ```-----
v1.0 Intune Mam Mobileappidentifier https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-mobileappidentifier.md
Title: "mobileAppIdentifier resource type" description: "The identifier for a mobile app."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"@odata.type": "#microsoft.graph.mobileAppIdentifier" } ```-----
v1.0 Intune Mam Mobilethreatdefensepartnerpriority https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-mobilethreatdefensepartnerpriority.md
Title: "mobileThreatDefensePartnerPriority enum type" description: "Determines the conflict resolution strategy, when more than one Mobile Threat Defense provider is enabled."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Determines the conflict resolution strategy, when more than one Mobile Threat De
|defenderOverThirdPartyPartner|0|Indicates use of Microsoft Defender Endpoint over 3rd party MTD connectors| |thirdPartyPartnerOverDefender|1|Indicates use of a 3rd party MTD connector over Microsoft Defender Endpoint| |unknownFutureValue|2|Evolvable enumeration sentinel value. Do not use.|-----
v1.0 Intune Mam Targetedmanagedappgrouptype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-targetedmanagedappgrouptype.md
Title: "targetedManagedAppGroupType enum type" description: "Indicates a collection of apps to target which can be one of several pre-defined lists of apps or a manually selected list of apps"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Indicates a collection of apps to target which can be one of several pre-defined
|allCoreMicrosoftApps|1|Target the core set of Microsoft apps (Office, Edge, etc).| |allMicrosoftApps|2|Target all apps with Microsoft as publisher.| |allApps|4|Target all apps with an available assignment.|-----
v1.0 Intune Mam Targetedmanagedapppolicyassignment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-targetedmanagedapppolicyassignment.md
Title: "targetedManagedAppPolicyAssignment resource type" description: "The type for deployment of groups or apps."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"sourceId": "String" } ```-----
v1.0 Intune Mam Targetedmanagedappprotection https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-targetedmanagedappprotection.md
Title: "targetedManagedAppProtection resource type" description: "Policy used to configure detailed management settings targeted to specific security groups"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"appGroupType": "String" } ```-----
v1.0 Intune Mam Windowsappidentifier https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-windowsappidentifier.md
Title: "windowsAppIdentifier resource type" description: "The identifier for a Windows app."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"windowsAppId": "String" } ```-----
v1.0 Intune Mam Windowsinformationprotection https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-windowsinformationprotection.md
Title: "windowsInformationProtection resource type" description: "Policy for Windows information protection to configure detailed management settings"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"isAssigned": true } ```-----
v1.0 Intune Mam Windowsinformationprotectionapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-windowsinformationprotectionapp.md
Title: "windowsInformationProtectionApp resource type" description: "App for Windows information protection"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"denied": true } ```-----
v1.0 Intune Mam Windowsinformationprotectionapplockerfile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-windowsinformationprotectionapplockerfile.md
Title: "windowsInformationProtectionAppLockerFile resource type" description: "Windows Information Protection AppLocker File"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"version": "String" } ```-----
v1.0 Intune Mam Windowsinformationprotectiondatarecoverycertificate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-windowsinformationprotectiondatarecoverycertificate.md
Title: "windowsInformationProtectionDataRecoveryCertificate resource type" description: "Windows Information Protection DataRecoveryCertificate"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"certificate": "binary" } ```-----
v1.0 Intune Mam Windowsinformationprotectiondesktopapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-windowsinformationprotectiondesktopapp.md
Title: "windowsInformationProtectionDesktopApp resource type" description: "Desktop App for Windows information protection"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"binaryVersionHigh": "String" } ```-----
v1.0 Intune Mam Windowsinformationprotectiondeviceregistration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-windowsinformationprotectiondeviceregistration.md
Title: "windowsInformationProtectionDeviceRegistration resource type" description: "Represents device registration records for Bring-Your-Own-Device(BYOD) Windows devices."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"lastCheckInDateTime": "String (timestamp)" } ```-----
v1.0 Intune Mam Windowsinformationprotectionenforcementlevel https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-windowsinformationprotectionenforcementlevel.md
Title: "windowsInformationProtectionEnforcementLevel enum type" description: "Possible values for WIP Protection enforcement levels"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for WIP Protection enforcement levels
|encryptAndAuditOnly|1|Encrypt and Audit only| |encryptAuditAndPrompt|2|Encrypt, Audit and Prompt| |encryptAuditAndBlock|3|Encrypt, Audit and Block|-----
v1.0 Intune Mam Windowsinformationprotectioniprangecollection https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-windowsinformationprotectioniprangecollection.md
Title: "windowsInformationProtectionIPRangeCollection resource type" description: "Windows Information Protection IP Range Collection"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Mam Windowsinformationprotectionpincharacterrequirements https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-windowsinformationprotectionpincharacterrequirements.md
Title: "windowsInformationProtectionPinCharacterRequirements enum type" description: "Pin Character Requirements"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Pin Character Requirements
|notAllow|0|Not allow| |requireAtLeastOne|1|Require atleast one| |allow|2|Allow any number|-----
v1.0 Intune Mam Windowsinformationprotectionpolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-windowsinformationprotectionpolicy.md
Title: "windowsInformationProtectionPolicy resource type" description: "Policy for Windows information protection without MDM"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"daysWithoutContactBeforeUnenroll": 1024 } ```-----
v1.0 Intune Mam Windowsinformationprotectionproxieddomaincollection https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-windowsinformationprotectionproxieddomaincollection.md
Title: "windowsInformationProtectionProxiedDomainCollection resource type" description: "Windows Information Protection Proxied Domain Collection"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Mam Windowsinformationprotectionresourcecollection https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-windowsinformationprotectionresourcecollection.md
Title: "windowsInformationProtectionResourceCollection resource type" description: "Windows Information Protection Resource Collection"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Mam Windowsinformationprotectionstoreapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-windowsinformationprotectionstoreapp.md
Title: "windowsInformationProtectionStoreApp resource type" description: "Store App for Windows information protection"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"denied": true } ```-----
v1.0 Intune Mam Windowsinformationprotectionwipeaction https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-windowsinformationprotectionwipeaction.md
Title: "windowsInformationProtectionWipeAction resource type" description: "Represents wipe requests issued by tenant admin for Bring-Your-Own-Device(BYOD) Windows devices."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"lastCheckInDateTime": "String (timestamp)" } ```-----
v1.0 Intune Mam Windowsmanagedappclipboardsharinglevel https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-windowsmanagedappclipboardsharinglevel.md
Title: "windowsManagedAppClipboardSharingLevel enum type" description: "Represents the level to which the device's clipboard may be shared between apps"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Represents the level to which the device's clipboard may be shared between apps
|:|:|:| |anyDestinationAnySource|0|Org users can paste data from and cut/copy data to any account, document, location or application.| |none|1|Org users cannot cut, copy or paste data to or from external accounts, documents, locations or applications from or into the org context.|-----
v1.0 Intune Mam Windowsmanagedappdatatransferlevel https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-windowsmanagedappdatatransferlevel.md
Title: "windowsManagedAppDataTransferLevel enum type" description: "Data can be transferred from/to these classes of apps"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Data can be transferred from/to these classes of apps
|:|:|:| |allApps|0|All apps.| |none|1|No apps.|-----
v1.0 Intune Mam Windowsmanagedappprotection https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mam-windowsmanagedappprotection.md
Title: "windowsManagedAppProtection resource type" description: "Policy used to configure detailed management settings targeted to specific security groups and for a specified set of apps on a Windows device"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"periodOfflineBeforeAccessCheck": "String (duration)" } ```-----
v1.0 Intune Mstunnel Keyvaluepair https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mstunnel-keyvaluepair.md
Title: "keyValuePair resource type" description: "Key value pair for storing custom settings"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"value": "String" } ```----
v1.0 Intune Mstunnel Metrictimeseriesdatapoint https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mstunnel-metrictimeseriesdatapoint.md
Title: "metricTimeSeriesDataPoint resource type" description: "Metric Time series data point"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"value": 1024 } ```-----
v1.0 Intune Mstunnel Microsofttunnelconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mstunnel-microsofttunnelconfiguration.md
Title: "microsoftTunnelConfiguration resource type" description: "Entity that represents a collection of Microsoft Tunnel settings"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Entity that represents a collection of Microsoft Tunnel settings
|routeExcludes|String collection|Subsets of the routes that will not be routed by the server| |splitDNS|String collection|The domains that will be resolved using the provided dns servers| |listenPort|Int32|The port that both TCP and UPD will listen over on the server|
-|advancedSettings|[keyValuePair](../resources/intune-shared-keyvaluepair.md) collection|Additional settings that may be applied to the server|
+|advancedSettings|[keyValuePair](../resources/intune-mstunnel-keyvaluepair.md) collection|Additional settings that may be applied to the server|
|lastUpdateDateTime|DateTimeOffset|When the configuration was last updated| |roleScopeTagIds|String collection|List of Scope Tags for this Entity instance| |disableUdpConnections|Boolean|When DisableUdpConnections is set, the clients and VPN server will not use DTLS connections to transfer data.|
Here is a JSON representation of the resource.
"disableUdpConnections": true } ```-----
v1.0 Intune Mstunnel Microsofttunnelhealththreshold https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mstunnel-microsofttunnelhealththreshold.md
Title: "microsoftTunnelHealthThreshold resource type" description: "Entity that represents the health thresholds of a health metric"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"defaultUnhealthyThreshold": 1024 } ```-----
v1.0 Intune Mstunnel Microsofttunnellogcollectionstatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mstunnel-microsofttunnellogcollectionstatus.md
Title: "microsoftTunnelLogCollectionStatus enum type" description: "Enum type that represent the status of log collection"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Enum type that represent the status of log collection
|completed|1|Indicates that the log collection is completed| |failed|2|Indicates that the log collection has failed| |unknownFutureValue|3|Placeholder value for future expansion enums|-----
v1.0 Intune Mstunnel Microsofttunnelserver https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mstunnel-microsofttunnelserver.md
Title: "microsoftTunnelServer resource type" description: "Entity that represents a single Microsoft Tunnel server"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"serverImageDigest": "String" } ```-----
v1.0 Intune Mstunnel Microsofttunnelserverhealthstatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mstunnel-microsofttunnelserverhealthstatus.md
Title: "microsoftTunnelServerHealthStatus enum type" description: "Enum of possible MicrosoftTunnelServer health status types"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Enum of possible MicrosoftTunnelServer health status types
|upgradeInProgress|5|Indicates the upgrade in progress during the upgrade cycle of when Intune begins upgrading servers, one server at a time| |upgradeFailed|6|Indicates the failure of the upgrade during the upgrade cycle of when Intune begins upgrading servers, one server at a time| |unknownFutureValue|7|Evolvable enumeration sentinel value. Do not use enums.|-----
v1.0 Intune Mstunnel Microsofttunnelserverlogcollectionresponse https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mstunnel-microsofttunnelserverlogcollectionresponse.md
Title: "microsoftTunnelServerLogCollectionResponse resource type" description: "Entity that stores the server log collection status."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"expiryDateTime": "String (timestamp)" } ```-----
v1.0 Intune Mstunnel Microsofttunnelsite https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-mstunnel-microsofttunnelsite.md
Title: "microsoftTunnelSite resource type" description: "Entity that represents a Microsoft Tunnel site"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Entity that represents a Microsoft Tunnel site
|upgradeAutomatically|Boolean|The site's automatic upgrade setting. True for automatic upgrades, false for manual control| |upgradeAvailable|Boolean|The site provides the state of when an upgrade is available| |internalNetworkProbeUrl|String|The site's Internal Network Access Probe URL|
-|enableCertificatePinning|Boolean|When set to true, certificate pinning will be enforced on connections between the Microsoft Tunnel server and Microsoft Tunnel clients. When set to false, certificate pinning will be disabled.|
|roleScopeTagIds|String collection|List of Scope Tags for this Entity instance| ## Relationships
Here is a JSON representation of the resource.
"upgradeAutomatically": true, "upgradeAvailable": true, "internalNetworkProbeUrl": "String",
- "enableCertificatePinning": true,
"roleScopeTagIds": [ "String" ] } ```-----
v1.0 Intune Notification Localizednotificationmessage https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-notification-localizednotificationmessage.md
Title: "localizedNotificationMessage resource type" description: "The text content of a Notification Message Template for the specified locale."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"isDefault": true } ```-----
v1.0 Intune Notification Notificationmessagetemplate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-notification-notificationmessagetemplate.md
Title: "notificationMessageTemplate resource type" description: "Notification messages are messages that are sent to end users who are determined to be not-compliant with the compliance policies defined by the administrator. Administrators choose notifications and configure them in the Intune Admin Console using the compliance policy creation page under the ΓÇ£Actions for non-complianceΓÇ¥ section. Use the notificationMessageTemplate object to create your own custom notifications for administrators to choose while configuring actions for non-compliance."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Notification Notificationtemplatebrandingoptions https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-notification-notificationtemplatebrandingoptions.md
Title: "notificationTemplateBrandingOptions enum type" description: "Branding Options for the Message Template. Branding is defined in the Intune Admin Console."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Branding Options for the Message Template. Branding is defined in the Intune Adm
|includeContactInformation|4|Include Contact Info.| |includeCompanyPortalLink|8|Include Company Portal Link.| |includeDeviceDetails|16|Include Device Details.|-----
v1.0 Intune Odj Devicemanagementdomainjoinconnector https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-odj-devicemanagementdomainjoinconnector.md
Title: "deviceManagementDomainJoinConnector resource type" description: "A Domain Join Connector is a connector that is responsible to allocate (and delete) machine account blobs"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"version": "String" } ```-----
v1.0 Intune Odj Devicemanagementdomainjoinconnectorstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-odj-devicemanagementdomainjoinconnectorstate.md
Title: "deviceManagementDomainJoinConnectorState enum type" description: "The ODJ request states."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
The ODJ request states.
|active|0|Connector is actively pinging Intune.| |error|1|There is no heart-beat from connector from last one hour.| |inactive|2|There is no heart-beat from connector from last 5 days.|-----
v1.0 Intune Onboarding Certificateconnectorsetting https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-onboarding-certificateconnectorsetting.md
Title: "certificateConnectorSetting resource type" description: "Certificate connector settings."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"lastUploadVersion": 1024 } ```-----
v1.0 Intune Onboarding Compliancemanagementpartner https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-onboarding-compliancemanagementpartner.md
Title: "complianceManagementPartner resource type" description: "Compliance management partner for all platforms"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Onboarding Compliancemanagementpartnerassignment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-onboarding-compliancemanagementpartnerassignment.md
Title: "complianceManagementPartnerAssignment resource type" description: "User group targeting for Compliance Management Partner"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Onboarding Conceptual https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-onboarding-conceptual.md
Title: "Onboard managed devices with Intune - Microsoft Graph API" description: "Lists the Microsoft Graph API for Intune endpoints (REST) used to onboard (configure and initialize) devices for a tenant organization." ms.localizationpriority: medium-+ ms.prod: "intune"
v1.0 Intune Onboarding Deviceandappmanagementdata https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-onboarding-deviceandappmanagementdata.md
Title: "deviceAndAppManagementData resource type" description: "Exported Data"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"content": "Stream" } ```-----
v1.0 Intune Onboarding Devicecomanagementauthorityconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-onboarding-devicecomanagementauthorityconfiguration.md
Title: "deviceComanagementAuthorityConfiguration resource type" description: "Windows 10 Co-Management Authority Page Configuration"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"configurationManagerAgentCommandLineArgument": "String" } ```-----
v1.0 Intune Onboarding Deviceenrollmentconfigurationtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-onboarding-deviceenrollmentconfigurationtype.md
Title: "deviceEnrollmentConfigurationType enum type" description: "Describes the TemplateFamily for the Template entity"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Describes the TemplateFamily for the Template entity
|singlePlatformRestriction|10|Indicates that configuration is of type single platform restriction which refers to types of devices a user is allowed to enroll.| |unknownFutureValue|11|Unknown future value| |enrollmentNotificationsConfiguration|12|Indicates that configuration is of type Enrollment Notification which refers to types of notification a user receives during enrollment.|-----
v1.0 Intune Onboarding Deviceenrollmentlimitconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-onboarding-deviceenrollmentlimitconfiguration.md
Title: "deviceEnrollmentLimitConfiguration resource type" description: "Device Enrollment Configuration that restricts the number of devices a user can enroll"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"limit": 1024 } ```-----
v1.0 Intune Onboarding Deviceenrollmentnotificationconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-onboarding-deviceenrollmentnotificationconfiguration.md
Title: "deviceEnrollmentNotificationConfiguration resource type" description: "Enrollment Notification Configuration which is used to send notification"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Inherits from [deviceEnrollmentConfiguration](../resources/intune-shared-devicee
|version|Int32|The version of the device enrollment configuration Inherited from [deviceEnrollmentConfiguration](../resources/intune-shared-deviceenrollmentconfiguration.md)| |roleScopeTagIds|String collection|Optional role scope tags for the enrollment restrictions. Inherited from [deviceEnrollmentConfiguration](../resources/intune-shared-deviceenrollmentconfiguration.md)| |deviceEnrollmentConfigurationType|[deviceEnrollmentConfigurationType](../resources/intune-onboarding-deviceenrollmentconfigurationtype.md)|Support for Enrollment Configuration Type Inherited from [deviceEnrollmentConfiguration](../resources/intune-shared-deviceenrollmentconfiguration.md). Possible values are: `unknown`, `limit`, `platformRestrictions`, `windowsHelloForBusiness`, `defaultLimit`, `defaultPlatformRestrictions`, `defaultWindowsHelloForBusiness`, `defaultWindows10EnrollmentCompletionPageConfiguration`, `windows10EnrollmentCompletionPageConfiguration`, `deviceComanagementAuthorityConfiguration`, `singlePlatformRestriction`, `unknownFutureValue`, `enrollmentNotificationsConfiguration`.|
-|platformType|[enrollmentRestrictionPlatformType](../resources/intune-onboarding-enrollmentrestrictionplatformtype.md)|Platform type of the Enrollment Notification. Possible values are: `allPlatforms`, `ios`, `windows`, `windowsPhone`, `android`, `androidForWork`, `mac`.|
+|platformType|[enrollmentRestrictionPlatformType](../resources/intune-onboarding-enrollmentrestrictionplatformtype.md)|Platform type of the Enrollment Notification. Possible values are: `allPlatforms`, `ios`, `windows`, `windowsPhone`, `android`, `androidForWork`, `mac`, `linux`, `unknownFutureValue`.|
|templateType|[enrollmentNotificationTemplateType](../resources/intune-onboarding-enrollmentnotificationtemplatetype.md)|Template type of the Enrollment Notification. Possible values are: `email`, `push`, `unknownFutureValue`.| |notificationMessageTemplateId|Guid|Notification Message Template Id| |notificationTemplates|String collection|The list of notification data - <TemplateType>_<NotificationMessageTemplateId>|
Here is a JSON representation of the resource.
"defaultLocale": "String" } ```-----
v1.0 Intune Onboarding Deviceenrollmentplatformrestriction https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-onboarding-deviceenrollmentplatformrestriction.md
Title: "deviceEnrollmentPlatformRestriction resource type" description: "Platform specific enrollment restrictions"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Onboarding Deviceenrollmentplatformrestrictionconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-onboarding-deviceenrollmentplatformrestrictionconfiguration.md
Title: "deviceEnrollmentPlatformRestrictionConfiguration resource type" description: "Device Enrollment Configuration that restricts the types of devices a user can enroll for a single platform"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Inherits from [deviceEnrollmentConfiguration](../resources/intune-shared-devicee
|roleScopeTagIds|String collection|Optional role scope tags for the enrollment restrictions. Inherited from [deviceEnrollmentConfiguration](../resources/intune-shared-deviceenrollmentconfiguration.md)| |deviceEnrollmentConfigurationType|[deviceEnrollmentConfigurationType](../resources/intune-onboarding-deviceenrollmentconfigurationtype.md)|Support for Enrollment Configuration Type Inherited from [deviceEnrollmentConfiguration](../resources/intune-shared-deviceenrollmentconfiguration.md). Possible values are: `unknown`, `limit`, `platformRestrictions`, `windowsHelloForBusiness`, `defaultLimit`, `defaultPlatformRestrictions`, `defaultWindowsHelloForBusiness`, `defaultWindows10EnrollmentCompletionPageConfiguration`, `windows10EnrollmentCompletionPageConfiguration`, `deviceComanagementAuthorityConfiguration`, `singlePlatformRestriction`, `unknownFutureValue`, `enrollmentNotificationsConfiguration`.| |platformRestriction|[deviceEnrollmentPlatformRestriction](../resources/intune-onboarding-deviceenrollmentplatformrestriction.md)|Restrictions based on platform, platform operating system version, and device ownership|
-|platformType|[enrollmentRestrictionPlatformType](../resources/intune-onboarding-enrollmentrestrictionplatformtype.md)|Type of platform for which this restriction applies. Possible values are: `allPlatforms`, `ios`, `windows`, `windowsPhone`, `android`, `androidForWork`, `mac`.|
+|platformType|[enrollmentRestrictionPlatformType](../resources/intune-onboarding-enrollmentrestrictionplatformtype.md)|Type of platform for which this restriction applies. Possible values are: `allPlatforms`, `ios`, `windows`, `windowsPhone`, `android`, `androidForWork`, `mac`, `linux`, `unknownFutureValue`.|
## Relationships |Relationship|Type|Description|
Here is a JSON representation of the resource.
"platformType": "String" } ```-----
v1.0 Intune Onboarding Deviceenrollmentplatformrestrictionsconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-onboarding-deviceenrollmentplatformrestrictionsconfiguration.md
Title: "deviceEnrollmentPlatformRestrictionsConfiguration resource type" description: "Device Enrollment Configuration that restricts the types of devices a user can enroll"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Onboarding Deviceenrollmentwindowshelloforbusinessconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-onboarding-deviceenrollmentwindowshelloforbusinessconfiguration.md
Title: "deviceEnrollmentWindowsHelloForBusinessConfiguration resource type" description: "Windows Hello for Business settings lets users access their devices using a gesture, such as biometric authentication, or a PIN. Configure settings for enrolled Windows 10, Windows 10 Mobile and later."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"securityKeyForSignIn": "String" } ```-----
v1.0 Intune Onboarding Devicemanagementexchangeaccesslevel https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-onboarding-devicemanagementexchangeaccesslevel.md
Title: "deviceManagementExchangeAccessLevel enum type" description: "Access Level in Exchange."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Access Level in Exchange.
|allow|1|Allow the device access to Exchange.| |block|2|Block the device from accessing Exchange.| |quarantine|3|Quarantine the device in Exchange.|-----
v1.0 Intune Onboarding Devicemanagementexchangeaccessrule https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-onboarding-devicemanagementexchangeaccessrule.md
Title: "deviceManagementExchangeAccessRule resource type" description: "Device Access Rules in Exchange."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"accessLevel": "String" } ```-----
v1.0 Intune Onboarding Devicemanagementexchangeaccessruletype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-onboarding-devicemanagementexchangeaccessruletype.md
Title: "deviceManagementExchangeAccessRuleType enum type" description: "Criteria which defines the type of device this access rule will apply to"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Criteria which defines the type of device this access rule will apply to
|:|:|:| |family|0|Family of devices| |model|1|Specific model of device|-----
v1.0 Intune Onboarding Devicemanagementexchangeconnector https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-onboarding-devicemanagementexchangeconnector.md
Title: "deviceManagementExchangeConnector resource type" description: "Entity which represents a connection to an Exchange environment."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"exchangeOrganization": "String" } ```-----
v1.0 Intune Onboarding Devicemanagementexchangeconnectorstatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-onboarding-devicemanagementexchangeconnectorstatus.md
Title: "deviceManagementExchangeConnectorStatus enum type" description: "The current status of the Exchange Connector."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
The current status of the Exchange Connector.
|connectionPending|1|Pending Connection to the Exchange Environment.| |connected|2|Connected to the Exchange Environment| |disconnected|3|Disconnected from the Exchange Environment|-----
v1.0 Intune Onboarding Devicemanagementexchangeconnectorsynctype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-onboarding-devicemanagementexchangeconnectorsynctype.md
Title: "deviceManagementExchangeConnectorSyncType enum type" description: "The type of Exchange Connector sync requested."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
The type of Exchange Connector sync requested.
|:|:|:| |fullSync|0|Discover all the device in Exchange.| |deltaSync|1|Discover only the device in Exchange which have updated during the delta sync window.|-----
v1.0 Intune Onboarding Devicemanagementexchangeconnectortype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-onboarding-devicemanagementexchangeconnectortype.md
Title: "deviceManagementExchangeConnectorType enum type" description: "The type of Exchange Connector."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
The type of Exchange Connector.
|hosted|1|Connects to O365 multi-tenant Exchange environment| |serviceToService|2|Intune Service connects directly to O365 multi-tenant Exchange environment| |dedicated|3|Connects to O365 Dedicated Exchange environment.|-----
v1.0 Intune Onboarding Devicemanagementexchangedeviceclass https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-onboarding-devicemanagementexchangedeviceclass.md
Title: "deviceManagementExchangeDeviceClass resource type" description: "Device Class in Exchange."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"type": "String" } ```-----
v1.0 Intune Onboarding Devicemanagementexchangeonpremisespolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-onboarding-devicemanagementexchangeonpremisespolicy.md
Title: "deviceManagementExchangeOnPremisesPolicy resource type" description: "Singleton entity which represents the Exchange OnPremises policy configured for a tenant."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Onboarding Devicemanagementpartner https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-onboarding-devicemanagementpartner.md
Title: "deviceManagementPartner resource type" description: "Entity which represents a connection to device management partner."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Onboarding Devicemanagementpartnerapptype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-onboarding-devicemanagementpartnerapptype.md
Title: "deviceManagementPartnerAppType enum type" description: "Partner App Type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Partner App Type.
|unknown|0|Partner App type is unknown.| |singleTenantApp|1|Partner App is Single tenant in AAD.| |multiTenantApp|2|Partner App is Multi tenant in AAD.|-----
v1.0 Intune Onboarding Devicemanagementpartnerassignment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-onboarding-devicemanagementpartnerassignment.md
Title: "deviceManagementPartnerAssignment resource type" description: "User group targeting for Device Management Partner"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Onboarding Devicemanagementpartnertenantstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-onboarding-devicemanagementpartnertenantstate.md
Title: "deviceManagementPartnerTenantState enum type" description: "Partner state of this tenant."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Partner state of this tenant.
|terminated|3|Partner connection is terminated.| |rejected|4|Partner messages are rejected.| |unresponsive|5|Partner is unresponsive.|-----
v1.0 Intune Onboarding Deviceplatformtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-onboarding-deviceplatformtype.md
Title: "devicePlatformType enum type" description: "Supported platform types."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Supported platform types.
|windows10AndLater|6|Windows 10 and later.| |androidWorkProfile|7|Android Work Profile.| |unknown|8|Unknown.|-----
v1.0 Intune Onboarding Enrollmentconfigurationassignment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-onboarding-enrollmentconfigurationassignment.md
Title: "enrollmentConfigurationAssignment resource type" description: "Enrollment Configuration Assignment"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"sourceId": "String" } ```-----
v1.0 Intune Onboarding Enrollmentnotificationbrandingoptions https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-onboarding-enrollmentnotificationbrandingoptions.md
Title: "enrollmentNotificationBrandingOptions enum type" description: "Branding Options for the Message Template. Branding is defined in the Intune Admin Console."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Branding Options for the Message Template. Branding is defined in the Intune Adm
|includeCompanyPortalLink|8|Indicates that the Company Portal Link is included in the notification.| |includeDeviceDetails|16|Indicates that the DeviceDetails is included in the notification.| |unknownFutureValue|32|unknownFutureValue for evolvable enums pattern.|-----
v1.0 Intune Onboarding Enrollmentnotificationtemplatetype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-onboarding-enrollmentnotificationtemplatetype.md
Title: "enrollmentNotificationTemplateType enum type" description: "This enum indicates the Template type for which the enrollment notification applies."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
This enum indicates the Template type for which the enrollment notification appl
|email|1|Email Notification| |push|2|Push Notification| |unknownFutureValue|99|Unknown Type|-----
v1.0 Intune Onboarding Enrollmentrestrictionplatformtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-onboarding-enrollmentrestrictionplatformtype.md
Title: "enrollmentRestrictionPlatformType enum type" description: "This enum indicates the platform type for which the enrollment restriction applies."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
This enum indicates the platform type for which the enrollment restriction appli
## Members |Member|Value|Description| |:|:|:|
-|allPlatforms|0|Applies to all platforms|
-|ios|1|iOS/iPadOS devices|
-|windows|2|Windows devices|
-|windowsPhone|3|Windows Phone devices|
-|android|4|Android devices|
-|androidForWork|5|Android for Work devices|
-|mac|7|macOS devices|
-----
+|allPlatforms|0|Indicates that the enrollment configuration applies to all platforms|
+|ios|1|Indicates that the enrollment configuration applies only to iOS/iPadOS devices|
+|windows|2|Indicates that the enrollment configuration applies only to Windows devices|
+|windowsPhone|3|Indicates that the enrollment configuration applies only to Windows Phone devices|
+|android|4|Indicates that the enrollment configuration applies only to Android devices|
+|androidForWork|5|Indicates that the enrollment configuration applies only to Android for Work devices|
+|mac|7|Indicates that the enrollment configuration applies only to macOS devices|
+|linux|8|Indicates that the enrollment configuration applies only to Linux devices|
+|unknownFutureValue|9|Evolvable enumeration sentinel value. Do not use|
v1.0 Intune Onboarding Intunebrand https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-onboarding-intunebrand.md
Title: "intuneBrand resource type" description: "intuneBrand contains data which is used in customizing the appearance of the Company Portal applications as well as the end user web portal."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"disableClientTelemetry": true } ```-----
v1.0 Intune Onboarding Mdmauthority https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-onboarding-mdmauthority.md
Title: "mdmAuthority enum type" description: "Mobile device management authority."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Mobile device management authority.
|intune|1|Intune| |sccm|2|SCCM| |office365|3|Office365|-----
v1.0 Intune Onboarding Microsoftstoreforbusinessportalselectionoptions https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-onboarding-microsoftstoreforbusinessportalselectionoptions.md
Title: "microsoftStoreForBusinessPortalSelectionOptions enum type" description: "Portal to which admin syncs available Microsoft Store for Business apps. This is available in the Intune Admin Console."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Portal to which admin syncs available Microsoft Store for Business apps. This is
|none|0|This option is not available for the account| |companyPortal|1|Intune Company Portal only.| |privateStore|2|MSFB Private store only.|-----
v1.0 Intune Onboarding Mobilethreatdefenseconnector https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-onboarding-mobilethreatdefenseconnector.md
Title: "mobileThreatDefenseConnector resource type" description: "Entity which represents a connection to Mobile threat defense partner."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"microsoftDefenderForEndpointAttachEnabled": true } ```-----
v1.0 Intune Onboarding Mobilethreatpartnertenantstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-onboarding-mobilethreatpartnertenantstate.md
Title: "mobileThreatPartnerTenantState enum type" description: "Partner state of this tenant."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Partner state of this tenant.
|available|1|Partner is available.| |enabled|2|Partner is enabled.| |unresponsive|3|Partner is unresponsive.|-----
v1.0 Intune Onboarding Onpremisesconditionalaccesssettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-onboarding-onpremisesconditionalaccesssettings.md
Title: "onPremisesConditionalAccessSettings resource type" description: "Singleton entity which represents the Exchange OnPremises Conditional Access Settings for a tenant."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"overrideDefaultRule": true } ```-----
v1.0 Intune Onboarding Organization https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-onboarding-organization.md
Title: "organization resource type" description: "The organization resource represents an instance of global settings and resources which operate and are provisioned at the tenant-level."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Onboarding Sideloadingkey https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-onboarding-sideloadingkey.md
Title: "sideLoadingKey resource type" description: "SideLoadingKey entity is required for Windows 8 and 8.1 devices to intall Line Of Business Apps for a tenant."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"lastUpdatedDateTime": "String" } ```-----
v1.0 Intune Onboarding Vpptokenlicensesummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-onboarding-vppTokenLicenseSummary.md
Title: "vppTokenLicenseSummary resource type" description: "License summary of a given app in a token."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"usedLicenseCount": 1024 } ```-----
v1.0 Intune Onboarding Vpptoken https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-onboarding-vpptoken.md
Title: "vppToken resource type" description: "You purchase multiple licenses for iOS apps through the Apple Volume Purchase Program for Business or Education. This involves setting up an Apple VPP account from the Apple website and uploading the Apple VPP Business or Education token to Intune. You can then synchronize your volume purchase information with Intune and track your volume-purchased app use. You can upload multiple Apple VPP Business or Education tokens."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Onboarding Vpptokenactionresult https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-onboarding-vpptokenactionresult.md
Title: "vppTokenActionResult resource type" description: "The status of the action performed with an Apple Volume Purchase Program token."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"lastUpdatedDateTime": "String (timestamp)" } ```-----
v1.0 Intune Onboarding Vpptokenrevokelicensesactionresult https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-onboarding-vpptokenrevokelicensesactionresult.md
Title: "vppTokenRevokeLicensesActionResult resource type" description: "The status of the revoke licenses action performed on the Apple Volume Purchase Program token."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"actionFailureReason": "String" } ```-----
v1.0 Intune Onboarding Vpptokenstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-onboarding-vpptokenstate.md
Title: "vppTokenState enum type" description: "Possible states associated with an Apple Volume Purchase Program token."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible states associated with an Apple Volume Purchase Program token.
|invalid|3|Token is invalid.| |assignedToExternalMDM|4|Token is managed by another MDM Service.| |duplicateLocationId|5|Token is associated with the same location as another token on the account.|-----
v1.0 Intune Onboarding Vpptokensyncstatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-onboarding-vpptokensyncstatus.md
Title: "vppTokenSyncStatus enum type" description: "Possible sync statuses associated with an Apple Volume Purchase Program token."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible sync statuses associated with an Apple Volume Purchase Program token.
|inProgress|1|Last Sync in progress.| |completed|2|Last Sync completed successfully.| |failed|3|Last Sync failed.|-----
v1.0 Intune Onboarding Windows10enrollmentcompletionpageconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-onboarding-windows10enrollmentcompletionpageconfiguration.md
Title: "windows10EnrollmentCompletionPageConfiguration resource type" description: "Windows 10 Enrollment Status Page Configuration"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"disableUserStatusTrackingAfterFirstUser": true } ```-----
v1.0 Intune Onboarding Windowshelloforbusinesspinusage https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-onboarding-windowshelloforbusinesspinusage.md
Title: "windowsHelloForBusinessPinUsage enum type" description: "Windows Hello for Business pin usage options"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Windows Hello for Business pin usage options
|allowed|0|Allowed the usage of certain pin rule| |required|1|Enforce the usage of certain pin rule| |disallowed|2|Forbit the usage of certain pin rule|-----
v1.0 Intune Partnerintegration Appvulnerabilitymanageddevice https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-partnerintegration-appvulnerabilitymanageddevice.md
Title: "appVulnerabilityManagedDevice resource type" description: "An app vulnerability managed device."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"lastSyncDateTime": "String (timestamp)" } ```-----
v1.0 Intune Partnerintegration Appvulnerabilitymobileapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-partnerintegration-appvulnerabilitymobileapp.md
Title: "appVulnerabilityMobileApp resource type" description: "An app vulnerability mobile app."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"version": "String" } ```-----
v1.0 Intune Partnerintegration Appvulnerabilitytask https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-partnerintegration-appvulnerabilitytask.md
Title: "appVulnerabilityTask resource type" description: "An app vulnerability task."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"remediation": "String" } ```-----
v1.0 Intune Partnerintegration Appvulnerabilitytaskmitigationtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-partnerintegration-appvulnerabilitytaskmitigationtype.md
Title: "appVulnerabilityTaskMitigationType enum type" description: "Device app management task mitigation type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Device app management task mitigation type.
|update|1|The app needs to be updated.| |uninstall|2|The app needs to be uninstalled.| |securityConfiguration|3|The security configuration needs to be changed.|-----
v1.0 Intune Partnerintegration Configmanagercollection https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-partnerintegration-configmanagercollection.md
Title: "configManagerCollection resource type" description: "A ConfigManager defined collection of devices or users."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"lastModifiedDateTime": "String (timestamp)" } ```-----
v1.0 Intune Partnerintegration Configmanagerpolicysummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-partnerintegration-configmanagerpolicysummary.md
Title: "configManagerPolicySummary resource type" description: "A ConfigManager policy summary."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"enforcedDeviceCount": 1024 } ```-----
v1.0 Intune Partnerintegration Deviceappmanagementtask https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-partnerintegration-deviceappmanagementtask.md
Title: "deviceAppManagementTask resource type" description: "A device app management task."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"status": "String" } ```-----
v1.0 Intune Partnerintegration Deviceappmanagementtaskcategory https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-partnerintegration-deviceappmanagementtaskcategory.md
Title: "deviceAppManagementTaskCategory enum type" description: "Device app management task category."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Device app management task category.
|:|:|:| |unknown|0|Unknown source.| |advancedThreatProtection|1|Windows Defender ATP Threat & Vulnerability Management.|-----
v1.0 Intune Partnerintegration Deviceappmanagementtaskpriority https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-partnerintegration-deviceappmanagementtaskpriority.md
Title: "deviceAppManagementTaskPriority enum type" description: "Device app management task priority."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Device app management task priority.
|none|0|No priority set.| |high|1|High priority.| |low|2|Low priority.|-----
v1.0 Intune Partnerintegration Deviceappmanagementtaskstatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-partnerintegration-deviceappmanagementtaskstatus.md
Title: "deviceAppManagementTaskStatus enum type" description: "Device app management task status."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Device app management task status.
|active|2|The task has been accepted and is being worked on.| |completed|3|The work is complete.| |rejected|4|The task was rejected.|-----
v1.0 Intune Partnerintegration Endpointsecurityconfigurationapplicableplatform https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-partnerintegration-endpointsecurityconfigurationapplicableplatform.md
Title: "endpointSecurityConfigurationApplicablePlatform enum type" description: "The endpoint security configuration applicable platform."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
The endpoint security configuration applicable platform.
|macOS|1|MacOS.| |windows10AndLater|2|Windows 10 and later.| |windows10AndWindowsServer|3|Windows 10 and Windows Server.|-----
v1.0 Intune Partnerintegration Endpointsecurityconfigurationprofiletype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-partnerintegration-endpointsecurityconfigurationprofiletype.md
Title: "endpointSecurityConfigurationProfileType enum type" description: "The endpoint security policy profile type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
The endpoint security policy profile type.
|applicationControl|12|Application control.| |attackSurfaceReductionRules|13|Attack surface reduction rules.| |accountProtection|14|Account protection.|-----
v1.0 Intune Partnerintegration Endpointsecurityconfigurationtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-partnerintegration-endpointsecurityconfigurationtype.md
Title: "endpointSecurityConfigurationType enum type" description: "The endpoint security policy type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
The endpoint security policy type.
|endpointDetectionAndResponse|4|Endpoint detection and response.| |attackSurfaceReduction|5|Attack surface reduction.| |accountProtection|6|Account protection.|-----
v1.0 Intune Partnerintegration Keyvaluepair https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-partnerintegration-keyvaluepair.md
Title: "keyValuePair resource type" description: "Key value pair for storing custom settings"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"value": "String" } ```----
v1.0 Intune Partnerintegration Securityconfigurationtask https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-partnerintegration-securityconfigurationtask.md
Title: "securityConfigurationTask resource type" description: "A security configuration task."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Inherits from [deviceAppManagementTask](../resources/intune-partnerintegration-d
|applicablePlatform|[endpointSecurityConfigurationApplicablePlatform](../resources/intune-partnerintegration-endpointsecurityconfigurationapplicableplatform.md)|The applicable platform. Possible values are: `unknown`, `macOS`, `windows10AndLater`, `windows10AndWindowsServer`.| |endpointSecurityPolicyProfile|[endpointSecurityConfigurationProfileType](../resources/intune-partnerintegration-endpointsecurityconfigurationprofiletype.md)|The endpoint security policy profile. Possible values are: `unknown`, `antivirus`, `windowsSecurity`, `bitLocker`, `fileVault`, `firewall`, `firewallRules`, `endpointDetectionAndResponse`, `deviceControl`, `appAndBrowserIsolation`, `exploitProtection`, `webProtection`, `applicationControl`, `attackSurfaceReductionRules`, `accountProtection`.| |insights|String|Information about the mitigation.|
-|managedDeviceCount|Int32|The number of vulnerable devices.|
-|intendedSettings|[keyValuePair](../resources/intune-shared-keyvaluepair.md) collection|The intended settings and their values.|
+|managedDeviceCount|Int32|The number of vulnerable devices. Valid values 0 to 65536|
+|intendedSettings|[keyValuePair](../resources/intune-partnerintegration-keyvaluepair.md) collection|The intended settings and their values.|
## Relationships |Relationship|Type|Description|
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Partnerintegration Unmanageddevice https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-partnerintegration-unmanageddevice.md
Title: "unmanagedDevice resource type" description: "Unmanaged device discovered in the network."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"lastSeenDateTime": "String (timestamp)" } ```-----
v1.0 Intune Partnerintegration Unmanageddevicediscoverytask https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-partnerintegration-unmanageddevicediscoverytask.md
Title: "unmanagedDeviceDiscoveryTask resource type" description: "This task derived type represents a list of unmanaged devices discovered in the network."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Partnerintegration Vulnerablemanageddevice https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-partnerintegration-vulnerablemanageddevice.md
Title: "vulnerableManagedDevice resource type" description: "This entity represents a device associated with a task."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"lastSyncDateTime": "String (timestamp)" } ```-----
v1.0 Intune Policyset Assignmentfilterevaluaterequest https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-policyset-assignmentfilterevaluaterequest.md
Title: "assignmentFilterEvaluateRequest resource type" description: "Request for assignment filter evaluation for devices."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"search": "String" } ```-----
v1.0 Intune Policyset Assignmentfilterevaluationresult https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-policyset-assignmentfilterevaluationresult.md
Title: "assignmentFilterEvaluationResult enum type" description: "Supported evaluation results for filter."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Supported evaluation results for filter.
|inconclusive|3|Inconclusive.| |failure|4|Failure.| |notEvaluated|5|NotEvaluated.|-----
v1.0 Intune Policyset Assignmentfilterevaluationsummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-policyset-assignmentfilterevaluationsummary.md
Title: "assignmentFilterEvaluationSummary resource type" description: "Represent result summary for assignment filter evaluation"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Policyset Assignmentfilteroperator https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-policyset-assignmentfilteroperator.md
Title: "assignmentFilterOperator enum type" description: "Represents the different type of operators which can be used to craft the AssignmentFilter rule."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Represents the different type of operators which can be used to craft the Assign
|notIn|8|NotIn.| |endsWith|9|EndsWith.| |notEndsWith|10|NotEndsWith.|-----
v1.0 Intune Policyset Assignmentfilterpayloadtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-policyset-assignmentfilterpayloadtype.md
Title: "assignmentFilterPayloadType enum type" description: "Represents the payload type AssignmentFilter is being assigned to."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Represents the payload type AssignmentFilter is being assigned to.
|:|:|:| |notSet|0|NotSet| |enrollmentRestrictions|1|EnrollmentRestrictions|-----
v1.0 Intune Policyset Assignmentfilterstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-policyset-assignmentfilterstate.md
Title: "assignmentFilterState resource type" description: "Represents result of GetState API."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"enabled": true } ```-----
v1.0 Intune Policyset Assignmentfilterstatusdetails https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-policyset-assignmentfilterstatusdetails.md
Title: "assignmentFilterStatusDetails resource type" description: "Represent status details for device and payload and all associated applied filters."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Represent status details for device and payload and all associated applied filte
|managedDeviceId|String|Unique identifier for the device object.| |payloadId|String|Unique identifier for payload object.| |userId|String|Unique identifier for UserId object. Can be null|
-|deviceProperties|[keyValuePair](../resources/intune-shared-keyvaluepair.md) collection|Device properties used for filter evaluation during device check-in time.|
+|deviceProperties|[keyValuePair](../resources/intune-policyset-keyvaluepair.md) collection|Device properties used for filter evaluation during device check-in time.|
|evalutionSummaries|[assignmentFilterEvaluationSummary](../resources/intune-policyset-assignmentfilterevaluationsummary.md) collection|Evaluation result summaries for each filter associated to device and payload| ## Relationships
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Policyset Assignmentfiltersupportedproperty https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-policyset-assignmentfiltersupportedproperty.md
Title: "assignmentFilterSupportedProperty resource type" description: "Represents the information about the property which is supported in crafting the rule of AssignmentFilter."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Policyset Assignmentfiltertypeandevaluationresult https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-policyset-assignmentfiltertypeandevaluationresult.md
Title: "assignmentFilterTypeAndEvaluationResult resource type" description: "Represents the filter type and evalaution result of the filter."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"evaluationResult": "String" } ```-----
v1.0 Intune Policyset Assignmentfiltervalidationresult https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-policyset-assignmentfiltervalidationresult.md
Title: "assignmentFilterValidationResult resource type" description: "Represents result of Validation API."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"isValidRule": true } ```-----
v1.0 Intune Policyset Associatedassignmentpayloadtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-policyset-associatedassignmentpayloadtype.md
Title: "associatedAssignmentPayloadType enum type" description: "This enum represents associated assignment payload type"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
This enum represents associated assignment payload type
|resourceAccessPolicy|23|Indicates that this filter is associated with a resource access policy (Wifi, VPN, Certificate) payload type| |win32app|24|Indicates that this filter is associated with a Win32 app payload type| |deviceManagmentConfigurationAndCompliancePolicy|29|Indicates that this filter is associated with a configuration or compliance policy on Device Configuration v2 Infrastructure payload type|-----
v1.0 Intune Policyset Deviceandappmanagementassignmentfilter https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-policyset-deviceandappmanagementassignmentfilter.md
Title: "deviceAndAppManagementAssignmentFilter resource type" description: "A class containing the properties used for Assignment Filter."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Policyset Devicecompliancepolicypolicysetitem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-policyset-devicecompliancepolicypolicysetitem.md
Title: "deviceCompliancePolicyPolicySetItem resource type" description: "A class containing the properties used for device compliance policy PolicySetItem."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Policyset Deviceconfigurationpolicysetitem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-policyset-deviceconfigurationpolicysetitem.md
Title: "deviceConfigurationPolicySetItem resource type" description: "A class containing the properties used for device configuration PolicySetItem."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Policyset Devicemanagementconfigurationpolicypolicysetitem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-policyset-devicemanagementconfigurationpolicypolicysetitem.md
Title: "deviceManagementConfigurationPolicyPolicySetItem resource type" description: "A class containing the properties used for DeviceManagementConfiguration PolicySetItem."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Policyset Devicemanagementscriptpolicysetitem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-policyset-devicemanagementscriptpolicysetitem.md
Title: "deviceManagementScriptPolicySetItem resource type" description: "A class containing the properties used for device management script PolicySetItem."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Policyset Deviceplatformtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-policyset-deviceplatformtype.md
Title: "devicePlatformType enum type" description: "Supported platform types."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Supported platform types.
|windows10AndLater|6|Windows 10 and later.| |androidWorkProfile|7|Android Work Profile.| |unknown|8|Unknown.|-----
v1.0 Intune Policyset Enrollmentrestrictionsconfigurationpolicysetitem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-policyset-enrollmentrestrictionsconfigurationpolicysetitem.md
Title: "enrollmentRestrictionsConfigurationPolicySetItem resource type" description: "A class containing the properties used for enrollment restriction PolicySetItem."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"limit": 1024 } ```-----
v1.0 Intune Policyset Errorcode https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-policyset-errorcode.md
Title: "errorCode enum type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Not yet documented
|unauthorized|1|The current user does not have access due to lack of RBAC permissions on the resource.| |notFound|2|The current user does not have access due to lack of RBAC Scope Tags on the resource.| |deleted|3|The resource has been deleted.|-----
v1.0 Intune Policyset Haspayloadlinkresultitem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-policyset-haspayloadlinkresultitem.md
Title: "hasPayloadLinkResultItem resource type" description: "A class containing the result of HasPayloadLinks action."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Policyset Ioslobappprovisioningconfigurationpolicysetitem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-policyset-ioslobappprovisioningconfigurationpolicysetitem.md
Title: "iosLobAppProvisioningConfigurationPolicySetItem resource type" description: "A class containing the properties used for iOS lob app provisioning configuration PolicySetItem."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Policyset Keyvaluepair https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-policyset-keyvaluepair.md
Title: "keyValuePair resource type" description: "Key value pair for storing custom settings"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"value": "String" } ```----
v1.0 Intune Policyset Macoslobappassignmentsettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-policyset-macoslobappassignmentsettings.md
Title: "macOsLobAppAssignmentSettings resource type" description: "Contains properties used to assign an Mac LOB app to a group."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"uninstallOnDeviceRemoval": true } ```-----
v1.0 Intune Policyset Managedappprotectionpolicysetitem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-policyset-managedappprotectionpolicysetitem.md
Title: "managedAppProtectionPolicySetItem resource type" description: "A class containing the properties used for managed app protection PolicySetItem."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"targetedAppManagementLevels": "String" } ```-----
v1.0 Intune Policyset Manageddevicemobileappconfigurationpolicysetitem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-policyset-manageddevicemobileappconfigurationpolicysetitem.md
Title: "managedDeviceMobileAppConfigurationPolicySetItem resource type" description: "A class containing the properties used for managed device mobile app configuration PolicySetItem."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Policyset Mdmwindowsinformationprotectionpolicypolicysetitem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-policyset-mdmwindowsinformationprotectionpolicypolicysetitem.md
Title: "mdmWindowsInformationProtectionPolicyPolicySetItem resource type" description: "A class containing the properties used for mdm windows information protection policy PolicySetItem."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Policyset Mobileapppolicysetitem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-policyset-mobileapppolicysetitem.md
Title: "mobileAppPolicySetItem resource type" description: "A class containing the properties used for mobile app PolicySetItem."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
], "intent": "String", "settings": {
- "@odata.type": "microsoft.graph.iosLobAppAssignmentSettings",
- "vpnConfigurationId": "String",
- "uninstallOnDeviceRemoval": true,
- "isRemovable": true
+ "@odata.type": "microsoft.graph.winGetAppAssignmentSettings",
+ "notifications": "String",
+ "restartSettings": {
+ "@odata.type": "microsoft.graph.winGetAppRestartSettings",
+ "gracePeriodInMinutes": 1024,
+ "countdownDisplayBeforeRestartInMinutes": 1024,
+ "restartNotificationSnoozeDurationInMinutes": 1024
+ },
+ "installTimeSettings": {
+ "@odata.type": "microsoft.graph.winGetAppInstallTimeSettings",
+ "useLocalTime": true,
+ "deadlineDateTime": "String (timestamp)"
+ }
} } ```-----
v1.0 Intune Policyset Payloadbyfilter https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-policyset-payloadbyfilter.md
Title: "payloadByFilter resource type" description: "This entity represents a single payload with requested assignment filter Id"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"assignmentFilterType": "String" } ```-----
v1.0 Intune Policyset Payloadcompatibleassignmentfilter https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-policyset-payloadcompatibleassignmentfilter.md
Title: "payloadCompatibleAssignmentFilter resource type" description: "A class containing the properties used for Payload Compatible Assignment Filter."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"payloadType": "String" } ```-----
v1.0 Intune Policyset Policyset https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-policyset-policyset.md
Title: "policySet resource type" description: "A class containing the properties used for PolicySet."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Policyset Policysetassignment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-policyset-policysetassignment.md
Title: "policySetAssignment resource type" description: "A class containing the properties used for PolicySet Assignment."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Policyset Policysetitem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-policyset-policysetitem.md
Title: "policySetItem resource type" description: "A class containing the properties used for PolicySet Item."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Policyset Policysetstatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-policyset-policysetstatus.md
Title: "policySetStatus enum type" description: "The enum to specify the status of PolicySet."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
The enum to specify the status of PolicySet.
|success|3|All PolicySet items are deployed. DoesnΓÇÖt mean that all deployment succeeded. | |error|4|PolicySet processing completely failed.| |notAssigned|5|PolicySet/PolicySetItem is not assigned to any group.|-----
v1.0 Intune Policyset Targetedmanagedappconfigurationpolicysetitem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-policyset-targetedmanagedappconfigurationpolicysetitem.md
Title: "targetedManagedAppConfigurationPolicySetItem resource type" description: "A class containing the properties used for Targeted managed app configuration PolicySetItem."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Policyset Windows10enrollmentcompletionpageconfigurationpolicysetitem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-policyset-windows10enrollmentcompletionpageconfigurationpolicysetitem.md
Title: "windows10EnrollmentCompletionPageConfigurationPolicySetItem resource type" description: "A class containing the properties used for Windows10EnrollmentCompletionPageConfiguration PolicySetItem."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"priority": 1024 } ```-----
v1.0 Intune Policyset Windowsautopilotdeploymentprofilepolicysetitem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-policyset-windowsautopilotdeploymentprofilepolicysetitem.md
Title: "windowsAutopilotDeploymentProfilePolicySetItem resource type" description: "A class containing the properties used for windows autopilot deployment profile PolicySetItem."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Raimportcerts Certificateconnectordetails https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-raimportcerts-certificateconnectordetails.md
Title: "certificateConnectorDetails resource type" description: "Entity used to retrieve information about Intune Certificate Connectors."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"connectorVersion": "String" } ```-----
v1.0 Intune Raimportcerts Certificateconnectorhealthmetricvalue https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-raimportcerts-certificateconnectorhealthmetricvalue.md
Title: "certificateConnectorHealthMetricValue resource type" description: "Metric snapshot value returned in response to a GetHealthMetricTimeSeries request."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"failureCount": 1024 } ```-----
v1.0 Intune Raimportcerts Onpremencryptedpayload https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-raimportcerts-onpremencryptedpayload.md
Title: "onPremEncryptedPayload resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"isDeleted": true } ```-----
v1.0 Intune Raimportcerts Pfxrecryptionrequest https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-raimportcerts-pfxrecryptionrequest.md
Title: "pfxRecryptionRequest resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"eTag": "String" } ```-----
v1.0 Intune Raimportcerts Pfxusercertificate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-raimportcerts-pfxusercertificate.md
Title: "pfxUserCertificate resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"eTag": "String" } ```-----
v1.0 Intune Raimportcerts Timeseriesparameter https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-raimportcerts-timeseriesparameter.md
Title: "timeSeriesParameter resource type" description: "Parameter passed to GetHealthMetricTimeSeries when requesting snapshot time series."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"endDateTime": "String (timestamp)" } ```-----
v1.0 Intune Raimportcerts Userpfxcertificate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-raimportcerts-userpfxcertificate.md
Title: "userPFXCertificate resource type" description: "Entity that encapsulates all information required for a user's PFX certificates."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"lastModifiedDateTime": "String (timestamp)" } ```-----
v1.0 Intune Raimportcerts Userpfxintendedpurpose https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-raimportcerts-userpfxintendedpurpose.md
Title: "userPfxIntendedPurpose enum type" description: "Supported values for the intended purpose of a user PFX certificate."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Supported values for the intended purpose of a user PFX certificate.
|smimeSigning|2|Valid for S/MIME signing.| |vpn|4|Valid for use in VPN.| |wifi|8|Valid for use in WiFi.|-----
v1.0 Intune Raimportcerts Userpfxpaddingscheme https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-raimportcerts-userpfxpaddingscheme.md
Title: "userPfxPaddingScheme enum type" description: "Supported values for the padding scheme used by encryption provider."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Supported values for the padding scheme used by encryption provider.
|oaepSha256|3|Use OAEP SHA-256 padding.| |oaepSha384|4|Use OAEP SHA-384 padding.| |oaepSha512|5|Use OAEP SHA-512 padding.|-----
v1.0 Intune Rapolicy Devicemanagementderivedcredentialissuer https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-rapolicy-devicemanagementderivedcredentialissuer.md
Title: "deviceManagementDerivedCredentialIssuer enum type" description: "Supported values for the derived credential issuer."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Supported values for the derived credential issuer.
|entrustDatacard|1|Entrust| |purebred|2|Purebred| |xTec|3|XTec|-----
v1.0 Intune Rapolicy Devicemanagementderivedcredentialnotificationtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-rapolicy-devicemanagementderivedcredentialnotificationtype.md
Title: "deviceManagementDerivedCredentialNotificationType enum type" description: "Supported values for the notification type to use."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Supported values for the notification type to use.
|none|0|None| |companyPortal|1|Company Portal| |email|2|Email|-----
v1.0 Intune Rapolicy Devicemanagementresourceaccessprofileassignment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-rapolicy-devicemanagementresourceaccessprofileassignment.md
Title: "deviceManagementResourceAccessProfileAssignment resource type" description: "Entity that describes tenant level settings for derived credentials"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"sourceId": "String" } ```-----
v1.0 Intune Rapolicy Devicemanagementresourceaccessprofilebase https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-rapolicy-devicemanagementresourceaccessprofilebase.md
Title: "deviceManagementResourceAccessProfileBase resource type" description: "Base Profile Type for Resource Access"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Rapolicy Devicemanagementresourceaccessprofileintent https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-rapolicy-devicemanagementresourceaccessprofileintent.md
Title: "deviceManagementResourceAccessProfileIntent enum type" description: "The administrator intent for the assignment of the profile."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
The administrator intent for the assignment of the profile.
|:|:|:| |apply|0|Apply the profile.| |remove|1|Remove the profile from devices that have installed the profile.|-----
v1.0 Intune Rapolicy Policyplatformtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-rapolicy-policyplatformtype.md
Title: "policyPlatformType enum type" description: "Supported platform types for policies."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Supported platform types for policies.
|windows10XProfile|8|Windows10XProfile.| |androidAOSP|9|AndroidAOSPProfile.| |all|100|All platforms.|-----
v1.0 Intune Rapolicy Windows10xcertificateprofile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-rapolicy-windows10xcertificateprofile.md
Title: "windows10XCertificateProfile resource type" description: "Base Profile Type for Authentication Certificates (SCEP or PFX Create)"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Rapolicy Windows10xcustomsubjectalternativename https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-rapolicy-windows10xcustomsubjectalternativename.md
Title: "windows10XCustomSubjectAlternativeName resource type" description: "Base Profile Type for Authentication Certificates (SCEP or PFX Create)"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"name": "String" } ```-----
v1.0 Intune Rapolicy Windows10xscepcertificateprofile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-rapolicy-windows10xscepcertificateprofile.md
Title: "windows10XSCEPCertificateProfile resource type" description: "Windows X SCEP Certificate configuration profile"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"subjectNameFormatString": "String" } ```-----
v1.0 Intune Rapolicy Windows10xtrustedrootcertificate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-rapolicy-windows10xtrustedrootcertificate.md
Title: "windows10XTrustedRootCertificate resource type" description: "Windows X Trusted Root Certificate configuration profile"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"destinationStore": "String" } ```-----
v1.0 Intune Rapolicy Windows10xvpnconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-rapolicy-windows10xvpnconfiguration.md
Title: "windows10XVpnConfiguration resource type" description: "Windows X VPN configuration profile"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"customXml": "binary" } ```-----
v1.0 Intune Rapolicy Windows10xwificonfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-rapolicy-windows10xwificonfiguration.md
Title: "windows10XWifiConfiguration resource type" description: "Windows X WifiXml configuration profile"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"customXml": "binary" } ```-----
v1.0 Intune Rbac Conceptual https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-rbac-conceptual.md
Title: "Role-based access control in Microsoft Intune" description: "Lists the Microsoft Graph API for Intune endpoints (REST) that define and manage role-based access control (RBAC) for a tenant organization." ms.localizationpriority: medium-+ ms.prod: "intune"
v1.0 Intune Rbac Deviceandappmanagementassignedroledetails https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-rbac-deviceandappmanagementassignedroledetails.md
Title: "deviceAndAppManagementAssignedRoleDetails resource type" description: "The set of Role Definitions and Role Assignments assigned to a user."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Rbac Deviceandappmanagementroleassignment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-rbac-deviceandappmanagementroleassignment.md
Title: "deviceAndAppManagementRoleAssignment resource type" description: "The Role Assignment resource. Role assignments tie together a role definition with members and scopes. There can be one or more role assignments per role. This applies to custom and built-in roles."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Rbac Deviceandappmanagementroledefinition https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-rbac-deviceandappmanagementroledefinition.md
Title: "deviceAndAppManagementRoleDefinition resource type" description: "The Role Definition resource. The role definition is the foundation of role based access in Intune. The role combines an Intune resource such as a Mobile App and associated role permissions such as Create or Read for the resource. There are two types of roles, built-in and custom. Built-in roles cannot be modified. Both built-in roles and custom roles must have assignments to be enforced. Create custom roles if you want to define a role that allows any of the available resources and role permissions to be combined into a single role."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Rbac Identity https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-rbac-identity.md
Title: "identity resource type" description: "The Identity"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"displayName": "String" } ```-----
v1.0 Intune Rbac Identityset https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-rbac-identityset.md
Title: "identitySet resource type" description: "The Identity Set"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Rbac Operationapprovalpolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-rbac-operationapprovalpolicy.md
Title: "operationApprovalPolicy resource type" description: "Operation Approval Policy"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Rbac Operationapprovalpolicyplatform https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-rbac-operationapprovalpolicyplatform.md
Title: "operationApprovalPolicyPlatform enum type" description: "The set of available platforms for the OperationApprovalPolicy"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
The set of available platforms for the OperationApprovalPolicy
|windows10AndLater|16|Windows 10 and later| |windows81AndLater|32|Windows 8.1 and later| |windows10X|64|Windows 10X|-----
v1.0 Intune Rbac Operationapprovalpolicyset https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-rbac-operationapprovalpolicyset.md
Title: "operationApprovalPolicySet resource type" description: "Contains the pair of OperationApprovalPolicyType and OperationApprovalPolicyPlatform determining the set of applicable OperationApprovalPolicies for a user"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"policyPlatform": "String" } ```-----
v1.0 Intune Rbac Operationapprovalpolicytype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-rbac-operationapprovalpolicytype.md
Title: "operationApprovalPolicyType enum type" description: "Operation Approval Policy Type"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Operation Approval Policy Type
|roles|18|Roles| |deviceResetPasscode|19|Device Reset Passcode Action| |unknownFutureValue|99|Placeholder for future Operation Approval Policy Types|-----
v1.0 Intune Rbac Operationapprovalrequest https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-rbac-operationapprovalrequest.md
Title: "operationApprovalRequest resource type" description: "The OperationApprovalRequest Entity"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"operationApprovalPolicies": "String" } ```-----
v1.0 Intune Rbac Operationapprovalrequestentitystatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-rbac-operationapprovalrequestentitystatus.md
Title: "operationApprovalRequestEntityStatus resource type" description: "The OperationApprovalRequestEntityStatus object"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"entityLocked": true } ```-----
v1.0 Intune Rbac Operationapprovalrequeststatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-rbac-operationapprovalrequeststatus.md
Title: "operationApprovalRequestStatus enum type" description: "Status of the current Approval Request"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Status of the current Approval Request
|completed|5|Approval request completed, requiring no further action.| |expired|6|Approval request has expired, a new approval must be made in order to complete this request.| |unknownFutureValue|99|Placeholder for future Operation Approval Request Statuses.|-----
v1.0 Intune Rbac Rbacapplicationmultiple https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-rbac-rbacapplicationmultiple.md
Title: "rbacApplicationMultiple resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"id": "String (identifier)" } ```-----
v1.0 Intune Rbac Resourceaction https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-rbac-resourceaction.md
Title: "resourceAction resource type" description: "Set of allowed and not allowed actions for a resource."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Rbac Resourceoperation https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-rbac-resourceoperation.md
Title: "resourceOperation resource type" description: "Describes the resourceOperation resource (entity) of the Microsoft Graph API (REST), which supports Intune workflows related to role-based access control (RBAC)."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"enabledForScopeValidation": true } ```-----
v1.0 Intune Rbac Roleassignment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-rbac-roleassignment.md
Title: "roleAssignment resource type" description: "The Role Assignment resource. Role assignments tie together a role definition with members and scopes. There can be one or more role assignments per role. This applies to custom and built-in roles."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Rbac Roleassignmentscopetype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-rbac-roleassignmentscopetype.md
Title: "roleAssignmentScopeType enum type" description: "Specifies the type of scope for a Role Assignment."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Specifies the type of scope for a Role Assignment.
|allDevices|1|Allow assignments to all Intune devices.| |allLicensedUsers|2|Allow assignments to all Intune licensed users.| |allDevicesAndLicensedUsers|3|Allow assignments to all Intune devices and licensed users.|-----
v1.0 Intune Rbac Roledefinition https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-rbac-roledefinition.md
Title: "roleDefinition resource type" description: "The Role Definition resource. The role definition is the foundation of role based access in Intune. The role combines an Intune resource such as a Mobile App and associated role permissions such as Create or Read for the resource. There are two types of roles, built-in and custom. Built-in roles cannot be modified. Both built-in roles and custom roles must have assignments to be enforced. Create custom roles if you want to define a role that allows any of the available resources and role permissions to be combined into a single role."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Rbac Rolemanagement https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-rbac-rolemanagement.md
Title: "roleManagement resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"id": "String (identifier)" } ```-----
v1.0 Intune Rbac Rolepermission https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-rbac-rolepermission.md
Title: "rolePermission resource type" description: "Contains the set of ResourceActions determining the allowed and not allowed permissions for each role."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Rbac Rolescopetag https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-rbac-rolescopetag.md
Title: "roleScopeTag resource type" description: "Role Scope Tag"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"isBuiltIn": true } ```-----
v1.0 Intune Rbac Rolescopetagautoassignment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-rbac-rolescopetagautoassignment.md
Title: "roleScopeTagAutoAssignment resource type" description: "Contains the properties for auto-assigning a Role Scope Tag to a group to be applied to Devices."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Remoteassistance Allowedremoteassistanceactions https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-remoteassistance-allowedremoteassistanceactions.md
Title: "allowedRemoteAssistanceActions enum type" description: "Flags enumeration indicating whether a helper can establish a "View screen", "Take full control", "Elevation" and "Unattended" remote assistance action with a device or sharer"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Flags enumeration indicating whether a helper can establish a "View screen", "Ta
|elevation|4|Helper can take full control of the sharer's device with elevated privileges| |unattended|8|Helper can take unattended control on sharer's device| |unknownFutureValue|16|unknownFutureValue - For making the Enum evolvable|-----
v1.0 Intune Remoteassistance Createremotehelpsessionresponse https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-remoteassistance-createremotehelpsessionresponse.md
Title: "createRemoteHelpSessionResponse resource type" description: "Remote help - response we provide back to the helper after successfully creating an ACS session"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"sessionType": "String" } ```-----
v1.0 Intune Remoteassistance Devicemanagementreports https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-remoteassistance-devicemanagementreports.md
Title: "deviceManagementReports resource type" description: "DeviceManagementReports class for Reporting V2"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"id": "String (identifier)" } ```-----
v1.0 Intune Remoteassistance Remoteassistanceonboardingstatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-remoteassistance-remoteassistanceonboardingstatus.md
Title: "remoteAssistanceOnboardingStatus enum type" description: "The current TeamViewer connector status"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
The current TeamViewer connector status
|notOnboarded|0|The status reported when there is no active TeamViewer connector configured or active| |onboarding|1|The status reported when the system has initiated a TeamViewer connection, but the service has not yet completed the confirmation of a connector| |onboarded|2|The status reported when the system has successfully exchanged account information with TeamViewer and can now initiate remote assistance sessions with clients|-----
v1.0 Intune Remoteassistance Remoteassistancepartner https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-remoteassistance-remoteassistancepartner.md
Title: "remoteAssistancePartner resource type" description: "RemoteAssistPartner resources represent the metadata and status of a given Remote Assistance partner service."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"onboardingRequestExpiryDateTime": "String (timestamp)" } ```-----
v1.0 Intune Remoteassistance Remoteassistancereporting https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-remoteassistance-remoteassistancereporting.md
Title: "remoteAssistanceReporting resource type" description: "RemoteAssistanceReporting resources represents the metadata of a given Remote Assistance reporting payload"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
RemoteAssistanceReporting resources represents the metadata of a given Remote As
|id|String|The unique identifier for a session and for each sessions's reporting payload| |startDateTime|DateTimeOffset|Start time for the session| |endDateTime|DateTimeOffset|End time for the session|
-|remoteAssistanceSessionType|[remoteAssistanceSessionType](../resources/intune-remoteassistance-remoteassistancesessiontype.md)|Type of the remote assistance session that was held. Possible values are: `viewOnly`, `fullControl`, `elevation`. Possible values are: `viewOnly`, `fullControl`, `elevation`.|
+|remoteAssistanceSessionType|[remoteAssistanceSessionType](../resources/intune-remoteassistance-remoteassistancesessiontype.md)|Type of the remote assistance session that was held. Possible values are: `viewOnly`, `fullControl`, `elevation`. Possible values are: `viewOnly`, `fullControl`, `elevation`, `unattended`.|
|helperEmail|String|Login email used by the helper to establish the session| |helperTenantId|String|Tenant id for the helper| |helperFirstName|String|Helper's first name|
RemoteAssistanceReporting resources represents the metadata of a given Remote As
|sharerDeviceName|String|Sharer's device name| |sharerOs|String|Sharer's operating system| |sharerEnrollmentState|[enrollmentState](../resources/intune-shared-enrollmentstate.md)|Intune enrollment state of the sharer's device. Possible values are: `unknown`, `enrolled`, `pendingReset`, `failed`, `notContacted`, `blocked`. Possible values are: `unknown`, `enrolled`, `pendingReset`, `failed`, `notContacted`, `blocked`.|
+|sharerDeviceSerialNumber|String|Sharer device serial number|
## Relationships None
Here is a JSON representation of the resource.
"sharerDeviceAadId": "String", "sharerDeviceName": "String", "sharerOs": "String",
- "sharerEnrollmentState": "String"
+ "sharerEnrollmentState": "String",
+ "sharerDeviceSerialNumber": "String"
} ```-----
v1.0 Intune Remoteassistance Remoteassistancesessiontype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-remoteassistance-remoteassistancesessiontype.md
Title: "remoteAssistanceSessionType enum type"
-description: "Type of the remote assist session that was held. Possible values are: `viewOnly`, `fullControl`"
-
+description: "Type of the remote assist session that was held. Possible values are: `viewOnly`, `fullControl`, `elevation`, `unattended`"
+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Namespace: microsoft.graph
> **Note:** The Microsoft Graph API for Intune requires an [active Intune license](https://go.microsoft.com/fwlink/?linkid=839381) for the tenant.
-Type of the remote assist session that was held. Possible values are: `viewOnly`, `fullControl`
+Type of the remote assist session that was held. Possible values are: `viewOnly`, `fullControl`, `elevation`, `unattended`
## Members |Member|Value|Description|
Type of the remote assist session that was held. Possible values are: `viewOnly`
|viewOnly|0|This status denotes a view only session between helper and sharer.| |fullControl|1|This status denotes a session where helper was able to take full control of the sharer's device.| |elevation|2|This status denotes a session where helper was able to take administrative actions on the sharer's device.|-----
+|unattended|3|This status denotes a session where helper was able to take actions in a device, without sharer user.|
v1.0 Intune Remoteassistance Remoteassistancesettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-remoteassistance-remoteassistancesettings.md
Title: "remoteAssistanceSettings resource type" description: "Remote assistance settings for the account"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"blockChat": true } ```-----
v1.0 Intune Remoteassistance Remoteassistancestate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-remoteassistance-remoteassistancestate.md
Title: "remoteAssistanceState enum type" description: "State of remote assistance for the account"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
State of remote assistance for the account
|:|:|:| |disabled|1|Remote assistance is disabled for the account. With this value, Quick Assist remote assistance sessions are not allowed for the account.| |enabled|2|Remote assistance is enabled for the account. With this value, enterprise Quick Assist remote assistance features are provided.|-----
v1.0 Intune Remoteassistance Requestremotehelpsessionaccessresponse https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-remoteassistance-requestremotehelpsessionaccessresponse.md
Title: "requestRemoteHelpSessionAccessResponse resource type" description: "Remote help - response we provide back to the helper after getting response from pubSub"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"pubSubEncryption": "String" } ```-----
v1.0 Intune Remoteassistance Retrieveremotehelpsessionresponse https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-remoteassistance-retrieveremotehelpsessionresponse.md
Title: "retrieveRemoteHelpSessionResponse resource type" description: "Remote help - response we provide back to the helper on retrieve session API call"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"sessionExpirationDateTime": "String (timestamp)" } ```-----
v1.0 Intune Reporting Devicemanagementcachedreportconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-reporting-devicemanagementcachedreportconfiguration.md
Title: "deviceManagementCachedReportConfiguration resource type" description: "Entity representing the configuration of a cached report"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"expirationDateTime": "String (timestamp)" } ```-----
v1.0 Intune Reporting Devicemanagementexportjob https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-reporting-devicemanagementexportjob.md
Title: "deviceManagementExportJob resource type" description: "Entity representing a job to export a report"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"expirationDateTime": "String (timestamp)" } ```-----
v1.0 Intune Reporting Devicemanagementexportjoblocalizationtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-reporting-devicemanagementexportjoblocalizationtype.md
Title: "deviceManagementExportJobLocalizationType enum type" description: "Configures how the requested export job is localized"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Configures how the requested export job is localized
|:|:|:| |localizedValuesAsAdditionalColumn|0|Configures the export job to expose localized values as an additional column| |replaceLocalizableValues|1|Configures the export job to replace enumerable values with their localized values|-----
v1.0 Intune Reporting Devicemanagementreportfileformat https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-reporting-devicemanagementreportfileformat.md
Title: "deviceManagementReportFileFormat enum type" description: "Possible values for the file format of a report"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for the file format of a report
|pdf|1|PDF Format (Deprecate later)| |json|2|JSON Format| |unknownFutureValue|3|Evolvable enumeration sentinel value. Do not use.|-----
v1.0 Intune Reporting Devicemanagementreports https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-reporting-devicemanagementreports.md
Title: "deviceManagementReports resource type" description: "Singleton entity that acts as a container for all reports functionality."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Singleton entity that acts as a container for all reports functionality.
|[Update deviceManagementReports](../api/intune-reporting-devicemanagementreports-update.md)|[deviceManagementReports](../resources/intune-reporting-devicemanagementreports.md)|Update the properties of a [deviceManagementReports](../resources/intune-reporting-devicemanagementreports.md) object.| |[getDeviceNonComplianceReport action](../api/intune-reporting-devicemanagementreports-getdevicenoncompliancereport.md)|Stream|Not yet documented| |[getNoncompliantDevicesAndSettingsReport action](../api/intune-reporting-devicemanagementreports-getnoncompliantdevicesandsettingsreport.md)|Stream|Not yet documented|
+|[getDevicesWithoutCompliancePolicyReport action](../api/intune-reporting-devicemanagementreports-getdeviceswithoutcompliancepolicyreport.md)|Stream|Not yet documented|
|[getPolicyNonComplianceReport action](../api/intune-reporting-devicemanagementreports-getpolicynoncompliancereport.md)|Stream|Not yet documented| |[getPolicyNonComplianceMetadata action](../api/intune-reporting-devicemanagementreports-getpolicynoncompliancemetadata.md)|Stream|Not yet documented| |[getPolicyNonComplianceSummaryReport action](../api/intune-reporting-devicemanagementreports-getpolicynoncompliancesummaryreport.md)|Stream|Not yet documented|
Here is a JSON representation of the resource.
"id": "String (identifier)" } ```-----
v1.0 Intune Reporting Devicemanagementreportschedule https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-reporting-devicemanagementreportschedule.md
Title: "deviceManagementReportSchedule resource type" description: "Entity representing a schedule for which reports are delivered"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"format": "String" } ```---
v1.0 Intune Reporting Devicemanagementreportstatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-reporting-devicemanagementreportstatus.md
Title: "deviceManagementReportStatus enum type" description: "Possible statuses associated with a generated report"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible statuses associated with a generated report
|inProgress|2|Report generation is in progress| |completed|3|Report generation is completed| |failed|4|Report generation has failed|-----
v1.0 Intune Reporting Devicemanagementscheduledreportrecurrence https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-reporting-devicemanagementscheduledreportrecurrence.md
Title: "deviceManagementScheduledReportRecurrence enum type" description: "Possible values for the recurrence of a scheduled report"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for the recurrence of a scheduled report
|daily|1|Daily| |weekly|2|Weekly| |monthly|3|Monthly|---
v1.0 Intune Resaccess Conceptual https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-resaccess-conceptual.md
Title: "Manage resource access certificates in Intune - Microsoft Graph API" description: "Lists the Microsoft Graph API for Intune endpoints (REST) that manage resource access certificates for a tenant organization."-+ ms.localizationpriority: medium ms.prod: "intune"
Namespace: microsoft.graph
You can import PFX certificates using Microsoft Graph API for Intune. Use Graph resources to manage certificates in Intune. See the table of content for a list of resources.-
v1.0 Intune Shared Actionstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-actionstate.md
Title: "actionState enum type" description: "State of the action on the device"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
State of the action on the device
|done|4|Action completed without errors.| |failed|5|Action failed| |notSupported|6|Action is not supported.|-----
v1.0 Intune Shared Alldevicesassignmenttarget https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-alldevicesassignmenttarget.md
Title: "allDevicesAssignmentTarget resource type" description: "Represents an assignment to all managed devices in the tenant."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"deviceAndAppManagementAssignmentFilterType": "String" } ```-----
v1.0 Intune Shared Alllicensedusersassignmenttarget https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-alllicensedusersassignmenttarget.md
Title: "allLicensedUsersAssignmentTarget resource type" description: "Represents an assignment to all licensed users in the tenant."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"deviceAndAppManagementAssignmentFilterType": "String" } ```-----
v1.0 Intune Shared Androidenterprisealwaysonvpnpackagetype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-androidenterprisealwaysonvpnpackagetype.md
Title: "androidEnterpriseAlwaysOnVpnPackageType enum type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Not yet documented
|f5Access|3|F5 Access.| |paloAltoNetworksGlobalProtect|4|Palo Alto Networks GlobalProtect.| |pulseSecure|5|Pulse Secure.|-----
v1.0 Intune Shared Androidmanagedappprotection https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-androidmanagedappprotection.md
Title: "androidManagedAppProtection resource type" description: "Policy used to configure detailed management settings targeted to specific security groups and for a specified set of apps on an Android device"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"minimumWipeCompanyPortalVersion": "String" } ```-----
v1.0 Intune Shared Androidmanagedstoreappassignmentsettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-androidmanagedstoreappassignmentsettings.md
Title: "androidManagedStoreAppAssignmentSettings resource type" description: "Contains properties used to assign an Android Managed Store mobile app to a group."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"autoUpdateMode": "String" } ```-----
v1.0 Intune Shared Androidmanagedstoreautoupdatemode https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-androidmanagedstoreautoupdatemode.md
Title: "androidManagedStoreAutoUpdateMode enum type" description: "Prioritization for automatic updates of Android Managed Store apps set on assignment."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Prioritization for automatic updates of Android Managed Store apps set on assign
|postponed|1|Updates are postponed for a maximum of 90 days after the app becomes out of date.| |priority|2|The app is updated as soon as possible by the developer. If device is online, it will be updated within minutes.| |unknownFutureValue|3|Unknown future mode (reserved, not used right now).|-----
v1.0 Intune Shared Certificatedestinationstore https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-certificatedestinationstore.md
Title: "certificateDestinationStore enum type" description: "Possible values for the Certificate Destination Store."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for the Certificate Destination Store.
|computerCertStoreRoot|0|Computer Certificate Store - Root.| |computerCertStoreIntermediate|1|Computer Certificate Store - Intermediate.| |userCertStoreIntermediate|2|User Certificate Store - Intermediate.|-----
v1.0 Intune Shared Certificatestore https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-certificatestore.md
Title: "certificateStore enum type" description: "CertificateStore types"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
CertificateStore types
|:|:|:| |user|1|Not yet documented| |machine|2|Not yet documented|-----
v1.0 Intune Shared Certificatevalidityperiodscale https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-certificatevalidityperiodscale.md
Title: "certificateValidityPeriodScale enum type" description: "Certificate Validity Period Options."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Certificate Validity Period Options.
|days|0|Days.| |months|1|Months.| |years|2|Years.|-----
v1.0 Intune Shared Companyportalaction https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-companyportalaction.md
Title: "companyPortalAction enum type" description: "Action on a device that can be executed in the Company Portal"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Action on a device that can be executed in the Company Portal
|unknown|0|Unknown device action| |remove|1|Remove device from Company Portal| |reset|2|Reset device enrolled in Company Portal|-----
v1.0 Intune Shared Companyportalblockedaction https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-companyportalblockedaction.md
Title: "companyPortalBlockedAction resource type" description: "Blocked actions on the company portal as per platform and device ownership types"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"action": "String" } ```-----
v1.0 Intune Shared Compliancestatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-compliancestatus.md
Title: "complianceStatus enum type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Not yet documented
|error|5|Not yet documented| |conflict|6|Not yet documented| |notAssigned|7|Not yet documented|-----
v1.0 Intune Shared Conceptual https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-conceptual.md
Title: "Shared resources in Microsoft Intune - Microsoft Graph API" description: "Lists the Microsoft Graph API for Intune endpoints (REST) that support multiple workflows for a tenant organization." ms.localizationpriority: medium-+ ms.prod: "intune"
v1.0 Intune Shared Configurationmanagercollectionassignmenttarget https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-configurationmanagercollectionassignmenttarget.md
Title: "configurationManagerCollectionAssignmentTarget resource type" description: "Represents an assignment to a Configuration Manager Collection."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"collectionId": "String" } ```-----
v1.0 Intune Shared Deviceandappmanagementassignmentfiltertype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-deviceandappmanagementassignmentfiltertype.md
Title: "deviceAndAppManagementAssignmentFilterType enum type" description: "Represents type of the assignment filter."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Represents type of the assignment filter.
|none|0|Default value. Do not use.| |include|1|Indicates in-filter, rule matching will offer the payload to devices.| |exclude|2|Indicates out-filter, rule matching will not offer the payload to devices.|-----
v1.0 Intune Shared Deviceandappmanagementassignmentsource https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-deviceandappmanagementassignmentsource.md
Title: "deviceAndAppManagementAssignmentSource enum type" description: "Represents source of assignment."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Represents source of assignment.
|:|:|:| |direct|0|Direct indicates a direct assignment.| |policySets|1|PolicySets indicates assignment was made via PolicySet assignment.|-----
v1.0 Intune Shared Deviceandappmanagementassignmenttarget https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-deviceandappmanagementassignmenttarget.md
Title: "deviceAndAppManagementAssignmentTarget resource type" description: "Base type for assignment targets."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"deviceAndAppManagementAssignmentFilterType": "String" } ```-----
v1.0 Intune Shared Deviceappmanagement https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-deviceappmanagement.md
Title: "deviceAppManagement resource type" description: "Singleton entity that acts as a container for all device app management functionality."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource. Note that this is only an exampl
"microsoftStoreForBusinessLastCompletedApplicationSyncTime": "String (timestamp)" } ```----
v1.0 Intune Shared Devicecategory https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-devicecategory.md
Title: "deviceCategory resource type" description: "These categories can then be applied to a device in the Intune Azure console or selected by a user during device enrollment. You can filter reports and create dynamic Azure Active Directory device groups based on device categories."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"description": "String" } ```----
v1.0 Intune Shared Devicecompliancepolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-devicecompliancepolicy.md
Title: "deviceCompliancePolicy resource type" description: "This is the base class for Compliance policy. Compliance policies are platform specific and individual per-platform compliance policies inherit from here. "-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"version": 1024 } ```-----
v1.0 Intune Shared Deviceconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-deviceconfiguration.md
Title: "deviceConfiguration resource type" description: "Device Configuration."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"version": 1024 } ```-----
v1.0 Intune Shared Deviceenrollmentconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-deviceenrollmentconfiguration.md
Title: "deviceEnrollmentConfiguration resource type" description: "The Base Class of Device Enrollment Configuration"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"version": 1024 } ```-----
v1.0 Intune Shared Devicemanagement https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-devicemanagement.md
Title: "deviceManagement resource type" description: "The deviceManagement resource represents a container whose contents vary according to workflow, including: " localization_priority: Normal-+ ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"subscriptionState": "String" } ```----
v1.0 Intune Shared Devicemanagementconfigurationazureadtrusttype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-devicemanagementconfigurationazureadtrusttype.md
Title: "deviceManagementConfigurationAzureAdTrustType enum type" description: "Required AAD Trust Type"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Required AAD Trust Type
|azureAdJoined|1|AAD Joined Trust Type| |addWorkAccount|2|AddWorkAccount| |mdmOnly|4|MDM only|----
v1.0 Intune Shared Devicemanagementconfigurationchoicesettingcollectioninstance https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-devicemanagementconfigurationchoicesettingcollectioninstance.md
Title: "deviceManagementConfigurationChoiceSettingCollectionInstance resource type" description: "Setting instance within policy"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```----
v1.0 Intune Shared Devicemanagementconfigurationchoicesettinginstance https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-devicemanagementconfigurationchoicesettinginstance.md
Title: "deviceManagementConfigurationChoiceSettingInstance resource type" description: "Setting instance within policy"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```----
v1.0 Intune Shared Devicemanagementconfigurationchoicesettingvalue https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-devicemanagementconfigurationchoicesettingvalue.md
Title: "deviceManagementConfigurationChoiceSettingValue resource type" description: "Setting value"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```----
v1.0 Intune Shared Devicemanagementconfigurationcontroltype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-devicemanagementconfigurationcontroltype.md
Title: "deviceManagementConfigurationControlType enum type" description: "Setting control type representation in the UX"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Setting control type representation in the UX
|toggle|4|Allow for toggle control type| |multiheaderGrid|5|Allow for multiheader grid control type| |contextPane|6|Allow for context pane control type|----
v1.0 Intune Shared Devicemanagementconfigurationdependenton https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-devicemanagementconfigurationdependenton.md
Title: "deviceManagementConfigurationDependentOn resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"parentSettingId": "String" } ```----
v1.0 Intune Shared Devicemanagementconfigurationdevicemode https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-devicemanagementconfigurationdevicemode.md
Title: "deviceManagementConfigurationDeviceMode enum type" description: "Describes applicability for the mode the device is in"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Describes applicability for the mode the device is in
|:|:|:| |none|0|No Device Mode specified| |kiosk|1|Device must be in kiosk mode for this setting to apply|----
v1.0 Intune Shared Devicemanagementconfigurationgroupsettingcollectioninstance https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-devicemanagementconfigurationgroupsettingcollectioninstance.md
Title: "deviceManagementConfigurationGroupSettingCollectionInstance resource type" description: "Instance of a GroupSettingCollection"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```----
v1.0 Intune Shared Devicemanagementconfigurationgroupsettinginstance https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-devicemanagementconfigurationgroupsettinginstance.md
Title: "deviceManagementConfigurationGroupSettingInstance resource type" description: "Instance of a GroupSetting"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```----
v1.0 Intune Shared Devicemanagementconfigurationgroupsettingvalue https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-devicemanagementconfigurationgroupsettingvalue.md
Title: "deviceManagementConfigurationGroupSettingValue resource type" description: "Value of the GroupSetting"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```----
v1.0 Intune Shared Devicemanagementconfigurationintegersettingvalue https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-devicemanagementconfigurationintegersettingvalue.md
Title: "deviceManagementConfigurationIntegerSettingValue resource type" description: "Simple setting value"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"value": 1024 } ```----
v1.0 Intune Shared Devicemanagementconfigurationintegersettingvaluedefinition https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-devicemanagementconfigurationintegersettingvaluedefinition.md
Title: "deviceManagementConfigurationIntegerSettingValueDefinition resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"minimumValue": 1024 } ```----
v1.0 Intune Shared Devicemanagementconfigurationoptiondefinition https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-devicemanagementconfigurationoptiondefinition.md
Title: "deviceManagementConfigurationOptionDefinition resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"displayName": "String" } ```----
v1.0 Intune Shared Devicemanagementconfigurationplatforms https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-devicemanagementconfigurationplatforms.md
Title: "deviceManagementConfigurationPlatforms enum type" description: "Supported platform types."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Supported platform types.
|windows10|32|Windows 10.| |linux|128|Linux.| |unknownFutureValue|1073741824|Sentinel member for cases where the client cannot handle the new enum values.|----
v1.0 Intune Shared Devicemanagementconfigurationreferencesettingvalue https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-devicemanagementconfigurationreferencesettingvalue.md
Title: "deviceManagementConfigurationReferenceSettingValue resource type" description: "Model for ReferenceSettingValue"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"note": "String" } ```----
v1.0 Intune Shared Devicemanagementconfigurationreferredsettinginformation https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-devicemanagementconfigurationreferredsettinginformation.md
Title: "deviceManagementConfigurationReferredSettingInformation resource type" description: "Referred setting information about reusable setting"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"settingDefinitionId": "String" } ```----
v1.0 Intune Shared Devicemanagementconfigurationsecretsettingvalue https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-devicemanagementconfigurationsecretsettingvalue.md
Title: "deviceManagementConfigurationSecretSettingValue resource type" description: "Graph model for a secret setting value"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"valueState": "String" } ```----
v1.0 Intune Shared Devicemanagementconfigurationsecretsettingvaluestate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-devicemanagementconfigurationsecretsettingvaluestate.md
Title: "deviceManagementConfigurationSecretSettingValueState enum type" description: "type tracking the encryption state of a secret setting value"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
type tracking the encryption state of a secret setting value
|invalid|0|default invalid value| |notEncrypted|1|secret value is not encrypted| |encryptedValueToken|2|a token for the encrypted value is returned by the service|----
v1.0 Intune Shared Devicemanagementconfigurationsettingaccesstypes https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-devicemanagementconfigurationsettingaccesstypes.md
Title: "deviceManagementConfigurationSettingAccessTypes enum type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Not yet documented
|get|8|Not yet documented| |replace|16|Not yet documented| |execute|32|Not yet documented|----
v1.0 Intune Shared Devicemanagementconfigurationsettingdependedonby https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-devicemanagementconfigurationsettingdependedonby.md
Title: "deviceManagementConfigurationSettingDependedOnBy resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"required": true } ```----
v1.0 Intune Shared Devicemanagementconfigurationsettinggroupcollectioninstance https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-devicemanagementconfigurationsettinggroupcollectioninstance.md
Title: "deviceManagementConfigurationSettingGroupCollectionInstance resource type" description: "Setting instance within policy"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```----
v1.0 Intune Shared Devicemanagementconfigurationsettinggroupinstance https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-devicemanagementconfigurationsettinggroupinstance.md
Title: "deviceManagementConfigurationSettingGroupInstance resource type" description: "Setting instance within policy"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```----
v1.0 Intune Shared Devicemanagementconfigurationsettinginstance https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-devicemanagementconfigurationsettinginstance.md
Title: "deviceManagementConfigurationSettingInstance resource type" description: "Setting instance within policy"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```----
v1.0 Intune Shared Devicemanagementconfigurationsettinginstancetemplatereference https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-devicemanagementconfigurationsettinginstancetemplatereference.md
Title: "deviceManagementConfigurationSettingInstanceTemplateReference resource type" description: "Setting instance template reference information"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"settingInstanceTemplateId": "String" } ```----
v1.0 Intune Shared Devicemanagementconfigurationsettingoccurrence https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-devicemanagementconfigurationsettingoccurrence.md
Title: "deviceManagementConfigurationSettingOccurrence resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"maxDeviceOccurrence": 1024 } ```----
v1.0 Intune Shared Devicemanagementconfigurationsettingusage https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-devicemanagementconfigurationsettingusage.md
Title: "deviceManagementConfigurationSettingUsage enum type" description: "Supported setting types"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Supported setting types
|none|0|No setting type specified| |configuration|1|Configuration setting| |compliance|2|Compliance setting|----
v1.0 Intune Shared Devicemanagementconfigurationsettingvalue https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-devicemanagementconfigurationsettingvalue.md
Title: "deviceManagementConfigurationSettingValue resource type" description: "Setting value"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```----
v1.0 Intune Shared Devicemanagementconfigurationsettingvaluedefinition https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-devicemanagementconfigurationsettingvaluedefinition.md
Title: "deviceManagementConfigurationSettingValueDefinition resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"@odata.type": "#microsoft.graph.deviceManagementConfigurationSettingValueDefinition" } ```----
v1.0 Intune Shared Devicemanagementconfigurationsettingvaluetemplatereference https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-devicemanagementconfigurationsettingvaluetemplatereference.md
Title: "deviceManagementConfigurationSettingValueTemplateReference resource type" description: "Setting value template reference information"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"useTemplateDefault": true } ```----
v1.0 Intune Shared Devicemanagementconfigurationsettingvisibility https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-devicemanagementconfigurationsettingvisibility.md
Title: "deviceManagementConfigurationSettingVisibility enum type" description: "Supported setting types"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Supported setting types
|none|0|Not visible| |settingsCatalog|1|Visible to setting catalog UX| |template|2|Visible to template|----
v1.0 Intune Shared Devicemanagementconfigurationsimplesettingcollectioninstance https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-devicemanagementconfigurationsimplesettingcollectioninstance.md
Title: "deviceManagementConfigurationSimpleSettingCollectionInstance resource type" description: "Simple setting collection instance"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```----
v1.0 Intune Shared Devicemanagementconfigurationsimplesettinginstance https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-devicemanagementconfigurationsimplesettinginstance.md
Title: "deviceManagementConfigurationSimpleSettingInstance resource type" description: "Simple setting instance"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```----
v1.0 Intune Shared Devicemanagementconfigurationsimplesettingvalue https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-devicemanagementconfigurationsimplesettingvalue.md
Title: "deviceManagementConfigurationSimpleSettingValue resource type" description: "Simple setting value"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```----
v1.0 Intune Shared Devicemanagementconfigurationstringformat https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-devicemanagementconfigurationstringformat.md
Title: "deviceManagementConfigurationStringFormat enum type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Not yet documented
|json|12|Not yet documented| |dateTime|13|Not yet documented| |surfaceHub|14|Not yet documented|----
v1.0 Intune Shared Devicemanagementconfigurationstringsettingvalue https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-devicemanagementconfigurationstringsettingvalue.md
Title: "deviceManagementConfigurationStringSettingValue resource type" description: "Simple setting value"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"value": "String" } ```----
v1.0 Intune Shared Devicemanagementconfigurationwindowsskus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-devicemanagementconfigurationwindowsskus.md
Title: "deviceManagementConfigurationWindowsSkus enum type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Not yet documented
|holographicForBusiness|12|Not yet documented| |windowsMultiSession|13|Not yet documented| |surfaceHub|14|Not yet documented|----
v1.0 Intune Shared Devicemanagementderivedcredentialsettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-devicemanagementderivedcredentialsettings.md
Title: "deviceManagementDerivedCredentialSettings resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"id": "String (identifier)" } ```-----
v1.0 Intune Shared Devicemanagementscript https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-devicemanagementscript.md
Title: "deviceManagementScript resource type" description: "Intune will provide customer the ability to run their Powershell scripts on the enrolled windows 10 Azure Active Directory joined devices. The script can be run once or periodically."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"runAs32Bit": true } ```-----
v1.0 Intune Shared Devicetype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-devicetype.md
Title: "deviceType enum type" description: "Device type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Device type.
|palm|101|Palm.| |unknown|255|Represents that the device type is unknown.| |cloudPC|257|Cloud PC device.|-----
v1.0 Intune Shared Enablement https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-enablement.md
Title: "enablement enum type" description: "Possible values of a property"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values of a property
|notConfigured|0|Device default value, no intent.| |enabled|1|Enables the setting on the device.| |disabled|2|Disables the setting on the device.|-----
v1.0 Intune Shared Enrollmentavailabilityoptions https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-enrollmentavailabilityoptions.md
Title: "enrollmentAvailabilityOptions enum type" description: "Options available for enrollment flow customization"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Options available for enrollment flow customization
|availableWithPrompts|0|Device enrollment flow is shown to the end user with guided enrollment prompts| |availableWithoutPrompts|1|Device enrollment flow is available to the end user without guided enrollment prompts| |unavailable|2|Device enrollment flow is unavailable to the enduser|-----
v1.0 Intune Shared Enrollmentstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-enrollmentstate.md
Title: "enrollmentState enum type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Not yet documented
|failed|3|Not enrolled and there is enrollment failure record.| |notContacted|4|Device is imported but not enrolled.| |blocked|5|Device is enrolled as userless, but is blocked from moving to user enrollment because the app failed to install.|-----
v1.0 Intune Shared Exclusiongroupassignmenttarget https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-exclusiongroupassignmenttarget.md
Title: "exclusionGroupAssignmentTarget resource type" description: "Represents a group that should be excluded from an assignment."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"groupId": "String" } ```-----
v1.0 Intune Shared Extendedkeyusage https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-extendedkeyusage.md
Title: "extendedKeyUsage resource type" description: "Custom Extended Key Usage definition"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"objectIdentifier": "String" } ```-----
v1.0 Intune Shared Groupassignmenttarget https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-groupassignmenttarget.md
Title: "groupAssignmentTarget resource type" description: "Represents an assignment to a group."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"groupId": "String" } ```-----
v1.0 Intune Shared Hashalgorithms https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-hashalgorithms.md
Title: "hashAlgorithms enum type" description: "Hash Algorithm Options."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Hash Algorithm Options.
|:|:|:| |sha1|1|SHA-1 Hash Algorithm.| |sha2|2|SHA-2 Hash Algorithm.|-----
v1.0 Intune Shared Installintent https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-installintent.md
Title: "installIntent enum type" description: "Possible values for the install intent chosen by the admin."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for the install intent chosen by the admin.
|required|1|Required install intent.| |uninstall|2|Uninstall install intent.| |availableWithoutEnrollment|3|Available without enrollment install intent.|-----
v1.0 Intune Shared Ioslobappassignmentsettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-ioslobappassignmentsettings.md
Title: "iosLobAppAssignmentSettings resource type" description: "Contains properties used to assign an iOS LOB mobile app to a group."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"uninstallOnDeviceRemoval": true } ```-----
v1.0 Intune Shared Ioslobappprovisioningconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-ioslobappprovisioningconfiguration.md
Title: "iosLobAppProvisioningConfiguration resource type" description: "This topic provides descriptions of the declared methods, properties and relationships exposed by the iOS Lob App Provisioning Configuration resource."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"version": 1024 } ```-----
v1.0 Intune Shared Iosmanagedappprotection https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-iosmanagedappprotection.md
Title: "iosManagedAppProtection resource type" description: "Policy used to configure detailed management settings targeted to specific security groups and for a specified set of apps on an iOS device"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"customBrowserProtocol": "String" } ```-----
v1.0 Intune Shared Iosstoreappassignmentsettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-iosstoreappassignmentsettings.md
Title: "iosStoreAppAssignmentSettings resource type" description: "Contains properties used to assign an iOS Store mobile app to a group."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"uninstallOnDeviceRemoval": true } ```-----
v1.0 Intune Shared Iosvppappassignmentsettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-iosvppappassignmentsettings.md
Title: "iosVppAppAssignmentSettings resource type" description: "Contains properties used to assign an iOS VPP mobile app to a group."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"uninstallOnDeviceRemoval": true } ```-----
v1.0 Intune Shared Iprange https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-iprange.md
Title: "ipRange resource type" description: "IP range base class for representing IPV4, IPV6 address ranges"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"@odata.type": "#microsoft.graph.ipRange" } ```-----
v1.0 Intune Shared Ipv4range https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-ipv4range.md
Title: "iPv4Range resource type" description: "IPv4 Range definition."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"upperAddress": "String" } ```-----
v1.0 Intune Shared Ipv6range https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-ipv6range.md
Title: "iPv6Range resource type" description: "IPv6 Range definition."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"upperAddress": "String" } ```-----
v1.0 Intune Shared Keylongvaluepair https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-keylongvaluepair.md
Title: "keyLongValuePair resource type" description: "Key long value pair"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"value": 1024 } ```-----
v1.0 Intune Shared Keysize https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-keysize.md
Title: "keySize enum type" description: "Key Size Options."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Key Size Options.
|size1024|0|1024 Bits.| |size2048|1|2048 Bits.| |size4096|2|4096 Bits.|-----
v1.0 Intune Shared Keystorageprovideroption https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-keystorageprovideroption.md
Title: "keyStorageProviderOption enum type" description: "Key Storage Provider (KSP) Import Options."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Key Storage Provider (KSP) Import Options.
|useTpmKspOtherwiseFail|1|Import to Trusted Platform Module (TPM) KSP if present, otherwise fail.| |usePassportForWorkKspOtherwiseFail|2|Import to Passport for work KSP if available, otherwise fail.| |useSoftwareKsp|3|Import to Software KSP.|-----
v1.0 Intune Shared Keyusages https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-keyusages.md
Title: "keyUsages enum type" description: "Key Usage Options."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Key Usage Options.
|:|:|:| |keyEncipherment|1|Key Encipherment Usage.| |digitalSignature|2|Digital Signature Usage.|-----
v1.0 Intune Shared Keyvaluepair https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-keyvaluepair.md
Title: "keyValuePair resource type" description: "Key value pair for storing custom settings"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"value": "String" } ```-----
v1.0 Intune Shared Macoslobappassignmentsettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-macoslobappassignmentsettings.md
Title: "macOsLobAppAssignmentSettings resource type"
-description: "Contains properties used to assign an Mac LOB app to a group."
-
+description: "Contains properties used to assign a macOS LOB app to a group."
+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Namespace: microsoft.graph
> **Note:** The Microsoft Graph API for Intune requires an [active Intune license](https://go.microsoft.com/fwlink/?linkid=839381) for the tenant.
-Contains properties used to assign an Mac LOB app to a group.
+Contains properties used to assign a macOS LOB app to a group.
Inherits from [mobileAppAssignmentSettings](../resources/intune-shared-mobileappassignmentsettings.md)
Inherits from [mobileAppAssignmentSettings](../resources/intune-shared-mobileapp
## Properties |Property|Type|Description| |:|:|:|
-|uninstallOnDeviceRemoval|Boolean|Whether or not to uninstall the app when device is removed from Intune.|
+|uninstallOnDeviceRemoval|Boolean|When TRUE, indicates that the app should be uninstalled when the device is removed from Intune. When FALSE, indicates that the app will not be uninstalled when the device is removed from Intune.|
## Relationships None
Here is a JSON representation of the resource.
"uninstallOnDeviceRemoval": true } ```-----
v1.0 Intune Shared Macosvppappassignmentsettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-macosvppappassignmentsettings.md
Title: "macOsVppAppAssignmentSettings resource type" description: "Contains properties used to assign an Mac VPP mobile app to a group."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"uninstallOnDeviceRemoval": true } ```-----
v1.0 Intune Shared Manageddeviceownertype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-manageddeviceownertype.md
Title: "managedDeviceOwnerType enum type" description: "Owner type of device."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Owner type of device.
|unknown|0|Unknown.| |company|1|Owned by company.| |personal|2|Owned by person.|-----
v1.0 Intune Shared Managementagenttype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-managementagenttype.md
Title: "managementAgentType enum type" description: "Management agent type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Management agent type.
|microsoft365ManagedMdm|258|This device is managed by Microsoft 365 through Intune.| |msSense|1024|Not yet documented| |intuneAosp|2048|This device is managed by Intune's MDM for AOSP (Android Open Source Project) devices|-----
v1.0 Intune Shared Mdmwindowsinformationprotectionpolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-mdmwindowsinformationprotectionpolicy.md
Title: "mdmWindowsInformationProtectionPolicy resource type" description: "Policy for Windows information protection with MDM"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"isAssigned": true } ```-----
v1.0 Intune Shared Microsoftstoreforbusinessappassignmentsettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-microsoftstoreforbusinessappassignmentsettings.md
Title: "microsoftStoreForBusinessAppAssignmentSettings resource type" description: "Contains properties used to assign an Microsoft Store for Business mobile app to a group."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"useDeviceContext": true } ```-----
v1.0 Intune Shared Mimecontent https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-mimecontent.md
Title: "mimeContent resource type" description: "Contains properties for a generic mime content."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"value": "binary" } ```-----
v1.0 Intune Shared Mobileapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-mobileapp.md
Title: "mobileApp resource type" description: "An abstract class containing the base properties for Intune mobile apps."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"dependentAppCount": 1024 } ```-----
v1.0 Intune Shared Mobileappassignmentsettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-mobileappassignmentsettings.md
Title: "mobileAppAssignmentSettings resource type" description: "Abstract class to contain properties used to assign a mobile app to a group."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"@odata.type": "#microsoft.graph.mobileAppAssignmentSettings" } ```-----
v1.0 Intune Shared Mobileappinstalltimesettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-mobileappinstalltimesettings.md
Title: "mobileAppInstallTimeSettings resource type" description: "Contains properties used to determine when to offer an app to devices and when to install the app on devices."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"deadlineDateTime": "String (timestamp)" } ```-----
v1.0 Intune Shared Mobileapptroubleshootingevent https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-mobileapptroubleshootingevent.md
Title: "mobileAppTroubleshootingEvent resource type" description: "Describes the mobileAppTroubleshootingEvent resource of the Microsoft Graph API for Intune, which supports multiple workflows." localization_priority: Normal-+ ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```------
v1.0 Intune Shared Ownertype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-ownertype.md
Title: "ownerType enum type" description: "Owner type of device."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Owner type of device.
|unknown|0|Unknown.| |company|1|Owned by company.| |personal|2|Owned by person.|-----
v1.0 Intune Shared Proxieddomain https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-proxieddomain.md
Title: "proxiedDomain resource type" description: "Proxied Domain"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"proxy": "String" } ```-----
v1.0 Intune Shared Report https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-report.md
Title: "report resource type" description: "Describes the report resource of the Microsoft Graph API for Intune, which supports multiple workflows." localization_priority: Normal-+ ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"content": "<Unknown Primitive Type Edm.Stream>" } ```----
v1.0 Intune Shared Reportroot https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-reportroot.md
Title: "reportRoot resource type" description: "The resource that represents an instance of a device or troubleshooting report, depending on context." localization_priority: Normal-+ ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"id": "String (identifier)" } ```----
v1.0 Intune Shared Rgbcolor https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-rgbcolor.md
Title: "rgbColor resource type" description: "Color in RGB."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"b": 1024 } ```-----
v1.0 Intune Shared Runasaccounttype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-runasaccounttype.md
Title: "runAsAccountType enum type" description: "Indicates the type of execution context the app runs in."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Indicates the type of execution context the app runs in.
|:|:|:| |system|0|System context| |user|1|User context|-----
v1.0 Intune Shared Runstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-runstate.md
Title: "runState enum type" description: "Indicates the type of execution status of the device management script."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Indicates the type of execution status of the device management script.
|scriptError|3|Discovery script hits error.| |pending|4|Script is pending to execute.| |notApplicable|5|Script is not applicable for this device.|-----
v1.0 Intune Shared Saveduistategenerationoptions https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-saveduistategenerationoptions.md
Title: "savedUIStateGenerationOptions enum type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Not yet documented
|:|:|:| |none|0|Not yet documented| |omitSilverlightPolicyReferences|1|Not yet documented|-----
v1.0 Intune Shared Settingsourcetype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-settingsourcetype.md
Title: "settingSourceType enum type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Not yet documented
|:|:|:| |deviceConfiguration|0|Not yet documented| |deviceIntent|1|Not yet documented|-----
v1.0 Intune Shared Subjectalternativenametype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-subjectalternativenametype.md
Title: "subjectAlternativeNameType enum type" description: "Subject Alternative Name Options."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Subject Alternative Name Options.
|customAzureADAttribute|4|Custom Azure AD Attribute.| |domainNameService|8|Domain Name Service (DNS).| |universalResourceIdentifier|16|Universal Resource Identifier (URI).|-----
v1.0 Intune Shared Targetedmanagedappconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-targetedmanagedappconfiguration.md
Title: "targetedManagedAppConfiguration resource type" description: "Configuration used to deliver a set of custom settings as-is to all users in the targeted security group"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"isAssigned": true } ```-----
v1.0 Intune Shared Uri https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-uri.md
Title: "uri resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Shared User https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-user.md
Title: "user resource type" description: "Represents an Azure Active Directory user object."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"id": "String (identifier)" } ```----
v1.0 Intune Shared Vpptokenaccounttype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-vpptokenaccounttype.md
Title: "vppTokenAccountType enum type" description: "Possible types of an Apple Volume Purchase Program token."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible types of an Apple Volume Purchase Program token.
|:|:|:| |business|0|Apple Volume Purchase Program token associated with an business program.| |education|1|Apple Volume Purchase Program token associated with an education program.|-----
v1.0 Intune Shared Vpptokenactionfailurereason https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-vpptokenactionfailurereason.md
Title: "vppTokenActionFailureReason enum type" description: "Possible types of reasons for an Apple Volume Purchase Program token action failure."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible types of reasons for an Apple Volume Purchase Program token action fail
|internalError|2|There was an internal error.| |expiredVppToken|3|There was an error because the Apple Volume Purchase Program token was expired.| |expiredApplePushNotificationCertificate|4|There was an error because the Apple Volume Purchase Program Push Notification certificate expired.|-----
v1.0 Intune Shared Win32lobappassignmentsettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-win32lobappassignmentsettings.md
Title: "win32LobAppAssignmentSettings resource type" description: "Contains properties used to assign an Win32 LOB mobile app to a group."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"deliveryOptimizationPriority": "String" } ```-----
v1.0 Intune Shared Win32lobappdeliveryoptimizationpriority https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-win32lobappdeliveryoptimizationpriority.md
Title: "win32LobAppDeliveryOptimizationPriority enum type" description: "Contains value for delivery optimization priority."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Contains value for delivery optimization priority.
|:|:|:| |notConfigured|0|Not configured or background normal delivery optimization priority.| |foreground|1|Foreground delivery optimization priority.|-----
v1.0 Intune Shared Win32lobappnotification https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-win32lobappnotification.md
Title: "win32LobAppNotification enum type" description: "Contains value for notification status."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Contains value for notification status.
|showAll|0|Show all notifications.| |showReboot|1|Only show restart notification and suppress other notifications.| |hideAll|2|Hide all notifications.|-----
v1.0 Intune Shared Win32lobapprestartsettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-win32lobapprestartsettings.md
Title: "win32LobAppRestartSettings resource type" description: "Contains properties describing restart coordination following an app installation."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"restartNotificationSnoozeDurationInMinutes": 1024 } ```-----
v1.0 Intune Shared Windowsappxappassignmentsettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-windowsappxappassignmentsettings.md
Title: "windowsAppXAppAssignmentSettings resource type" description: "Contains properties used when assigning a Windows AppX mobile app to a group."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"useDeviceContext": true } ```-----
v1.0 Intune Shared Windowsautopilotdeploymentprofile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-windowsautopilotdeploymentprofile.md
Title: "windowsAutopilotDeploymentProfile resource type" description: "Windows Autopilot Deployment Profile"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Shared Windowsdomainjoinconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-windowsdomainjoinconfiguration.md
Title: "windowsDomainJoinConfiguration resource type" description: "Windows Domain Join device configuration."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource. Note: The response object shown
"activeDirectoryDomainName": "String" } ```----
v1.0 Intune Shared Windowsuniversalappxappassignmentsettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-windowsuniversalappxappassignmentsettings.md
Title: "windowsUniversalAppXAppAssignmentSettings resource type" description: "Contains properties used when assigning a Windows Universal AppX mobile app to a group."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"useDeviceContext": true } ```-----
v1.0 Intune Shared Windowsupdatestate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-windowsupdatestate.md
Title: "windowsUpdateState resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"lastSyncDateTime": "String (timestamp)" } ```-----
v1.0 Intune Shared Wingetappassignmentsettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-wingetappassignmentsettings.md
+
+ Title: "winGetAppAssignmentSettings resource type"
+description: "Contains properties used to assign a WinGet app to a group."
+
+localization_priority: Normal
++
+# winGetAppAssignmentSettings resource type
+
+Namespace: microsoft.graph
+
+> **Important:** Microsoft Graph APIs under the /beta version are subject to change; production use is not supported.
+
+> **Note:** The Microsoft Graph API for Intune requires an [active Intune license](https://go.microsoft.com/fwlink/?linkid=839381) for the tenant.
+
+Contains properties used to assign a WinGet app to a group.
++
+Inherits from [mobileAppAssignmentSettings](../resources/intune-shared-mobileappassignmentsettings.md)
+
+## Properties
+|Property|Type|Description|
+|:|:|:|
+|notifications|[winGetAppNotification](../resources/intune-shared-wingetappnotification.md)|The notification status for this app assignment. Possible values are: `showAll`, `showReboot`, `hideAll`, `unknownFutureValue`.|
+|restartSettings|[winGetAppRestartSettings](../resources/intune-shared-wingetapprestartsettings.md)|The reboot settings to apply for this app assignment.|
+|installTimeSettings|[winGetAppInstallTimeSettings](../resources/intune-shared-wingetappinstalltimesettings.md)|The install time settings to apply for this app assignment.|
+
+## Relationships
+None
+
+## JSON Representation
+Here is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.winGetAppAssignmentSettings"
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.winGetAppAssignmentSettings",
+ "notifications": "String",
+ "restartSettings": {
+ "@odata.type": "microsoft.graph.winGetAppRestartSettings",
+ "gracePeriodInMinutes": 1024,
+ "countdownDisplayBeforeRestartInMinutes": 1024,
+ "restartNotificationSnoozeDurationInMinutes": 1024
+ },
+ "installTimeSettings": {
+ "@odata.type": "microsoft.graph.winGetAppInstallTimeSettings",
+ "useLocalTime": true,
+ "deadlineDateTime": "String (timestamp)"
+ }
+}
+```
v1.0 Intune Shared Wingetappinstalltimesettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-wingetappinstalltimesettings.md
+
+ Title: "winGetAppInstallTimeSettings resource type"
+description: "Contains properties used to determine when to offer an app to devices and when to install the app on devices."
+
+localization_priority: Normal
++
+# winGetAppInstallTimeSettings resource type
+
+Namespace: microsoft.graph
+
+> **Important:** Microsoft Graph APIs under the /beta version are subject to change; production use is not supported.
+
+> **Note:** The Microsoft Graph API for Intune requires an [active Intune license](https://go.microsoft.com/fwlink/?linkid=839381) for the tenant.
+
+Contains properties used to determine when to offer an app to devices and when to install the app on devices.
+
+## Properties
+|Property|Type|Description|
+|:|:|:|
+|useLocalTime|Boolean|Whether the local device time or UTC time should be used when determining the deadline times.|
+|deadlineDateTime|DateTimeOffset|The time at which the app should be installed.|
+
+## Relationships
+None
+
+## JSON Representation
+Here is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.winGetAppInstallTimeSettings"
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.winGetAppInstallTimeSettings",
+ "useLocalTime": true,
+ "deadlineDateTime": "String (timestamp)"
+}
+```
v1.0 Intune Shared Wingetappnotification https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-wingetappnotification.md
+
+ Title: "winGetAppNotification enum type"
+description: "Contains value for notification status."
+
+localization_priority: Normal
++
+# winGetAppNotification enum type
+
+Namespace: microsoft.graph
+
+> **Important:** Microsoft Graph APIs under the /beta version are subject to change; production use is not supported.
+
+> **Note:** The Microsoft Graph API for Intune requires an [active Intune license](https://go.microsoft.com/fwlink/?linkid=839381) for the tenant.
+
+Contains value for notification status.
+
+## Members
+|Member|Value|Description|
+|:|:|:|
+|showAll|0|Show all notifications.|
+|showReboot|1|Only show restart notification and suppress other notifications.|
+|hideAll|2|Hide all notifications.|
+|unknownFutureValue|3|Unknown future value, reserved for future usage as expandable enum.|
v1.0 Intune Shared Wingetapprestartsettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-shared-wingetapprestartsettings.md
+
+ Title: "winGetAppRestartSettings resource type"
+description: "Contains properties describing restart coordination following an app installation."
+
+localization_priority: Normal
++
+# winGetAppRestartSettings resource type
+
+Namespace: microsoft.graph
+
+> **Important:** Microsoft Graph APIs under the /beta version are subject to change; production use is not supported.
+
+> **Note:** The Microsoft Graph API for Intune requires an [active Intune license](https://go.microsoft.com/fwlink/?linkid=839381) for the tenant.
+
+Contains properties describing restart coordination following an app installation.
+
+## Properties
+|Property|Type|Description|
+|:|:|:|
+|gracePeriodInMinutes|Int32|The number of minutes to wait before restarting the device after an app installation.|
+|countdownDisplayBeforeRestartInMinutes|Int32|The number of minutes before the restart time to display the countdown dialog for pending restarts.|
+|restartNotificationSnoozeDurationInMinutes|Int32|The number of minutes to snooze the restart notification dialog when the snooze button is selected.|
+
+## Relationships
+None
+
+## JSON Representation
+Here is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.winGetAppRestartSettings"
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.winGetAppRestartSettings",
+ "gracePeriodInMinutes": 1024,
+ "countdownDisplayBeforeRestartInMinutes": 1024,
+ "restartNotificationSnoozeDurationInMinutes": 1024
+}
+```
v1.0 Intune Softwareupdate Bulkdriveractionresult https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-softwareupdate-bulkdriveractionresult.md
Title: "bulkDriverActionResult resource type" description: "A complex type to represent the result of bulk driver action."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Softwareupdate Driverapprovalaction https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-softwareupdate-driverapprovalaction.md
Title: "driverApprovalAction enum type" description: "An enum type to represent approval actions of single or list of drivers."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
An enum type to represent approval actions of single or list of drivers.
|approve|0|This indicates the action to approve single or list of drivers.| |decline|1|This indicates the action to approve single or list of drivers.| |suspend|2|This indicates the action to suspend single or list of drivers.|-----
v1.0 Intune Softwareupdate Driverapprovalstatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-softwareupdate-driverapprovalstatus.md
Title: "driverApprovalStatus enum type" description: "An enum type to represent approval status of a driver."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
An enum type to represent approval status of a driver.
|declined|1|This indicates IT admin has declined a driver.| |approved|2|This indicates IT admin has approved a driver.| |suspended|3|This indicates IT admin has suspended a driver.|-----
v1.0 Intune Softwareupdate Drivercategory https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-softwareupdate-drivercategory.md
Title: "driverCategory enum type" description: "An enum type to represent which category a driver belongs to."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
An enum type to represent which category a driver belongs to.
|recommended|0|This indicates a driver is recommended by Microsoft.| |previouslyApproved|1|This indicates a driver was recommended by Microsoft and IT admin has taken some approval action on it.| |other|2|This indicates a driver is never recommended by Microsoft.|-----
v1.0 Intune Softwareupdate Driverupdateprofileapprovaltype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-softwareupdate-driverupdateprofileapprovaltype.md
Title: "driverUpdateProfileApprovalType enum type" description: "An enum type to represent approval type of a driver update profile."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
An enum type to represent approval type of a driver update profile.
|:|:|:| |manual|0|This indicates a driver and firmware profile needs to be approved manually.| |automatic|1|This indicates a driver and firmware profile is approved automatically.|-----
v1.0 Intune Softwareupdate Expeditedwindowsqualityupdatesettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-softwareupdate-expeditedwindowsqualityupdatesettings.md
Title: "expeditedWindowsQualityUpdateSettings resource type" description: "A complex type to store the expedited quality update settings such as release date and days until forced reboot."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"daysUntilForcedReboot": 1024 } ```-----
v1.0 Intune Softwareupdate Iosavailableupdateversion https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-softwareupdate-iosavailableupdateversion.md
Title: "iosAvailableUpdateVersion resource type" description: "iOS available update version details"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Softwareupdate Windowsdriverupdateinventory https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-softwareupdate-windowsdriverupdateinventory.md
Title: "windowsDriverUpdateInventory resource type" description: "A new entity to represent driver inventories."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"deployDateTime": "String (timestamp)" } ```-----
v1.0 Intune Softwareupdate Windowsdriverupdateprofile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-softwareupdate-windowsdriverupdateprofile.md
Title: "windowsDriverUpdateProfile resource type" description: "Windows Driver Update Profile"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Softwareupdate Windowsdriverupdateprofileassignment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-softwareupdate-windowsdriverupdateprofileassignment.md
Title: "windowsDriverUpdateProfileAssignment resource type" description: "This entity contains the properties used to assign a windows driver update profile to a group."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Softwareupdate Windowsdriverupdateprofileinventorysyncstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-softwareupdate-windowsdriverupdateprofileinventorysyncstate.md
Title: "windowsDriverUpdateProfileInventorySyncState enum type" description: "Windows DnF update inventory sync state."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Windows DnF update inventory sync state.
|pending|0|Pending sync.| |success|1|Successful sync.| |failure|2|Failed sync.|-----
v1.0 Intune Softwareupdate Windowsdriverupdateprofileinventorysyncstatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-softwareupdate-windowsdriverupdateprofileinventorysyncstatus.md
Title: "windowsDriverUpdateProfileInventorySyncStatus resource type" description: "A complex type to store the status of a driver and firmware profile inventory sync. The status includes the last successful sync date time and the state of the last sync."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"driverInventorySyncState": "String" } ```-----
v1.0 Intune Softwareupdate Windowsfeatureupdatecatalogitem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-softwareupdate-windowsfeatureupdatecatalogitem.md
Title: "windowsFeatureUpdateCatalogItem resource type" description: "Windows update catalog item entity"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"version": "String" } ```-----
v1.0 Intune Softwareupdate Windowsfeatureupdateprofile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-softwareupdate-windowsfeatureupdateprofile.md
Title: "windowsFeatureUpdateProfile resource type" description: "Windows Feature Update Profile"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"endOfSupportDate": "String (timestamp)" } ```-----
v1.0 Intune Softwareupdate Windowsfeatureupdateprofileassignment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-softwareupdate-windowsfeatureupdateprofileassignment.md
Title: "windowsFeatureUpdateProfileAssignment resource type" description: "This entity contains the properties used to assign a windows feature update profile to a group."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Softwareupdate Windowsqualityupdatecatalogitem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-softwareupdate-windowsqualityupdatecatalogitem.md
Title: "windowsQualityUpdateCatalogItem resource type" description: "Windows update catalog item entity"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"isExpeditable": true } ```-----
v1.0 Intune Softwareupdate Windowsqualityupdateclassification https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-softwareupdate-windowsqualityupdateclassification.md
Title: "windowsQualityUpdateClassification enum type" description: "Windows quality update classification"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Windows quality update classification
|all|0|All update type| |security|1|Security only update type| |nonSecurity|2|Non security only update type|-----
v1.0 Intune Softwareupdate Windowsqualityupdateprofile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-softwareupdate-windowsqualityupdateprofile.md
Title: "windowsQualityUpdateProfile resource type" description: "Windows Quality Update Profile"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"deployableContentDisplayName": "String" } ```-----
v1.0 Intune Softwareupdate Windowsqualityupdateprofileassignment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-softwareupdate-windowsqualityupdateprofileassignment.md
Title: "windowsQualityUpdateProfileAssignment resource type" description: "This entity contains the properties used to assign a windows quality update profile to a group."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Softwareupdate Windowsupdatecatalogitem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-softwareupdate-windowsupdatecatalogitem.md
Title: "windowsUpdateCatalogItem resource type" description: "Windows update catalog item entity"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"endOfSupportDate": "String (timestamp)" } ```-----
v1.0 Intune Softwareupdate Windowsupdaterolloutsettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-softwareupdate-windowsupdaterolloutsettings.md
Title: "windowsUpdateRolloutSettings resource type" description: "A complex type to store the windows update rollout settings including offer start date time, offer end date time, and days between each set of offers."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"offerIntervalInDays": 1024 } ```-----
v1.0 Intune Tem Conceptual https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-tem-conceptual.md
Title: "Telecom expense management in Microsoft Intune - Microsoft Graph API" description: "Lists the Microsoft Graph API for Intune endpoints (REST) related to telecom expense management for a tenant organization." ms.localizationpriority: medium-+ ms.prod: "intune"
v1.0 Intune Tem Telecomexpensemanagementpartner https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-tem-telecomexpensemanagementpartner.md
Title: "telecomExpenseManagementPartner resource type" description: "telecomExpenseManagementPartner resources represent the metadata and status of a given TEM service. Once your organization has onboarded with a partner, the partner can be enabled or disabled to switch TEM functionality on or off."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"lastConnectionDateTime": "String (timestamp)" } ```-----
v1.0 Intune Troubleshooting Applevpptokentroubleshootingevent https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-troubleshooting-applevpptokentroubleshootingevent.md
Title: "appleVppTokenTroubleshootingEvent resource type" description: "Event representing an Apple Vpp Token Troubleshooting Event."-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"tokenId": "String" } ```----
v1.0 Intune Troubleshooting Deviceenrollmentfailurereason https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-troubleshooting-deviceenrollmentfailurereason.md
Title: "deviceEnrollmentFailureReason enum type" description: "Top level failure categories for enrollment."-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: enumPageType
Top level failure categories for enrollment.
|enrollmentRestrictionsEnforced|9|Enrollment restrictions configured by admin blocked this enrollment.| |clientDisconnected|10|Client timed out or enrollment was aborted by enduser.| |userAbandonment|11|Enrollment was abandoned by enduser. (Enduser started onboarding but failed to complete it in timely manner)|----
v1.0 Intune Troubleshooting Deviceenrollmenttype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-troubleshooting-deviceenrollmenttype.md
Title: "deviceEnrollmentType enum type" description: "Possible ways of adding a mobile device to management."-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: enumPageType
Possible ways of adding a mobile device to management.
|androidEnterpriseDedicatedDevice|15|Android Enterprise Dedicated Device| |androidEnterpriseFullyManaged|16|Android Enterprise Fully Managed| |androidEnterpriseCorporateWorkProfile|17|Android Enterprise Corporate Work Profile|----
v1.0 Intune Troubleshooting Devicemanagementautopilotevent https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-troubleshooting-devicemanagementautopilotevent.md
Title: "deviceManagementAutopilotEvent resource type" description: "Represents an Autopilot flow event."-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"enrollmentFailureDetails": "String" } ```----
v1.0 Intune Troubleshooting Devicemanagementautopilotpolicycompliancestatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-troubleshooting-devicemanagementautopilotpolicycompliancestatus.md
Title: "deviceManagementAutopilotPolicyComplianceStatus enum type" description: "Not yet documented"-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: enumPageType
Not yet documented
|notCompliant|3|Not yet documented| |notInstalled|4|Not yet documented| |error|5|Not yet documented|----
v1.0 Intune Troubleshooting Devicemanagementautopilotpolicystatusdetail https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-troubleshooting-devicemanagementautopilotpolicystatusdetail.md
Title: "deviceManagementAutopilotPolicyStatusDetail resource type" description: "Policy status detail item contained by an autopilot event."-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"errorCode": 1024 } ```----
v1.0 Intune Troubleshooting Devicemanagementautopilotpolicytype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-troubleshooting-devicemanagementautopilotpolicytype.md
Title: "deviceManagementAutopilotPolicyType enum type" description: "Not yet documented"-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: enumPageType
Not yet documented
|application|3|Not yet documented| |appModel|7|Not yet documented| |configurationPolicy|12|Not yet documented|----
v1.0 Intune Troubleshooting Devicemanagementtroubleshootingerrordetails https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-troubleshooting-devicemanagementtroubleshootingerrordetails.md
Title: "deviceManagementTroubleshootingErrorDetails resource type" description: "Object containing detailed information about the error and its remediation."-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```----
v1.0 Intune Troubleshooting Devicemanagementtroubleshootingerrorresource https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-troubleshooting-devicemanagementtroubleshootingerrorresource.md
Title: "deviceManagementTroubleshootingErrorResource resource type" description: "Object representing a link to troubleshooting information, the link could be to the Azure Portal or a Microsoft doc."-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"link": "String" } ```----
v1.0 Intune Troubleshooting Devicemanagementtroubleshootingevent https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-troubleshooting-devicemanagementtroubleshootingevent.md
Title: "deviceManagementTroubleshootingEvent resource type" description: "Event representing an general failure."-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```----
v1.0 Intune Troubleshooting Devicetype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-troubleshooting-devicetype.md
Title: "deviceType enum type" description: "Device type."-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: enumPageType
Device type.
|palm|101|Palm.| |unknown|255|Represents that the device type is unknown.| |cloudPC|257|Cloud PC device.|----
v1.0 Intune Troubleshooting Enrollmenttroubleshootingevent https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-troubleshooting-enrollmenttroubleshootingevent.md
Title: "enrollmentTroubleshootingEvent resource type" description: "Event representing an enrollment failure."-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"failureReason": "String" } ```----
v1.0 Intune Troubleshooting Keyvaluepair https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-troubleshooting-keyvaluepair.md
Title: "keyValuePair resource type" description: "Key value pair for storing custom settings"-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"value": "String" } ```----
v1.0 Intune Troubleshooting Manageddevicesummarizedappstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-troubleshooting-manageddevicesummarizedappstate.md
Title: "managedDeviceSummarizedAppState resource type" description: "Event representing a user's devices with failed or pending apps."-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"deviceId": "String" } ```----
v1.0 Intune Troubleshooting Mobileappactiontype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-troubleshooting-mobileappactiontype.md
Title: "mobileAppActionType enum type" description: "Defines the Action Types for an Intune Application."-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: enumPageType
Defines the Action Types for an Intune Application.
|installed|3|Application installed.| |uninstalled|4|Application uninstalled.| |userRequestedInstall|5|User requested installation|----
v1.0 Intune Troubleshooting Mobileappintent https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-troubleshooting-mobileappintent.md
Title: "mobileAppIntent enum type" description: "Indicates the status of the mobile app on the device."-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: enumPageType
Indicates the status of the mobile app on the device.
|requiredAndAvailableInstall|4|RequiredAndAvailableInstall| |availableInstallWithoutEnrollment|5|AvailableInstallWithoutEnrollment| |exclude|6|Exclude|----
v1.0 Intune Troubleshooting Mobileappintentandstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-troubleshooting-mobileappintentandstate.md
Title: "mobileAppIntentAndState resource type" description: "MobileApp Intent and Install State for a given device."-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```----
v1.0 Intune Troubleshooting Mobileappintentandstatedetail https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-troubleshooting-mobileappintentandstatedetail.md
Title: "mobileAppIntentAndStateDetail resource type" description: "Mobile App Intent and Install State for a given device."-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```----
v1.0 Intune Troubleshooting Mobileappsupporteddevicetype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-troubleshooting-mobileappsupporteddevicetype.md
Title: "mobileAppSupportedDeviceType resource type" description: "Device properties"-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"maximumOperatingSystemVersion": "String" } ```----
v1.0 Intune Troubleshooting Mobileapptroubleshootingapppolicycreationhistory https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-troubleshooting-mobileapptroubleshootingapppolicycreationhistory.md
Title: "mobileAppTroubleshootingAppPolicyCreationHistory resource type" description: "History Item contained in the Mobile App Troubleshooting Event."-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"errorCode": "String" } ```----
v1.0 Intune Troubleshooting Mobileapptroubleshootingappstatehistory https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-troubleshooting-mobileapptroubleshootingappstatehistory.md
Title: "mobileAppTroubleshootingAppStateHistory resource type" description: "History Item contained in the Mobile App Troubleshooting Event."-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"errorCode": "String" } ```----
v1.0 Intune Troubleshooting Mobileapptroubleshootingapptargethistory https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-troubleshooting-mobileapptroubleshootingapptargethistory.md
Title: "mobileAppTroubleshootingAppTargetHistory resource type" description: "History Item contained in the Mobile App Troubleshooting Event."-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"errorCode": "String" } ```----
v1.0 Intune Troubleshooting Mobileapptroubleshootingappupdatehistory https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-troubleshooting-mobileapptroubleshootingappupdatehistory.md
Title: "mobileAppTroubleshootingAppUpdateHistory resource type" description: "History Item contained in the Mobile App Troubleshooting Event."-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```----
v1.0 Intune Troubleshooting Mobileapptroubleshootingdevicecheckinhistory https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-troubleshooting-mobileapptroubleshootingdevicecheckinhistory.md
Title: "mobileAppTroubleshootingDeviceCheckinHistory resource type" description: "History Item contained in the Mobile App Troubleshooting Event."-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```----
v1.0 Intune Troubleshooting Mobileapptroubleshootinghistoryitem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-troubleshooting-mobileapptroubleshootinghistoryitem.md
Title: "mobileAppTroubleshootingHistoryItem resource type" description: "History Item contained in the Mobile App Troubleshooting Event."-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```----
v1.0 Intune Troubleshooting Resultantappstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-troubleshooting-resultantappstate.md
Title: "resultantAppState enum type" description: "Not yet documented"-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: enumPageType
Not yet documented
|pendingInstall|5|The installation of the application is in progress.| |unknown|99|The status of the application is unknown.| |notApplicable|-1|The application is not applicable.|----
v1.0 Intune Troubleshooting Runstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-troubleshooting-runstate.md
Title: "runState enum type" description: "Indicates the type of execution status of the device management script."-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: enumPageType
Indicates the type of execution status of the device management script.
|scriptError|3|Discovery script hits error.| |pending|4|Script is pending to execute.| |notApplicable|5|Script is not applicable for this device.|----
v1.0 Intune Troubleshooting Windowsautopilotdeploymentstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-troubleshooting-windowsautopilotdeploymentstate.md
Title: "windowsAutopilotDeploymentState enum type" description: "Not yet documented"-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: enumPageType
Not yet documented
|successWithTimeout|4|Not yet documented| |notAttempted|5|Not yet documented| |disabled|6|Not yet documented|----
v1.0 Intune Troubleshooting Windowsautopilotenrollmenttype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-troubleshooting-windowsautopilotenrollmenttype.md
Title: "windowsAutopilotEnrollmentType enum type" description: "Not yet documented"-+ ms.localizationpriority: medium ms.prod: "intune" doc_type: enumPageType
Not yet documented
|azureADJoinedWithWhiteGlove|6|Not yet documented| |offlineDomainJoinedWithWhiteGlove|7|Not yet documented| |offlineDomainJoinedWithOfflineAutopilotProfile|8|Not yet documented|----
v1.0 Intune Unlock Windowsdefenderapplicationcontrolsupplementalpolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-unlock-windowsdefenderapplicationcontrolsupplementalpolicy.md
Title: "windowsDefenderApplicationControlSupplementalPolicy resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Unlock Windowsdefenderapplicationcontrolsupplementalpolicyassignment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-unlock-windowsdefenderapplicationcontrolsupplementalpolicyassignment.md
Title: "windowsDefenderApplicationControlSupplementalPolicyAssignment resource type" description: "A class containing the properties used for assignment of a WindowsDefenderApplicationControl supplemental policy to a group."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Unlock Windowsdefenderapplicationcontrolsupplementalpolicydeploymentstatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-unlock-windowsdefenderapplicationcontrolsupplementalpolicydeploymentstatus.md
Title: "windowsDefenderApplicationControlSupplementalPolicyDeploymentStatus resource type" description: "Contains properties for the deployment state of a WindowsDefenderApplicationControl supplemental policy for a device."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"policyVersion": "String" } ```-----
v1.0 Intune Unlock Windowsdefenderapplicationcontrolsupplementalpolicydeploymentsummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-unlock-windowsdefenderapplicationcontrolsupplementalpolicydeploymentsummary.md
Title: "windowsDefenderApplicationControlSupplementalPolicyDeploymentSummary resource type" description: "Contains properties for the deployment summary of a WindowsDefenderApplicationControl supplemental policy."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"failedDeviceCount": 1024 } ```-----
v1.0 Intune Unlock Windowsdefenderapplicationcontrolsupplementalpolicystatuses https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-unlock-windowsdefenderapplicationcontrolsupplementalpolicystatuses.md
Title: "windowsDefenderApplicationControlSupplementalPolicyStatuses enum type" description: "Enum values for the various WindowsDefenderApplicationControl supplemental policy deployment statuses."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Enum values for the various WindowsDefenderApplicationControl supplemental polic
|tokenError|2|The WindowsDefenderApplicationControl supplemental policy is structurally okay but there is an error with authorizing the token.| |notAuthorizedByToken|3|The token does not authorize this WindowsDefenderApplicationControl supplemental policy.| |policyNotFound|4|The WindowsDefenderApplicationControl supplemental policy is not found.|-----
v1.0 Intune Wip Applicationtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-wip-applicationtype.md
Title: "applicationType enum type" description: "Possible types of Application"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible types of Application
|:|:|:| |universal|1|The windows universal application| |desktop|2|The windows desktop application|-----
v1.0 Intune Wip Deviceplatformtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-wip-deviceplatformtype.md
Title: "devicePlatformType enum type" description: "Supported platform types."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Supported platform types.
|windows10AndLater|6|Windows 10 and later.| |androidWorkProfile|7|Android Work Profile.| |unknown|8|Unknown.|-----
v1.0 Intune Wip Intunebrandingprofile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-wip-intunebrandingprofile.md
Title: "intuneBrandingProfile resource type" description: "This entity contains data which is used in customizing the tenant level appearance of the Company Portal applications as well as the end user web portal."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Wip Intunebrandingprofileassignment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-wip-intunebrandingprofileassignment.md
Title: "intuneBrandingProfileAssignment resource type" description: "This entity contains the properties used to assign a branding profile to a group."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Wip Windowsinformationprotectionapplearningsummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-wip-windowsinformationprotectionapplearningsummary.md
Title: "windowsInformationProtectionAppLearningSummary resource type" description: "Windows Information Protection AppLearning Summary entity."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"deviceCount": 1024 } ```-----
v1.0 Intune Wip Windowsinformationprotectionnetworklearningsummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/intune-wip-windowsinformationprotectionnetworklearningsummary.md
Title: "windowsInformationProtectionNetworkLearningSummary resource type" description: "Windows Information Protection Network learning Summary entity."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"deviceCount": 1024 } ```-----
v1.0 Keycredential https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/keycredential.md
Contains a key credential associated with an application or a service principal.
## Properties | Property | Type |Description| |:|:--|:-|
-|customKeyIdentifier|Binary| Custom key identifier |
+|customKeyIdentifier|Binary| A 40-character binary type that can be used to identify the credential. Optional. When not provided in the payload, defaults to the thumbprint of the certificate. |
| displayName | String | Friendly name for the key. Optional. | |endDateTime|DateTimeOffset|The date and time at which the credential expires. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is `2014-01-01T00:00:00Z`.| |key|Binary| Value for the key credential. Should be a Base64 encoded value. Returned only on `$select` for a single object, that is, `GET applications/{applicationId}?$select=keyCredentials` or `GET servicePrincipals/{servicePrincipalId}?$select=keyCredentials`; otherwise, it is always `null`. |
v1.0 Longrunningoperation https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/longrunningoperation.md
+
+ Title: "longRunningOperation resource type"
+description: "The status of a long-running operation."
+
+ms.localizationpriority: medium
++
+# longRunningOperation resource type
+
+Namespace: microsoft.graph
++
+The status of a long-running operation.
+
+Base type of [attackSimulationOperation](../resources/attacksimulationoperation.md).
+
+## Properties
+
+|Property|Type|Description|
+|:|:|:|
+|createdDateTime|DateTimeOffset|The start time of the operation. 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`.|
+|id|String|The unique identifier for the operation. |
+|lastActionDateTime|DateTimeOffset|The time of the last action in the operation. 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`.|
+|resourceLocation|String| URI of the resource that the operation is performed on. |
+|status|longRunningOperationStatus|The status of the operation. The possible values are: `notStarted`, `running`, `succeeded`, `failed`, `unknownFutureValue`.|
+|statusDetail|String|Details about the status of the operation.|
+
+## JSON representation
+
+The following is a JSON representation of the resource.
+
+<!-- {
+ "blockType": "resource",
+ "keyProperty": "id",
+ "@odata.type": "microsoft.graph.longRunningOperation",
+ "baseType": "microsoft.graph.entity",
+ "openType": false
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.longRunningOperation",
+ "createdDateTime": "String (timestamp)",
+ "id": "String (identifier)",
+ "lastActionDateTime": "String (timestamp)",
+ "resourceLocation": "String",
+ "status": "String",
+ "statusDetail": "String"
+}
+```
+
+<!-- uuid: 13fa92b1-3b41-498b-aab1-f943464a124f
+2018-03-30 10:29:30 UTC -->
+<!-- {
+ "type": "#page.annotation",
+ "description": "operation resource",
+ "keywords": "",
+ "section": "documentation",
+ "tocPath": ""
+}-->
v1.0 Meetinginfo https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/meetinginfo.md
Title: "meetingInfo resource type"
-description: "Meeting information specified to create or join a meeting."
+description: "An abstract class that contains meeting-specific information."
ms.localizationpriority: medium ms.prod: "cloud-communications"
Namespace: microsoft.graph
[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)]
-This is an abstract class that contains meeting specific information.
-
+An abstract class that contains meeting-specific information.
+ To join an existing meeting, you must either specify the [organizerMeetingInfo](organizermeetinginfo.md) in combination with the [chatInfo](./chatinfo.md), the [tokenMeetingInfo](tokenmeetinginfo.md), or the [joinMeetingIdMeetingInfo](joinmeetingidmeetinginfo.md).
+Base type of [organizerMeetingInfo](organizermeetinginfo.md), [tokenMeetingInfo](tokenmeetinginfo.md), and [joinMeetingIdMeetingInfo](joinmeetingidmeetinginfo.md).
-## Derived types
+## Properties
-| Type | Description |
-|:--|:--|
-| [joinMeetingIdMeetingInfo](joinmeetingidmeetinginfo.md) | Contains the **joinMeetingId** and **passcode** of the meeting. |
-| [organizerMeetingInfo](./organizermeetinginfo.md) | Details about the organizer of the meeting. |
-| [tokenMeetingInfo](tokenmeetinginfo.md) | An encrypted token that contains the information about the meeting. |
+None.
## JSON representation
The following is a JSON representation of the resource.
"suppressions": [] } -->--
v1.0 Microsoftauthenticatorauthenticationmethod https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/microsoftauthenticatorauthenticationmethod.md
Namespace: microsoft.graph
A representation of the Microsoft Authenticator app registered to a user. Microsoft Authenticator is an authentication method.
-Inherits from [authenticationMethod](../resources/authenticationmethod.md).
+This is a derived type that inherits from the [authenticationMethod](authenticationmethod.md) resource type.
## Methods |Method|Return type|Description|
v1.0 Microsoftauthenticatorauthenticationmethodconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/microsoftauthenticatorauthenticationmethodconfiguration.md
Title: "microsoftAuthenticatorAuthenticationMethodConfiguration resource type" description: "Represents a Microsoft Authenticator authentication methods policy."-+ ms.localizationpriority: medium ms.prod: "identity-and-sign-in" doc_type: resourcePageType
Represents a Microsoft Authenticator authentication methods policy. Authenticati
|Method|Return type|Description| |:|:|:| |[Get](../api/microsoftauthenticatorauthenticationmethodconfiguration-get.md)|[microsoftAuthenticatorAuthenticationMethodConfiguration](../resources/microsoftauthenticatorauthenticationmethodconfiguration.md)|Read the properties and relationships of a microsoftAuthenticatorAuthenticationMethodConfiguration object.|
-|[Update](../api/microsoftauthenticatorauthenticationmethodconfiguration-update.md)|[microsoftAuthenticatorAuthenticationMethodConfiguration](../resources/microsoftauthenticatorauthenticationmethodconfiguration.md)|Update the properties of a microsoftAuthenticatorAuthenticationMethodConfiguration object.|
+|[Update](../api/microsoftauthenticatorauthenticationmethodconfiguration-update.md)|None|Update the properties of a microsoftAuthenticatorAuthenticationMethodConfiguration object.|
|[Delete](../api/microsoftauthenticatorauthenticationmethodconfiguration-delete.md)|None|Reverts the microsoftAuthenticatorAuthenticationMethodConfiguration object to its default configuration.| ## Properties |Property|Type|Description| |:|:|:|
+|excludeTargets|[excludeTarget](../resources/excludetarget.md) collection|Groups of users that are excluded from the policy.|
|id|String|The authentication method policy identifier.|
+|isSoftwareOathEnabled|Boolean|`true` if users can use the OTP code generated by the Microsoft Authenticator app, `false` otherwise.|
|state|authenticationMethodState|Possible values are: `enabled`, `disabled`.| |featureSettings|[microsoftAuthenticatorFeatureSettings](../resources/microsoftauthenticatorfeaturesettings.md)|A collection of Microsoft Authenticator settings such as number matching and location context, and whether they are enabled for all users or specific users only.| ## Relationships |Relationship|Type|Description| |:|:|:|
-|includeTargets|[microsoftAuthenticatorAuthenticationMethodTarget](../resources/microsoftauthenticatorauthenticationmethodtarget.md) collection|A collection of users or groups who are enabled to use the authentication method. Expanded by default.|
+|includeTargets|[microsoftAuthenticatorAuthenticationMethodTarget](../resources/microsoftauthenticatorauthenticationmethodtarget.md) collection|A collection of groups that are enabled to use the authentication method. Expanded by default.|
## JSON representation The following is a JSON representation of the resource.
The following is a JSON representation of the resource.
{ "@odata.type": "#microsoft.graph.microsoftAuthenticatorAuthenticationMethodConfiguration", "id": "String (identifier)",
- "state": "String"
+ "state": "String",
+ "excludeTargets": [
+ {
+ "@odata.type": "microsoft.graph.excludeTarget"
+ }
+ ],
+ "isSoftwareOathEnabled": "Boolean",
+ "featureSettings": {
+ "@odata.type": "microsoft.graph.microsoftAuthenticatorFeatureSettings"
+ }
} ```
v1.0 Microsoftauthenticatorauthenticationmethodtarget https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/microsoftauthenticatorauthenticationmethodtarget.md
Title: "microsoftAuthenticatorAuthenticationMethodTarget resource type"
-description: "A collection of users or groups enabled to use Microsoft Authenticator authentication methods policy."
+description: "A collection of groups enabled to use Microsoft Authenticator authentication methods policy."
ms.localizationpriority: medium ms.prod: "identity-and-sign-in"
Namespace: microsoft.graph
[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)]
-A collection of users or groups enabled to use [Microsoft Authenticator authentication methods policy](../resources/microsoftAuthenticatorAuthenticationMethodConfiguration.md) in Azure AD. Inherits from [authenticationMethodTarget](authenticationMethodTarget.md).
+A collection of groups enabled to use [Microsoft Authenticator authentication methods policy](../resources/microsoftAuthenticatorAuthenticationMethodConfiguration.md) in Azure AD. Inherits from [authenticationMethodTarget](authenticationMethodTarget.md).
## Properties |Property|Type|Description| |:|:|:| |authenticationMode|microsoftAuthenticatorAuthenticationMode|Determines which types of notifications can be used for sign-in. The possible values are: `deviceBasedPush` (passwordless only), `push`, and `any`.| |id|String|Object identifier of an Azure AD user or group. Inherited from [authenticationMethodTarget](authenticationmethodtarget.md).|
-|isRegistrationRequired|Boolean|Determines whether the user is enforced to register the authentication method. Inherited from [authenticationMethodTarget](authenticationmethodtarget.md). *Not supported*. |
-|targetType|authenticationMethodTargetType| The possible values are: `user`, `group`, and `unknownFutureValue`. Inherited from [authenticationMethodTarget](authenticationMethodTarget.md).|
+|isRegistrationRequired|Boolean|Determines whether the user is enforced to register the authentication method. Inherited from [authenticationMethodTarget](authenticationmethodtarget.md). **Not supported**. |
+|targetType|authenticationMethodTargetType| Possible values are: `group`, and `unknownFutureValue`. From December 2022, targeting individual users using `user` is no longer recommended. Existing targets will remain but we recommend to move the individual users to a targeted group. Inherited from [authenticationMethodTarget](authenticationMethodTarget.md).|
|numberMatchingRequiredState (deprecated)|advancedConfigState|Requires number matching for MFA notifications. Value is ignored for phone sign-in notifications. Possible values are: `enabled`, `disabled`, `default`.| |displayAppInformationRequiredState (deprecated)|advancedConfigState|Determines whether the user is shown additional context in their Authenticator app notification. In the body of the Authenticator notification, the user will be shown the app they are signing into along with the location that the authentication request originated from. Possible values are: `enabled`, `disabled`, `default`.|
v1.0 Objectidentity https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/objectidentity.md
The **identities** property of the [user](user.md) resource is an **objectIdenti
|:|:--|:-| |signInType|String| Specifies the user sign-in types in your directory, such as `emailAddress`, `userName`, `federated`, or `userPrincipalName`. `federated` represents a unique identifier for a user from an issuer, that can be in any format chosen by the issuer. Setting or updating a `userPrincipalName` identity will update the value of the **userPrincipalName** property on the user object. The validations performed on the `userPrincipalName` property on the user object, for example, verified domains and acceptable characters, will be performed when setting or updating a `userPrincipalName` identity. Additional validation is enforced on **issuerAssignedId** when the sign-in type is set to `emailAddress` or `userName`. This property can also be set to any custom string.| |issuer|string|Specifies the issuer of the identity, for example `facebook.com`.<br>For local accounts (where **signInType** is not `federated`), this property is the local B2C tenant default domain name, for example `contoso.onmicrosoft.com`.<br>For external users from other Azure AD organization, this will be the domain of the federated organization, for example `contoso.com`.<br><br>Supports `$filter`. 512 character limit.|
-|issuerAssignedId|string|Specifies the unique identifier assigned to the user by the issuer. The combination of **issuer** and **issuerAssignedId** must be unique within the organization. Represents the sign-in name for the user, when **signInType** is set to `emailAddress` or `userName` (also known as local accounts).<br>When **signInType** is set to: <ul><li>`emailAddress`, (or a custom string that starts with `emailAddress` like `emailAddress1`) **issuerAssignedId** must be a valid email address</li><li>`userName`, **issuerAssignedId** must be a valid [local part of an email address](https://tools.ietf.org/html/rfc3696#section-3)</li></ul>Supports `$filter`. 100 character limit.|
+|issuerAssignedId|string|Specifies the unique identifier assigned to the user by the issuer. The combination of **issuer** and **issuerAssignedId** must be unique within the organization. Represents the sign-in name for the user, when **signInType** is set to `emailAddress` or `userName` (also known as local accounts).<br>When **signInType** is set to: <ul><li>`emailAddress`, (or a custom string that starts with `emailAddress` like `emailAddress1`) **issuerAssignedId** must be a valid email address</li><li>`userName`, **issuerAssignedId** must begin with an alphabetical character or number, and can only contain alphanumeric characters and the following symbols: - or _</li></ul>Supports `$filter`. 64 character limit.|
### Filtering When filtering on the **identities** property for an **issuerAssignedId**, you must supply both **issuer** and **issuerAssignedId**. In addition:
v1.0 Onlinemeeting https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/onlinemeeting.md
This resource supports subscribing to [change notifications](/graph/webhooks). S
| Property | Type | Description | | :-- | :-- | : |
-| allowedPresenters | [onlineMeetingPresenters](#onlinemeetingpresenters-values)| Specifies who can be a presenter in a meeting. |
| allowAttendeeToEnableCamera | Boolean | Indicates whether attendees can turn on their camera. | | allowAttendeeToEnableMic | Boolean | Indicates whether attendees can turn on their microphone. | | allowMeetingChat | [meetingChatMode](#meetingchatmode-values) | Specifies the mode of meeting chat. | | allowTeamworkReactions | Boolean | Indicates if Teams reactions are enabled for the meeting. |
+| allowedPresenters | [onlineMeetingPresenters](#onlinemeetingpresenters-values)| Specifies who can be a presenter in a meeting. |
| alternativeRecording | Stream | The content stream of the alternative recording of a [Microsoft Teams live event](/microsoftteams/teams-live-events/what-are-teams-live-events). Read-only. | | attendeeReport | Stream | The content stream of the attendee report of a [Teams live event](/microsoftteams/teams-live-events/what-are-teams-live-events). Read-only. | | audioConferencing | [audioConferencing](audioconferencing.md) | The phone access (dial-in) information for an online meeting. Read-only. |
This resource supports subscribing to [change notifications](/graph/webhooks). S
| id | String | The default ID associated with the online meeting. Read-only. | | isBroadcast | Boolean | Indicates whether this is a [Teams live event](/microsoftteams/teams-live-events/what-are-teams-live-events). | | isEntryExitAnnounced | Boolean | Indicates whether to announce when callers join or leave. |
-| joinWebUrl | String | The join URL of the online meeting. Read-only. |
| joinInformation | [itemBody](itembody.md) | The join information in the language and locale variant specified in 'Accept-Language' request HTTP header. Read-only. |
-| joinMeetingIdSettings | [joinMeetingIdSettings](joinmeetingidsettings.md) | Specifies the **joinMeetingId**, the meeting passcode, and the requirement for the passcode. |
+| joinMeetingIdSettings | [joinMeetingIdSettings](joinmeetingidsettings.md) | Specifies the **joinMeetingId**, the meeting passcode, and the requirement for the passcode. Once an **onlineMeeting** is created, the **joinMeetingIdSettings** cannot be modified. To make any changes to this property, the meeting needs to be canceled and a new one needs to be created. |
+| joinWebUrl | String | The join URL of the online meeting. Read-only. |
| lobbyBypassSettings | [lobbyBypassSettings](lobbyBypassSettings.md) | Specifies which participants can bypass the meeting lobby. | | participants | [meetingParticipants](meetingparticipants.md) | The participants associated with the online meeting. This includes the organizer and the attendees. | | recordAutomatically | Boolean | Indicates whether to record the meeting automatically. |
This resource supports subscribing to [change notifications](/graph/webhooks). S
{ "allowAttendeeToEnableCamera": "Boolean", "allowAttendeeToEnableMic": "Boolean",
- "allowedPresenters": "String",
"allowMeetingChat": {"@odata.type": "microsoft.graph.meetingChatMode"}, "allowTeamworkReactions": "Boolean",
+ "allowedPresenters": "String",
+ "alternativeRecording": "Stream",
+ "attendeeReport": "Stream",
"audioConferencing": {"@odata.type": "microsoft.graph.audioConferencing"}, "broadcastSettings": {"@odata.type": "microsoft.graph.broadcastSettings"}, "chatInfo": {"@odata.type": "microsoft.graph.chatInfo"},
This resource supports subscribing to [change notifications](/graph/webhooks). S
"id": "String (identifier)", "isBroadcast": "Boolean", "isEntryExitAnnounced": "Boolean",
+ "joinInformation": {"@odata.type": "microsoft.graph.itemBody"},
"joinMeetingIdSettings": {"@odata.type": "microsoft.graph.joinMeetingIdSettings"}, "joinWebUrl": "String", "lobbyBypassSettings": {"@odata.type": "microsoft.graph.lobbyBypassSettings"}, "participants": {"@odata.type": "microsoft.graph.meetingParticipants"},
+ "recordAutomatically": "Boolean",
+ "recording": "Stream",
"startDateTime": "String (timestamp)", "subject": "String", "videoTeleconferenceId": "String"
v1.0 Onpremisesapplicationsegment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/onpremisesapplicationsegment.md
Title: "onPremisesApplicationSegment resource type"
+ Title: "onPremisesApplicationSegment resource type (deprecated)"
description: "Represents onPremisesApplicationSegment object when publishing an on-premises wildcard application with Azure AD Application Proxy." ms.localizationpriority: medium
ms.prod: "applications"
doc_type: "resourcePageType"
-# onPremisesApplicationSegment resource type
+# onPremisesApplicationSegment resource type (deprecated)
Namespace: microsoft.graph
The following is a JSON representation of the resource.
--> ``` json {
- "@odata.type": "#microsoft.graph.onPremisesApplicationSegment",
- "externalUrl": "String",
- "internalUrl": "String",
"alternateUrl": "String",
- "corsConfigurations": [
+ "corsConfigurations": [
{ "@odata.type": "microsoft.graph.corsConfiguration" }
- ]
+ ],
+ "externalUrl": "String",
+ "internalUrl": "String",
} ```
v1.0 Onpremisespublishing https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/onpremisespublishing.md
For a tutorial about configuring Application Proxy, see [Automate the configurat
|isStateSessionEnabled|Boolean| Indicates whether validation of the state parameter when the client uses the OAuth 2.0 authorization code grant flow is enabled. This setting allows admins to specify whether they want to enable CSRF protection for their apps. | |isTranslateHostHeaderEnabled|Boolean| Indicates if the application should translate urls in the reponse headers. Keep this value as `true` unless your application required the original host header in the authentication request. Default value is `true`.| |isTranslateLinksInBodyEnabled|Boolean| Indicates if the application should translate urls in the application body. Keep this value as `false` unless you have hardcoded HTML links to other on-premises applications and don't use custom domains. For more information, see [Link translation with Application Proxy](/azure/active-directory/manage-apps/application-proxy-configure-hard-coded-link-translation). Default value is `false`.|
-|onPremisesApplicationSegments | [onPremisesApplicationSegment](onpremisesapplicationsegment.md) collection| Represents the application segment collection for an on-premises wildcard application. |
+|onPremisesApplicationSegments (deprecated)| [onPremisesApplicationSegment](onpremisesapplicationsegment.md) collection| Represents the application segment collection for an on-premises wildcard application. This property is deprecated and will stop returning data on June 1, 2023. Use **segmentsConfiguration** instead. |
+|segmentsConfiguration|[segmentConfiguration](segmentconfiguration.md)| Represents the collection of application segments for an on-premises wildcard application that's published through Azure AD Application Proxy.|
|singleSignOnSettings|[onPremisesPublishingSingleSignOn](onpremisespublishingsinglesignon.md)| Represents the single sign-on configuration for the on-premises application. | |verifiedCustomDomainCertificatesMetadata|[verifiedCustomDomainCertificatesMetadata](verifiedcustomdomaincertificatesmetadata.md)| Details of the certificate associated with the application when a custom domain is in use. `null` when using the default domain. Read-only.| |verifiedCustomDomainKeyCredential|[keyCredential](keycredential.md)| The associated key credential for the custom domain used. |
Here is a JSON representation of the resource.
"isTranslateHostHeaderEnabled": true, "isTranslateLinksInBodyEnabled": true, "onPremisesApplicationSegments":[{"@odata.type":"microsoft.graph.onPremisesApplicationSegment"}],
+ "segmentsConfiguration":{"@odata.type":"microsoft.graph.segmentConfiguration"},
"singleSignOnSettings": {"@odata.type": "microsoft.graph.onPremisesPublishingSingleSignOn"}, "verifiedCustomDomainCertificatesMetadata": {"@odata.type": "microsoft.graph.verifiedCustomDomainCertificatesMetadata"}, "verifiedCustomDomainKeyCredential": {"@odata.type": "microsoft.graph.keyCredential"},
v1.0 Onpremisespublishingprofile Root https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/onpremisespublishingprofile-root.md
ms.localizationpriority: medium
ms.prod: "applications" doc_type: "resourcePageType" Last updated : 01/20/2022 # On-premises publishing profiles
v1.0 Onpremisespublishingsinglesignon https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/onpremisespublishingsinglesignon.md
If you are configuring password-based single-sign this must be set using [create
| Property | Type | Description | |:-|:|:| |kerberosSignOnSettings| [kerberosSignOnSettings](kerberossignonsettings.md)| The Kerberos Constrained Delegation settings for applications that use Integrated Window Authentication. |
-|singleSignOnMode|singleSignOnMode| The preferred single-sign on mode for the application. Possible values are: `none`, `onPremisesKerberos`, `aadHeaderBased`,`pingHeaderBased`. |
+|singleSignOnMode|singleSignOnMode| The preferred single-sign on mode for the application. Possible values are: `none`, `onPremisesKerberos`, `aadHeaderBased`,`pingHeaderBased`, `oAuthToken`. |
## JSON representation
v1.0 Opentypeextension https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/opentypeextension.md
exposes at https://graph.microsoft.com/v1.0/$metadata.
| Property | Type | Description | |:|:--|:-| |extensionName|String|A unique text identifier for an open type data extension. Required.|
-|id|String| A fully qualified identifier that concatenates the extension type with the **extensionName**. Read-only.|
+|id|String| A fully qualified identifier that concatenates the extension type with the **extensionName**. Read-only. <br/><br/> The **id** must be defined during the Create operation via one of the following ways: <ul><li> Explicitly define the **id** property in the request body. <li> Define an **extensionName** property in the request body, and Microsoft Graph automatically assigns the same value to the **id** property. <ul><li> In subsequent updates, you can change the **extensionName** property value to one that's different from the **id** value. <li>In subsequent updates, specifying only the **id** property in the request body automatically deletes the **extensionName** property from the open extension.</ul></ul>|
## Relationships
Here is a JSON representation of the resource
```json { "extensionName": "string",
- "id": "string (identifier)"
+ "id": "String (identifier)"
} ```
v1.0 Organization https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/organization.md
This resource lets you add your own data to custom properties using [extensions]
| marketingNotificationEmails | String collection | Not nullable. | | onPremisesLastSyncDateTime | DateTimeOffset | The time and date at which the tenant was last synced with the on-premises directory. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is `2014-01-01T00:00:00Z`.| | onPremisesSyncEnabled | Boolean | `true` if this object is synced from an on-premises directory; `false` if this object was originally synced from an on-premises directory but is no longer synced; Nullable. `null` if this object has never been synced from an on-premises directory (default). |
+| partnerTenantType | partnerTenantType | The type of partnership this tenant has with Microsoft. The possible values are: `microsoftSupport`, `syndicatePartner`, `breadthPartner`, `breadthPartnerDelegatedAdmin`, `resellerPartnerDelegatedAdmin`, `valueAddedResellerPartnerDelegatedAdmin`, `unknownFutureValue`. Nullable. For more information about the possible types, see [partnerTenantType values](#partnertenanttype-values).|
| postalCode | String | Postal code of the address for the organization. | | preferredLanguage | String | The preferred language for the organization. Should follow ISO 639-1 Code; for example `en`. | | privacyProfile | [privacyProfile](privacyprofile.md) | The privacy profile of an organization. |
This resource lets you add your own data to custom properties using [extensions]
| state | String | State name of the address for the organization. | | street | String | Street name of the address for organization. | | technicalNotificationMails |String collection | Not nullable. |
+| tenantType | String | Not nullable. The tenant type option that was selected when the tenant was created. The possible values are: <li> `AAD` - An enterprise identity access management (IAM) service that serves business-to-employee and business-to-business (B2B) scenarios. <li> `AAD B2C` A customer identity access management (CIAM) service that serves business-to-consumer (B2C) scenarios. |
| verifiedDomains | [verifiedDomain](verifieddomain.md) collection|The collection of domains associated with this tenant. Not nullable. |
+### partnerTenantType values
+
+| Member | Description |
+|--|-|
+| microsoftSupport | Legacy support tenant of Microsoft that was used to provide administrative support to all customer tenants. |
+| breadthPartner | The partner can provide administrative support for their customers. However, the partner is not allowed to resell to or request delegated admin permissions from customers. |
+| breadthPartnerDelegatedAdmin | Similar to Breadth Partner except they can request for delegated admin permissions (DAP) from customer tenants. |
+| syndicatePartner | The partner exclusively resells and manages Microsoft 365 and Intune for their customers. The customer cannot buy additional subscriptions directly or through other Microsoft partners. |
+| resellerPartnerDelegatedAdmin | The partner that can resell and manage Microsoft 365 and Intune for their customers. There is no exclusivity clause like for syndication partners. The customer can buy additional direct subscriptions directly from Microsoft or through other Microsoft partners. |
+| valueAddedResellerPartnerDelegatedAdmin | Are Tier 2 partners. They are Microsoft partners that have a relationship with another Microsoft partner such as a reseller. |
+| unknownFutureValue | Evolvable enumeration sentinel value. Do not use. |
+ ## Relationships | Relationship | Type |Description|
Here is a JSON representation of the resource
"marketingNotificationEmails": ["String"], "onPremisesLastSyncDateTime": "String (timestamp)", "onPremisesSyncEnabled": true,
+ "partnerTenantType": "String",
"postalCode": "String", "preferredLanguage": "String", "privacyProfile": {"@odata.type": "microsoft.graph.privacyProfile"},
Here is a JSON representation of the resource
"state": "String", "street": "String", "technicalNotificationMails": ["String"],
+ "tenantType": "string",
"verifiedDomains": [{"@odata.type": "microsoft.graph.verifiedDomain"}], "companyLastDirSyncTime": "2019-02-07T20:33:52.942Z", "dirSyncEnabled": true
v1.0 Passwordauthenticationmethod https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/passwordauthenticationmethod.md
Namespace: microsoft.graph
A representation of a user's password. For security, the password itself will never be returned in the object, but action can be taken to reset a password.
+This is a derived type that inherits from the [authenticationMethod](authenticationmethod.md) resource type.
+ ## Methods | Method | Return Type | Description |
v1.0 Passwordlessmicrosoftauthenticatorauthenticationmethod https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/passwordlessmicrosoftauthenticatorauthenticationmethod.md
Namespace: microsoft.graph
A representation of a Microsoft Authenticator Passwordless Phone Sign-in method registered to a user.
+This is a derived type that inherits from the [authenticationMethod](authenticationmethod.md) resource type.
+ > [!CAUTION] > The Microsoft Authenticator Passwordless Phone Sign-in method API is deprecated and will stop returning results on December 31, 2020. Please use the new [Microsoft Authenticator Authentication Method](../resources/microsoftAuthenticatorAuthenticationMethod.md).
v1.0 Passwordlessmicrosoftauthenticatorauthenticationmethodconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/passwordlessmicrosoftauthenticatorauthenticationmethodconfiguration.md
Represents a Microsoft Authenticator Passwordless Phone Sign-in authentication m
## Relationships |Relationship|Type|Description| |:|:|:|
-|includeTargets|[passwordlessMicrosoftAuthenticatorAuthenticationMethodTarget](../resources/passwordlessmicrosoftauthenticatorauthenticationmethodtarget.md) collection|A collection of users or groups who are enabled to use the authentication method.|
+|includeTargets|[passwordlessMicrosoftAuthenticatorAuthenticationMethodTarget](../resources/passwordlessmicrosoftauthenticatorauthenticationmethodtarget.md) collection|A collection of groups that are enabled to use the authentication method.|
## JSON representation The following is a JSON representation of the resource.
v1.0 Passwordlessmicrosoftauthenticatorauthenticationmethodtarget https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/passwordlessmicrosoftauthenticatorauthenticationmethodtarget.md
Title: "passwordlessMicrosoftAuthenticatorAuthenticationMethodTarget resource type"
-description: "A collection of users or groups enabled to use Microsoft Authenticator Passwordless Phone Sign-in authentication methods policy."
+description: "A collection of groups enabled to use Microsoft Authenticator Passwordless Phone Sign-in authentication methods policy."
ms.localizationpriority: medium ms.prod: "identity-and-sign-in"
Namespace: microsoft.graph
[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)]
-A collection of users or groups enabled to use Microsoft Authenticator Passwordless Phone Sign-in authentication methods policy](../resources/passwordlessMicrosoftAuthenticatorAuthenticationMethodConfiguration.md) in Azure AD.
+A collection of groups enabled to use Microsoft Authenticator Passwordless Phone Sign-in authentication methods policy](../resources/passwordlessMicrosoftAuthenticatorAuthenticationMethodConfiguration.md) in Azure AD.
> [!CAUTION] > The Microsoft Authenticator Passwordless Phone Sign-in authentication method policy API is deprecated and stopped returning results on December 31, 2020. Please use the new [Microsoft Authenticator authentication method policy](../resources/microsoftAuthenticatorAuthenticationMethodConfiguration.md).
v1.0 Passwordprofile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/passwordprofile.md
Contains the password profile associated with a user. The **passwordProfile** pr
## Properties | Property | Type |Description| |:|:--|:-|
-|forceChangePasswordNextSignIn|Boolean| `true` if the user must change her password on the next login; otherwise `false`. If not set, default is `false`. **NOTE:** For Azure B2C tenants, set to `false` and instead use custom policies and user flows to force password reset at first sign in. See [Force password reset at first logon](https://github.com/azure-ad-b2c/samples/tree/master/policies/force-password-reset-first-logon). |
+|forceChangePasswordNextSignIn|Boolean| `true` if the user must change her password on the next login; otherwise `false`. If not set, default is `false`. |
|forceChangePasswordNextSignInWithMfa|Boolean| If `true`, at next sign-in, the user must perform a multi-factor authentication (MFA) before being forced to change their password. The behavior is identical to **forceChangePasswordNextSignIn** except that the user is required to first perform a multi-factor authentication before password change. After a password change, this property will be automatically reset to `false`. If not set, default is `false`. | |password|String|The password for the user. This property is required when a user is created. It can be updated, but the user will be required to change the password on the next login. The password must satisfy minimum requirements as specified by the userΓÇÖs **passwordPolicies** property. By default, a strong password is required.|
v1.0 Payload https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/payload.md
+
+ Title: "payload resource type"
+description: "Represents an attack simulation training payload in a tenant."
+
+ms.localizationpriority: medium
++
+# payload resource type
+
+Namespace: microsoft.graph
++
+Represents an attack simulation training payload in a tenant.
+
+Inherits from [entity](../resources/entity.md).
+
+## Methods
+
+|Method|Return type|Description|
+|:|:|:|
+|[List payload](../api/attacksimulationroot-list-payloads.md)|[payload](../resources/payload.md) collection|Get a list of attack simulation payload for a tenant.|
+|[Get payload](../api/attacksimulationroot-get-payload.md)|[payload](../resources/payload.md)|Get an attack simulation payload for a tenant.|
+|[Get payloadDetail](../api/attacksimulationroot-get-payloadsdetails.md)|[payloadDetail](../resources/payloaddetail.md)|Get an attack simulation campaign payload detail for a tenant.|
+
+## Properties
+
+| Property | Type | Description |
+|:-|:|:|
+|brand|[payloadBrand](#payloadbrand-values)|The branch of a payload. Possible values are: `unknown`, `other`, `americanExpress`, `capitalOne`, `dhl`, `docuSign`, `dropbox`, `facebook`, `firstAmerican`, `microsoft`, `netflix`, `scotiabank`, `stewartTitle`, `tesco`, `wellsFargo`, `syrinxCloud`, `adobe`, `teams`, `zoom`, `unknownFutureValue`. |
+|complexity|[payloadComplexity](#payloadcomplexity-values)|The complexity of a payload.Possible values are: `unknown`, `low`, `medium`, `high`, `unknownFutureValue`|
+|createdBy|[emailIdentity](../resources/emailidentity.md)|Identity of the user who created the attack simulation and training campaign payload.|
+|createdDateTime|DateTimeOffset|Date and time when the attack simulation and training campaign payload.|
+|description|String|Description of the attack simulation and training campaign payload.|
+|detail|[payloadDetail](../resources/payloaddetail.md)|Additional details about the payload.|
+|displayName|String|Display name of the attack simulation and training campaign payload. Supports `$filter` and `$orderby`.|
+|id|String|Unique identifier for the attack simulation and training campaign payload. Inherited from [entity](../resources/entity.md).|
+|industry|[payloadIndustry](#payloadindustry-values)|Industry of a payload. Possible values are: `unknown`, `other`, `banking`, `businessServices`, `consumerServices`, `education`, `energy`, `construction`, `consulting`, `financialServices`, `government`, `hospitality`, `insurance`, `legal`, `courierServices`, `IT`, `healthcare`, `manufacturing`, `retail`, `telecom`, `realEstate`, `unknownFutureValue`.|
+|isAutomated|Boolean|Indicates whether the attack simulation and training campaign payload was created from an automation flow. Supports `$filter` and `$orderby`. |
+|isControversial|Boolean|Indicates whether the payload is controversial. |
+|isCurrentEvent|Boolean|Indicates whether the payload is from any recent event. |
+|language|String|Payload language.|
+|lastModifiedBy|[emailIdentity](../resources/emailidentity.md)|Identity of the user who most recently modified the attack simulation and training campaign payload.|
+|lastModifiedDateTime|DateTimeOffset|Date and time when the attack simulation and training campaign payload was last modified. 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`.|
+|payloadTags|String collection|Free text tags for a payload.|
+|platform|payloadDeliveryPlatform|The payload delivery platform for a simulation. Possible values are: `unknown`, `sms`, `email`, `teams`, `unknownFutureValue`.|
+|predictedCompromiseRate|Double|Predicted probability for a payload to phish a targeted user.|
+|simulationAttackType|[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`.|
+|source|[simulationContentSource](../resources/simulation.md#simulationcontentsource-values)|Simulation content source. Supports `$filter` and `$orderby`. Possible values are: `unknown`, `tenant`, `global`, `unknownFutureValue`. Inherited from [simulation](../resources/simulation.md).|
+|status|[simulationContentStatus](../resources/simulation.md#simulationcontentsource-values)|Simulation content status. Supports `$filter` and `$orderby`. Possible values are: `unknown`, `draft`, `ready`, `archive`, `delete`, `unknownFutureValue`. Inherited from [simulation](../resources/simulation.md).|
+|technique|[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).|
+|theme|[payloadTheme](#payloadtheme-values)|The theme of a payload. Possible values are: `unknown`, `other`, `accountActivation`, `accountVerification`, `billing`, `cleanUpMail`, `controversial`, `documentReceived`, `expense`, `incomingMessages`, `invoice`, `itemReceived`, `loginAlert`, `mailReceived`, `password`, `payment`, `payroll`, `personalizedOffer`, `quarantine`, `remoteWork`, `reviewMessage`, `securityUpdate`, `serviceSuspended`, `signatureRequired`, `upgradeMailboxStorage`, `verifyMailbox`, `voicemail`, `advertisement`, `employeeEngagement`, `unknownFutureValue`.|
+
+### payloadTheme values
+
+|Member|Description |
+|:|:|
+|unknown| The payload theme is not defined. |
+|other| The payload is other.|
+|accountActivation| Payload theme is of account activation.|
+|accountVerification| Payload theme is of account verification.|
+|billing| Payload theme is of billing type.|
+|cleanUpMail| Payload mail cleanup details.|
+|controversial| Payload controversial information.|
+|documentReceived| Payload tells that the document has been received.|
+|expense| Payload contains expense-related details.|
+|fax| Payload contains fax-specific details.|
+|financeReport| Payload contains a finance report.|
+|incomingMessages| Payload contains details about incoming messages.|
+|invoice| Payload contains invoice details.|
+|itemReceived| Payload contains details about an item received.|
+|loginAlert| Payload contains login alert information.|
+|mailReceived| Payload contains information about a mail received.|
+|password| Payload with password details.|
+|payment| Payload with payment details.|
+|payroll| Payload with payroll-specific details.|
+|personalizedOffer| Payload with details about a personalized offer.|
+|quarantine| Payload with quarantine-related details.|
+|remoteWork| Payload related to as remote work.|
+|reviewMessage| Payload with a review message request.|
+|securityUpdate| Payload mentioning that a security update is required.|
+|serviceSuspended| Payload mentioning that a service has been suspended.|
+|signatureRequired| Payload telling that a signature is required.|
+|upgradeMailboxStorage| Payload asking to upgrade the mailbox storage.|
+|verifyMailbox| Payload asking for mailbox verification.|
+|voicemail| Payload with voicemail details.|
+|advertisement| Payload with advertisement details.|
+|employeeEngagement| Payload with employee engagement details.|
+|unknownFutureValue| Evolvable enumeration sentinel value. Do not use. |
+
+### payloadBrand values
+
+|Member|Description |
+|:|:|
+|unknown| Payload brand as unknown.|
+|other| Payload brand as other.|
+|americanExpress| Payload brand as American Express.|
+|capitalOne| Payload brand as Capital One.|
+|dhl| Payload brand as DHL.|
+|docuSign| Payload brand as DocuSign.|
+|dropbox| Payload brand as Dropbox.|
+|facebook| Payload brand as Facebook.|
+|firstAmerican| Payload brand as First American.|
+|microsoft| Payload brand as Microsoft.|
+|netflix| Payload brand as Netflix.|
+|scotiabank| Payload brand as Scotiabank.|
+|sendGrid| Payload brand as SendGrid.|
+|stewartTitle| Payload brand as Stewart Title.|
+|tesco| Payload brand as Tesco.|
+|wellsFargo| Payload brand as Wells Fargo.|
+|syrinxCloud| Payload brand as Syrinx Cloud.|
+|adobe| Payload brand as Adobe.|
+|teams| Payload brand as Teams.|
+|zoom| Payload brand as Zoom.|
+|unknownFutureValue| Evolvable enumeration sentinel value. Do not use. |
+
+### payloadIndustry values
+
+|Member|Description |
+|:|:|
+|unknown| Payload industry as unknown.|
+|other| Payload industry as other.|
+|banking| Payload industry as banking.|
+|businessServices| Payload industry as business services.|
+|consumerServices| Payload industry as consumer services.|
+|education| Payload industry as education.|
+|energy| Payload industry as energy.|
+|construction| Payload industry as construction.|
+|consulting| Payload industry as consulting.|
+|financialServices| Payload industry as financial services.|
+|government| Payload industry as government.|
+|hospitality| Payload industry as hospitality.|
+|insurance| Payload industry as insurance.|
+|legal| Payload industry as legal.|
+|courierServices| Payload industry as courier services.|
+|IT| Payload industry as IT.|
+|healthcare| Payload industry as healthcare.|
+|manufacturing| Payload industry as manufacturing.|
+|retail| Payload industry as retail.|
+|telecom| Payload industry as telecom.|
+|realEstate| Payload industry as real estate.|
+|unknownFutureValue| Evolvable enumeration sentinel value. Do not use. |
+
+### payloadComplexity values
+
+|Member|Description |
+|:|:|
+|unknown| The payload complexity is not defined. |
+|low| The payload complexity is low. |
+|medium| The payload complexity is medium. |
+|high| The payload complexity is high. |
+|unknownFutureValue| Evolvable enumeration sentinel value. Do not use. |
+
+## JSON representation
+
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.payload"
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.payload",
+ "brand": {"@odata.type": "microsoft.graph.payloadBrand"},
+ "complexity": {"@odata.type": "microsoft.graph.payloadComplexity"},
+ "createdBy": {"@odata.type": "microsoft.graph.emailIdentity"},
+ "createdDateTime": "String (timestamp)",
+ "description": "String",
+ "detail": {"@odata.type": "microsoft.graph.payloadDetail"},
+ "displayName": "String",
+ "id": "String (identifier)",
+ "industry": {"@odata.type": "microsoft.graph.payloadIndustry"},
+ "isAutomated": "Boolean",
+ "isControversial": "Boolean",
+ "isCurrentEvent": "Boolean",
+ "language": "String",
+ "lastModifiedBy": {"@odata.type": "microsoft.graph.emailIdentity"},
+ "lastModifiedDateTime": "String (timestamp)",
+ "name": "String",
+ "payloadTags": ["String"],
+ "platform": {"@odata.type": "microsoft.graph.payloadDeliveryPlatform"},
+ "predictedCompromiseRate": "Double",
+ "simulationAttackType": {"@odata.type": "microsoft.graph.simulationAttackType"},
+ "source": {"@odata.type": "microsoft.graph.simulationContentSource"},
+ "status": {"@odata.type": "microsoft.graph.simulationContentStatus"},
+ "technique": {"@odata.type": "microsoft.graph.simulationAttackType"},
+ "theme": {"@odata.type": "microsoft.graph.payloadTheme"}
+}
+```
++
+## See also
+- [Simulate a phishing attack](/microsoft-365/security/office-365-security/attack-simulation-training?view=o365-worldwide&preserve-view=true)
+- [Get started using attack simulation training](/microsoft-365/security/office-365-security/attack-simulation-training-get-started?view=o365-worldwide&preserve-view=true#simulations).
v1.0 Payloadcoachmark https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/payloadcoachmark.md
+
+ Title: "payloadCoachmark resource type"
+description: "Represents the payload coachmark detail of a payload."
+
+ms.localizationpriority: medium
++
+# payloadCoachmark resource type
+
+Namespace: microsoft.graph
++
+Represents the payload coachmark detail of a payload.
+
+## Properties
+
+|Property|Type|Description|
+|:|:|:|
+|coachmarkLocation|[coachmarkLocation](../resources/coachmarklocation.md)|The coachmark location.|
+|description|String|The description about the coachmark.|
+|indicator|String|The coachmark indicator.|
+|isValid|Boolean|Indicates whether the coachmark is valid or not.|
+|language|String|The coachmark language.|
+|order|String|The coachmark order.|
+
+## Relationships
+
+None.
+
+## JSON representation
+
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.payloadCoachmark"
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.payloadCoachmark",
+ "coachmarkLocation": {
+ "@odata.type": "microsoft.graph.coachmarkLocation"
+ },
+ "description": "String",
+ "indicator": "String",
+ "isValid": "Boolean",
+ "language": "String",
+ "order": "String"
+}
+```
v1.0 Payloaddetail https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/payloaddetail.md
+
+ Title: "payloadDetail resource type"
+description: "Represents details about a payload."
+
+ms.localizationpriority: medium
++
+# payloadDetail resource type
+
+Namespace: microsoft.graph
++
+Represents details about a payload.
+
+Base type of [emailPayloadDetail](../resources/emailpayloaddetail.md).
+
+## Properties
+
+|Property|Type|Description|
+|:|:|:|
+|coachmarks|[payloadCoachmark](../resources/payloadcoachmark.md) collection|Payload coachmark details.|
+|content|String|Payload content details.|
+|phishingUrl|String|The phishing URL used to target a user.|
+
+## Relationships
+
+None.
+
+## JSON representation
+
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.payloadDetail"
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.payloadDetail",
+ "coachMarks": [
+ {
+ "@odata.type": "microsoft.graph.payloadCoachmark"
+ }
+ ],
+ "content": "String",
+ "phishingUrl": "String"
+}
+```
v1.0 Phoneauthenticationmethod https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/phoneauthenticationmethod.md
Mobile phones can be used for both SMS and voice calls, depending on the tenant
An office phone can only receive voice calls, not SMS messages.
+This is a derived type that inherits from the [authenticationMethod](authenticationmethod.md) resource type.
+ ## Methods | Method | Return Type | Description |
v1.0 Plannerbucket https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/plannerbucket.md
Title: "plannerBucket resource type"
-description: "Represents a bucket for tasks in a plan in Microsoft 365. It is contained in a plannerPlan and can have a collection of plannerTasks."
+description: "Represents a bucket for tasks in a plan in Microsoft 365."
ms.localizationpriority: medium ms.prod: "planner"
Represents a bucket (or "custom column") for tasks in a plan in Microsoft 365. I
## Properties | Property | Type |Description| |:|:--|:-|
-|id|String| Read-only. ID of the bucket. It is 28 characters long and case-sensitive. [Format validation](tasks-identifiers-disclaimer.md) is done on the service.|
-|name|String|Name of the bucket.|
-|orderHint|String|Hint used to order items of this type in a list view. The format is defined as outlined [here](planner-order-hint-format.md).|
|creationSource|[plannerBucketCreation](plannerbucketcreation.md)| Contains information about the origin of the bucket.|
+|id|String| Read-only. Unique identifier for the bucket. It is 28 characters long and case-sensitive. The [format validation](tasks-identifiers-disclaimer.md) is done on the service.|
+|name|String|Name of the bucket.|
+|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).|
|planId|String|Plan ID to which the bucket belongs.| ## Relationships
The following is a JSON representation of the resource.
```json {
+ "creationSource": {"@odata.type": "#microsoft.graph.plannerBucketCreation"},
"id": "String (identifier)", "name": "String", "orderHint": "String",
- "creationSource": {"@odata.type": "#microsoft.graph.plannerBucketCreation"},
"planId": "String" } ```
The following is a JSON representation of the resource.
"suppressions": [] } -->--
v1.0 Plannerexternalbucketsource https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/plannerexternalbucketsource.md
doc_type: resourcePageType
Namespace: microsoft.graph
-Contains information about the relationship of a [plannerBucket](plannerbucket.md) to a user experience outside of Planner. Buckets in Planner can be surfaced in or synced with other experiences to track work in the context of that experience. Data in the plannerExternalBucketSource can be displayed in a user interface, used for sync information utilized by external services, or used to simply point to where a bucket was created in an external service. The combination of contextScenarioId and externalObjectId is enforced to be unique within a tenant. If creation is called with an existing contextScenarioId and externalObjectId, the existing object is returned with no modifications. This type derives from [plannerBucketCreation](plannerBucketCreation.md).
+Contains information about the relationship of a [plannerBucket](plannerbucket.md) to a user experience outside of Planner. This allows surfacing or syncing buckets in Planner with other experiences to track work in the context of that experience.
+
+You can display data in a **plannerExternalBucketSource** in a user interface to sync information for an external service, or to simply point to where a task was created in the external service.
+
+The combination of the **contextScenarioId** and **externalObjectId** properties is unique within a tenant. If creation is called with existing **contextScenarioId** and **externalObjectId** values, the existing object is returned with no modifications.
+
+This type is derived from [plannerBucketCreation](plannerBucketCreation.md).
## Properties |Property|Type|Description|
v1.0 Plannerexternalplansource https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/plannerexternalplansource.md
doc_type: resourcePageType
Namespace: microsoft.graph
-Contains information about the relationship of a [plannerPlan](plannerplan.md) to a user experience outside of Planner. Plans in Planner can be surfaced in or synced with other experiences to track work in the context of that experience. Data in the plannerExternalPlanSource can be displayed in a user interface, used for sync information utilized by external services, or used to simply point to where a plan was created in an external service. The combination of contextScenarioId and externalObjectId is enforced to be unique within a tenant. If creation is called with an existing contextScenarioId and externalObjectId, the existing object is returned with no modifications. This type derives from [plannerPlanCreation](plannerPlanCreation.md).
+Contains information about the relationship of a [plannerPlan](plannerplan.md) to a user experience outside of Planner. This allows surfacing or syncing plans in Planner with other experiences to track work in the context of that experience.
+
+You can display data in a **plannerExternalPlanSource** in a user interface to sync information for an external service, or to simply point to where a plan was created in the external service.
+
+The combination of the **contextScenarioId** and **externalObjectId** properties is unique within a tenant. If creation is called with existing **contextScenarioId** and **externalObjectId** values, the existing object is returned with no modifications.
+
+This type is derived from [plannerPlanCreation](plannerPlanCreation.md).
## Properties |Property|Type|Description|
v1.0 Plannerexternaltasksource https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/plannerexternaltasksource.md
doc_type: resourcePageType
Namespace: microsoft.graph
-Contains information about the relationship of a [plannerTask](plannerTask.md) to a user experience outside of Planner. Tasks in Planner can be surfaced in or synced with other experiences to track work in the context of that experience. Data in the plannerExternalTaskSource can be displayed in a user interface, used for sync information utilized by external services, or used to simply point to where a task was created in an external service. The combination of contextScenarioId and externalObjectId is enforced to be unique within a tenant. If creation is called with an existing contextScenarioId and externalObjectId, the existing object is returned with no modifications. This type derives from [plannerTaskCreation](plannerTaskCreation.md).
+Contains information about the relationship of a [plannerTask](plannerTask.md) to a user experience outside of Planner. This allows surfacing or syncing tasks in Planner with other experiences to track work in the context of that experience.
+
+You can display data in a **plannerExternalTaskSource** in a user interface to sync information for an external service, or to simply point to where a task was created in the external service.
+
+The combination of the **contextScenarioId** and **externalObjectId** properties is unique within a tenant. If creation is called with existing **contextScenarioId** and **externalObjectId** values, the existing object is returned with no modifications.
+
+This type is derived from [plannerTaskCreation](plannerTaskCreation.md).
## Properties |Property|Type|Description|
v1.0 Plannerfieldrules https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/plannerfieldrules.md
+
+ Title: "plannerFieldRules resource type"
+description: "Represents the rules and permissions that apply to a property as part of a plannerTaskPropertyRule."
+
+ms.localizationpriority: medium
++
+# plannerFieldRules resource type
+
+Namespace: microsoft.graph
++
+Represents the rules and permissions that apply to a property as part of a [plannerTaskPropertyRule](../resources/plannertaskpropertyrule.md).
+
+## Properties
+
+|Property|Type|Description|
+|:|:|:|
+|defaultRules|String collection|The default rules that apply if no override matches to the current data.|
+|overrides|[plannerRuleOverride](../resources/plannerruleoverride.md) collection|Overrides that specify different rules for specific data associated with the field.|
+
+## Relationships
+
+None.
+
+## JSON representation
+
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.plannerFieldRules"
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.plannerFieldRules",
+ "defaultRules": ["String"],
+ "overrides": [{"@odata.type": "microsoft.graph.plannerRuleOverride"}]
+}
+```
v1.0 Plannerplan https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/plannerplan.md
Represents a plan in Microsoft 365. A plan can be owned by a [group](group.md) a
## Properties | Property | Type |Description| |:|:--|:-|
-|container|[plannerPlanContainer](../resources/plannerplancontainer.md)|Identifies the container of the plan. After it is set, this property canΓÇÖt be updated. Required.|
+|container|[plannerPlanContainer](../resources/plannerplancontainer.md)|Identifies the container of the plan. Specify only the **url**, the **containerId** and **type**, or all properties. After it is set, this property canΓÇÖt be updated. Required.|
|contexts|[plannerPlanContextCollection](plannerplancontextcollection.md)| Read-only. Additional user experiences in which this plan is used, represented as [plannerPlanContext](plannerplancontext.md) entries.| |createdBy|[identitySet](identityset.md)|Read-only. The user who created the plan.| |createdDateTime|DateTimeOffset|Read-only. Date and time at which the plan is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is `2014-01-01T00:00:00Z`|
v1.0 Plannerplanconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/plannerplanconfiguration.md
+
+ Title: "plannerPlanConfiguration resource type"
+description: "Represents the configuration of plannerPlan resources created for a businessScenario."
+
+ms.localizationpriority: medium
++
+# plannerPlanConfiguration resource type
+
+Namespace: microsoft.graph
++
+Represents the configuration of [plannerPlan](../resources/plannerplan.md) resources created for a [businessScenario](../resources/businessscenario.md).
+
+Inherits from [entity](../resources/entity.md).
+
+## Methods
+
+|Method|Return type|Description|
+|:|:|:|
+|[Get plannerPlanConfiguration](../api/plannerplanconfiguration-get.md)|[plannerPlanConfiguration](../resources/plannerplanconfiguration.md)|Read the properties and relationships of a [plannerPlanConfiguration](../resources/plannerplanconfiguration.md) object.|
+|[Update plannerPlanConfiguration](../api/plannerplanconfiguration-update.md)|[plannerPlanConfiguration](../resources/plannerplanconfiguration.md)|Update the properties of a [plannerPlanConfiguration](../resources/plannerplanconfiguration.md) object for a [businessScenario](../resources/businessscenario.md). |
+|[List localizations](../api/plannerplanconfiguration-list-localizations.md)|[plannerPlanConfigurationLocalization](../resources/plannerplanconfigurationlocalization.md) collection|Get the plannerPlanConfigurationLocalization resources from the localizations navigation property.|
+|[Create plannerPlanConfigurationLocalization](../api/plannerplanconfiguration-post-localizations.md)|[plannerPlanConfigurationLocalization](../resources/plannerplanconfigurationlocalization.md)|Create a new plannerPlanConfigurationLocalization object.|
+
+## Properties
+
+|Property|Type|Description|
+|:|:|:|
+|buckets|[plannerPlanConfigurationBucketDefinition](../resources/plannerplanconfigurationbucketdefinition.md) collection|List the buckets that should be created in the plan.|
+|createdBy|[identitySet](../resources/identityset.md)|The identity of the creator of the plan configuration.|
+|createdDateTime|DateTimeOffset|The date and time when the plan configuration was created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is `2014-01-01T00:00:00Z`. |
+|defaultLanguage|String|The language code for the default language to be used for the names of the objects created for the plan.|
+|id|String|The unique identifier for the plan configuration. Inherited from [entity](../resources/entity.md). |
+|lastModifiedBy|[identitySet](../resources/identityset.md)|The identity of the user who last modified the plan configuration. |
+|lastModifiedDateTime|DateTimeOffset|The date and time when the plan configuration was last modified. 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`. |
+
+## Relationships
+
+|Relationship|Type|Description|
+|:|:|:|
+|localizations|[plannerPlanConfigurationLocalization](../resources/plannerplanconfigurationlocalization.md) collection|Localized names for the plan configuration.|
+
+## JSON representation
+
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "keyProperty": "id",
+ "@odata.type": "microsoft.graph.plannerPlanConfiguration",
+ "baseType": "microsoft.graph.entity",
+ "openType": false
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.plannerPlanConfiguration",
+ "buckets": [{"@odata.type": "microsoft.graph.plannerPlanConfigurationBucketDefinition"}],
+ "createdBy": {"@odata.type": "microsoft.graph.identitySet"},
+ "createdDateTime": "String (timestamp)",
+ "defaultLanguage": "String",
+ "id": "String (identifier)",
+ "lastModifiedBy": {"@odata.type": "microsoft.graph.identitySet"},
+ "lastModifiedDateTime": "String (timestamp)"
+}
+```
v1.0 Plannerplanconfigurationbucketdefinition https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/plannerplanconfigurationbucketdefinition.md
+
+ Title: "plannerPlanConfigurationBucketDefinition resource type"
+description: "Represents a bucket in a plannerPlanConfiguration."
+
+ms.localizationpriority: medium
++
+# plannerPlanConfigurationBucketDefinition resource type
+
+Namespace: microsoft.graph
++
+Represents a bucket in a [plannerPlanConfiguration](../resources/plannerplanconfiguration.md).
+
+## Properties
+
+|Property|Type|Description|
+|:|:|:|
+|externalBucketId|String|Application-specified identifier of the bucket. |
+
+## Relationships
+
+None.
+
+## JSON representation
+
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.plannerPlanConfigurationBucketDefinition"
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.plannerPlanConfigurationBucketDefinition",
+ "externalBucketId": "String"
+}
+```
v1.0 Plannerplanconfigurationbucketlocalization https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/plannerplanconfigurationbucketlocalization.md
+
+ Title: "plannerPlanConfigurationBucketLocalization resource type"
+description: "Represents the localized name of a bucket in a plannerPlanConfigurationLocalization."
+
+ms.localizationpriority: medium
++
+# plannerPlanConfigurationBucketLocalization resource type
+
+Namespace: microsoft.graph
++
+Represents the localized name of a bucket in a [plannerPlanConfigurationLocalization](../resources/plannerplanconfigurationlocalization.md).
+
+## Properties
+
+|Property|Type|Description|
+|:|:|:|
+|externalBucketId|String|Application-specified identifier of the bucket.|
+|name|String|Name of the bucket.|
+
+## Relationships
+
+None.
+
+## JSON representation
+
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.plannerPlanConfigurationBucketLocalization"
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.plannerPlanConfigurationBucketLocalization",
+ "externalBucketId": "String",
+ "name": "String"
+}
+```
v1.0 Plannerplanconfigurationlocalization https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/plannerplanconfigurationlocalization.md
+
+ Title: "plannerPlanConfigurationLocalization resource type"
+description: "Represents the localized names for a plannerPlanConfiguration for a specific language."
+
+ms.localizationpriority: medium
++
+# plannerPlanConfigurationLocalization resource type
+
+Namespace: microsoft.graph
++
+Represents the localized names for a [plannerPlanConfiguration](../resources/plannerplanconfiguration.md) for a specific language.
+
+Inherits from [entity](../resources/entity.md).
+
+## Methods
+
+|Method|Return type|Description|
+|:|:|:|
+|[List plannerPlanConfigurationLocalizations](../api/plannerplanconfiguration-list-localizations.md)|[plannerPlanConfigurationLocalization](../resources/plannerplanconfigurationlocalization.md) collection|Get a list of the [plannerPlanConfigurationLocalization](../resources/plannerplanconfigurationlocalization.md) objects and their properties.|
+|[Create plannerPlanConfigurationLocalization](../api/plannerplanconfiguration-post-localizations.md)|[plannerPlanConfigurationLocalization](../resources/plannerplanconfigurationlocalization.md)|Create a new [plannerPlanConfigurationLocalization](../resources/plannerplanconfigurationlocalization.md) object.|
+|[Get plannerPlanConfigurationLocalization](../api/plannerplanconfigurationlocalization-get.md)|[plannerPlanConfigurationLocalization](../resources/plannerplanconfigurationlocalization.md)|Read the properties and relationships of a [plannerPlanConfigurationLocalization](../resources/plannerplanconfigurationlocalization.md) object.|
+|[Update plannerPlanConfigurationLocalization](../api/plannerplanconfigurationlocalization-update.md)|[plannerPlanConfigurationLocalization](../resources/plannerplanconfigurationlocalization.md)|Update the properties of a [plannerPlanConfigurationLocalization](../resources/plannerplanconfigurationlocalization.md) object.|
+|[Delete plannerPlanConfigurationLocalization](../api/plannerplanconfiguration-delete-localizations.md)|None|Delete a [plannerPlanConfigurationLocalization](../resources/plannerplanconfigurationlocalization.md) object.|
+
+## Properties
+|Property|Type|Description|
+|:|:|:|
+|buckets|[plannerPlanConfigurationBucketLocalization](../resources/plannerplanconfigurationbucketlocalization.md) collection|Localized names for configured buckets in the plan configuration.|
+|id|String|The unique identifier for the plan configuration location. Inherited from [entity](../resources/entity.md).|
+|languageTag|String|The language code associated with the localized names in this object.|
+|planTitle|String|Localized title of the plan.|
+
+## Relationships
+None.
+
+## JSON representation
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "keyProperty": "id",
+ "@odata.type": "microsoft.graph.plannerPlanConfigurationLocalization",
+ "baseType": "microsoft.graph.entity",
+ "openType": false
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.plannerPlanConfigurationLocalization",
+ "buckets": [{"@odata.type": "microsoft.graph.plannerPlanConfigurationBucketLocalization"}],
+ "id": "String (identifier)",
+ "languageTag": "String",
+ "planTitle": "String"
+
+}
+```
v1.0 Plannerplancontainer https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/plannerplancontainer.md
Planner currently supports the container types listed in the following table. Wh
## Properties |Property|Type|Description| |:|:|:|
-|containerId|String|The identifier of the resource that contains the plan.|
-|type|plannerContainerType| The type of the resource that contains the plan. See the previous table for supported types. Possible values are: `group`, `unknownFutureValue`, `roster` and `project`. Note that you must use the `Prefer: include-unknown-enum-members` request header to get the following value in this [evolvable enum](/graph/best-practices-concept#handling-future-members-in-evolvable-enumerations): `roster`, `project`.|
-|url|String|The full canonical URL of the container.|
+|containerId|String|The identifier of the resource that contains the plan. Optional.|
+|type|plannerContainerType|The type of the resource that contains the plan. For supported types, see the previous table. Possible values are: `group`, `unknownFutureValue`, `roster`, and `project`. Note that you must use the `Prefer: include-unknown-enum-members` request header to get the following value in this [evolvable enum](/graph/best-practices-concept#handling-future-members-in-evolvable-enumerations): `roster`, `project`. Optional.|
+|url|String|The full canonical URL of the container. Optional.|
## Relationships None.
v1.0 Plannerpropertyrule https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/plannerpropertyrule.md
+
+ Title: "plannerPropertyRule resource type"
+description: "An abstract base type of all entity rule definitions for Microsoft Planner."
+
+ms.localizationpriority: medium
++
+# plannerPropertyRule resource type
+
+Namespace: microsoft.graph
++
+An abstract base type of all entity rule definitions for Microsoft Planner.
+
+Base type of [plannerTaskPropertyRule](plannertaskpropertyrule.md).
+
+## Properties
+
+|Property|Type|Description|
+|:|:|:|
+|ruleKind|plannerRuleKind|Identifies which type of property rules is represented by this instance. The possible values are: `taskRule`, `bucketRule`, `planRule`, `unknownFutureValue`.|
+
+## Relationships
+
+None.
+
+## JSON representation
+
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.plannerPropertyRule"
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.plannerPropertyRule",
+ "ruleKind": "String"
+}
+```
v1.0 Plannerrelationshipbasedusertype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/plannerrelationshipbasedusertype.md
+
+ Title: "plannerRelationshipBasedUserType resource type"
+description: "Represents a role based on the caller's relationship to the businessScenarioTask that a plannerTaskRoleBasedRule can be applied to."
+
+ms.localizationpriority: medium
++
+# plannerRelationshipBasedUserType resource type
+
+Namespace: microsoft.graph
++
+Represents a role based on the caller's relationship to the [businessScenarioTask](../resources/businessscenariotask.md) that a [plannerTaskRoleBasedRule](../resources/plannertaskrolebasedrule.md) can be applied to.
+
+Inherits from [plannerTaskConfigurationRoleBase](../resources/plannertaskconfigurationrolebase.md).
+
+## Properties
+
+|Property|Type|Description|
+|:|:|:|
+|role|plannerRelationshipUserRoles|Identifies the relationship of the caller to the task. The possible values are: `defaultRules`, `groupOwners`, `groupMembers`, `taskAssignees`, `applications`, `unknownFutureValue`.|
+|roleKind|plannerUserRoleKind|The kind of the rule. The value must be `relationship`. The possible values are: `relationship`, `unknownFutureValue`. Inherited from [plannerTaskConfigurationRoleBase](../resources/plannertaskconfigurationrolebase.md).|
+
+## Relationships
+
+None.
+
+## JSON representation
+
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.plannerRelationshipBasedUserType"
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.plannerRelationshipBasedUserType",
+ "role": "String",
+ "roleKind": "String"
+}
+```
v1.0 Plannerroster https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/plannerroster.md
Deleting a **plannerRoster** will also delete the plan and all tasks in the plan
* The **plannerRoster** doesn't contain a plan 24 hours after its creation. Membership information will be completely erased within 30 days of this deletion. * The **plannerRoster** doesn't have any users remaining in the membership list because the last user removed themselves. Roster, its plan and all contained tasks will be deleted within 30 days of this operation.
-* The **plannerRoster** doesn't have any users remaining in the membership list because the last user was permanently deleted. Roster, its plan and all contained tasks will be deleted immediately. Deleted users are permanently erased wihtin 30 days of their deletion; however, tenant administrators can also choose to permanently delete users without this delay.
+* The **plannerRoster** doesn't have any users remaining in the membership list because the last user was permanently deleted. Roster, its plan and all contained tasks will be deleted immediately. Deleted users are permanently erased within 30 days of their deletion; however, tenant administrators can also choose to permanently delete users without this delay.
## Methods
v1.0 Plannerruleoverride https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/plannerruleoverride.md
+
+ Title: "plannerRuleOverride resource type"
+description: "Represents an overridden rule as part of plannerFieldRules."
+
+ms.localizationpriority: medium
++
+# plannerRuleOverride resource type
+
+Namespace: microsoft.graph
++
+Represents an overridden rule as part of [plannerFieldRules](../resources/plannerfieldrules.md).
+
+## Properties
+
+|Property|Type|Description|
+|:|:|:|
+|name|String|Name of the override. Allowed override values will be dependent on the property affected by the rule.|
+|rules|String collection|Overridden rules. These are used as rules for the override instead of the default rules.|
+
+## Relationships
+
+None.
+
+## JSON representation
+
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.plannerRuleOverride"
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.plannerRuleOverride",
+ "name": "String",
+ "rules": ["String"]
+}
+```
v1.0 Plannertaskconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/plannertaskconfiguration.md
+
+ Title: "plannerTaskConfiguration resource type"
+description: "Represents the configuration of plannerTasks created for a businessScenario."
+
+ms.localizationpriority: medium
++
+# plannerTaskConfiguration resource type
+
+Namespace: microsoft.graph
++
+Represents the configuration of [plannerTasks](../resources/plannertask.md) created for a [businessScenario](../resources/businessscenario.md).
+
+Inherits from [entity](../resources/entity.md).
+
+## Methods
+
+|Method|Return type|Description|
+|:|:|:|
+|[Get plannerTaskConfiguration](../api/plannertaskconfiguration-get.md)|[plannerTaskConfiguration](../resources/plannertaskconfiguration.md)|Read the properties and relationships of a [plannerTaskConfiguration](../resources/plannertaskconfiguration.md) object.|
+|[Update plannerTaskConfiguration](../api/plannertaskconfiguration-update.md)|[plannerTaskConfiguration](../resources/plannertaskconfiguration.md)|Update the properties of a [plannerTaskConfiguration](../resources/plannertaskconfiguration.md) object.|
+
+## Properties
+
+|Property|Type|Description|
+|:|:|:|
+|editPolicy|[plannerTaskPolicy](../resources/plannertaskpolicy.md)|Policy configuration for tasks created for the businessScenario when they are being changed outside of the scenario.|
+|id|String|The unique identifier for the task configuration. Inherited from [entity](../resources/entity.md).|
+
+## Relationships
+
+None.
+
+## JSON representation
+
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "keyProperty": "id",
+ "@odata.type": "microsoft.graph.plannerTaskConfiguration",
+ "baseType": "microsoft.graph.entity",
+ "openType": false
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.plannerTaskConfiguration",
+ "editPolicy": {"@odata.type": "microsoft.graph.plannerTaskPolicy"},
+ "id": "String (identifier)"
+}
+```
v1.0 Plannertaskconfigurationrolebase https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/plannertaskconfigurationrolebase.md
+
+ Title: "plannerTaskConfigurationRoleBase resource type"
+description: "An abstract type that represents a role that a plannerTaskRoleBasedRule can be applied to."
+
+ms.localizationpriority: medium
++
+# plannerTaskConfigurationRoleBase resource type
+
+Namespace: microsoft.graph
++
+An abstract type that represents a role that a [plannerTaskRoleBasedRule](../resources/plannertaskrolebasedrule.md) can be applied to.
+
+## Properties
+
+|Property|Type|Description|
+|:|:|:|
+|roleKind|plannerUserRoleKind|Type of the role. The possible values are: `relationship`, `unknownFutureValue`.|
+
+## Relationships
+
+None.
+
+## JSON representation
+
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.plannerTaskConfigurationRoleBase"
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.plannerTaskConfigurationRoleBase",
+ "roleKind": "String"
+}
+```
v1.0 Plannertaskpolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/plannertaskpolicy.md
+
+ Title: "plannerTaskPolicy resource type"
+description: "Represents the policy configuration for tasks created for a businessScenario when they are being changed outside of the scenario."
+
+ms.localizationpriority: medium
++
+# plannerTaskPolicy resource type
+
+Namespace: microsoft.graph
++
+Represents the policy configuration for [tasks](../resources/businessscenariotask.md) created for a [businessScenario](../resources/businessscenario.md) when they are being changed outside of the scenario.
+
+## Properties
+
+|Property|Type|Description|
+|:|:|:|
+|rules|[plannerTaskRoleBasedRule](../resources/plannertaskrolebasedrule.md) collection|The rules that should be enforced on the tasks when they are being changed outside of the scenario, based on the role of the caller.|
+
+## Relationships
+
+None.
+
+## JSON representation
+
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.plannerTaskPolicy"
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.plannerTaskPolicy",
+ "rules": [{"@odata.type": "microsoft.graph.plannerTaskRoleBasedRule"}]
+}
+```
v1.0 Plannertaskpropertyrule https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/plannertaskpropertyrule.md
+
+ Title: "plannerTaskPropertyRule resource type"
+description: "Represents specific restrictions that apply to editing a plannerTask."
+
+ms.localizationpriority: medium
++
+# plannerTaskPropertyRule resource type
+
+Namespace: microsoft.graph
++
+Represents specific restrictions that apply to editing a [plannerTask](../resources/plannertask.md). For more details, see [Configuring task rules in Planner](/graph/planner-task-rules-overview).
+
+Inherits from [plannerPropertyRule](../resources/plannerpropertyrule.md).
+
+## Properties
+
+|Property|Type|Description|
+|:|:|:|
+|appliedCategories|[plannerFieldRules](../resources/plannerfieldrules.md)|Rules and restrictions for applied categories. This value does not currently support overrides. Accepted values for the default rule and individual overrides are `allow`, `block`.|
+|assignments|[plannerFieldRules](../resources/plannerfieldrules.md)|Rules and restrictions for assignments. Allowed overrides are `userCreated` and `applicationCreated`. Accepted values for the default rule and individual overrides are `allow`, `add`, `addSelf`, `addOther`, `remove`, `removeSelf`, `removeOther`, `block`.|
+|checkLists|[plannerFieldRules](../resources/plannerfieldrules.md)|Rules and restrictions for checklist. Allowed overrides are `userCreated` and `applicationCreated`. Accepted values for the default rule and individual overrides are `allow`, `add`, `remove`, `update`, `check`, `reorder`, `block`.|
+|delete|String collection|Rules and restrictions for deleting the task. Accepted values are `allow` and `block`.|
+|dueDate|String collection|Rules and restrictions for changing the due date of the task. Accepted values are `allow` and `block`.|
+|move|String collection|Rules and restrictions for moving the task between buckets or plans. Accepted values are `allow`, `moveBetweenPlans`, `moveBetweenBuckets`, and `block`.|
+|notes|String collection|Rules and restrictions for changing the notes of the task. Accepted values are `allow` and `block`.|
+|order|String collection|Rules and restrictions for changing the order of the task. Accepted values are `allow` and `block`.|
+|percentComplete|String collection|Rules and restrictions for changing the completion percentage of the task. Accepted values are `allow`, `setToComplete`, `setToNotStarted`, `setToInProgress`, and `block`.|
+|previewType|String collection|Rules and restrictions for changing the preview type of the task. Accepted values are `allow` and `block`.|
+|priority|String collection|Rules and restrictions for changing the priority of the task. Accepted values are `allow` and `block`.|
+|references|[plannerFieldRules](../resources/plannerfieldrules.md)|Rules and restrictions for references. Allowed overrides are `userCreated` and `applicationCreated`. Accepted values for the default rule and individual overrides are `allow`, `add`, `remove`, `block`.|
+|ruleKind|plannerRuleKind|Identifies which type of property rules is represented by this instance. Must be set to `taskRule`. The possible values are: `taskRule`, `bucketRule`, `planRule`, `unknownFutureValue`. Inherited from [plannerPropertyRule](../resources/plannerpropertyrule.md).|
+|startDate|String collection|Rules and restrictions for changing the start date of the task. Accepted values are `allow` and `block`.|
+|title|String collection|Rules and restrictions for changing the title of the task. Accepted values are `allow` and `block`.|
+
+## Relationships
+
+None.
+
+## JSON representation
+
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.plannerTaskPropertyRule"
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.plannerTaskPropertyRule",
+ "appliedCategories": {"@odata.type": "microsoft.graph.plannerFieldRules"},
+ "assignments": {"@odata.type": "microsoft.graph.plannerFieldRules"},
+ "checkLists": {"@odata.type": "microsoft.graph.plannerFieldRules"},
+ "delete": ["String"],
+ "dueDate": ["String"],
+ "move": ["String"],
+ "notes": ["String"],
+ "order": ["String"],
+ "percentComplete": ["String"],
+ "previewType": ["String"],
+ "priority": ["String"],
+ "references": {"@odata.type": "microsoft.graph.plannerFieldRules"},
+ "ruleKind": "String",
+ "startDate": ["String"],
+ "title": ["String"]
+}
+```
v1.0 Plannertaskrolebasedrule https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/plannertaskrolebasedrule.md
+
+ Title: "plannerTaskRoleBasedRule resource type"
+description: "Represents the rules for editing tasks created for a scenario."
+
+ms.localizationpriority: medium
++
+# plannerTaskRoleBasedRule resource type
+
+Namespace: microsoft.graph
++
+Represents the rules for editing [tasks](../resources/businessscenariotask.md) created for a [scenario](../resources/businessscenario.md).
+
+## Properties
+
+|Property|Type|Description|
+|:|:|:|
+|defaultRule|String|Default rule that applies when a property or action-specific rule is not provided. Possible values are: `Allow`, `Block`|
+|propertyRule|[plannerTaskPropertyRule](../resources/plannertaskpropertyrule.md)|Rules for specific properties and actions.|
+|role|[plannerTaskConfigurationRoleBase](../resources/plannertaskconfigurationrolebase.md)|The role these rules apply to.|
+
+## Relationships
+
+None.
+
+## JSON representation
+
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.plannerTaskRoleBasedRule"
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.plannerTaskRoleBasedRule",
+ "defaultRule": "String",
+ "propertyRule": {"@odata.type": "microsoft.graph.plannerTaskPropertyRule"},
+ "role": {"@odata.type": "microsoft.graph.plannerTaskConfigurationRoleBase"}
+}
+```
v1.0 Policy Overview https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/policy-overview.md
ms.localizationpriority: medium
ms.prod: "identity-and-sign-in" doc_type: "conceptualPageType" Last updated : 10/05/2022 # Azure AD policy overview
v1.0 Presence https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/presence.md
This resource supports subscribing to [change notifications](/graph/webhooks).
| [Clear presence](../api/presence-clearpresence.md) | | Clear a presence session of an application for a user. | | [Set user preferred presence](../api/presence-setuserpreferredpresence.md) | | Set the preferred availability and activity status for a user. | | [Clear user preferred presence](../api/presence-clearuserpreferredpresence.md) | | Clear the preferred availability and activity status for a user. |
+| [Set user status message](../api/presence-setstatusmessage.md) | | Set a presence status message for a user. |
## Properties
This resource supports subscribing to [change notifications](/graph/webhooks).
| id | string | The user object id | | availability | string collection | The base presence information for a user. Possible values are `Available`, `AvailableIdle`, `Away`, `BeRightBack`, `Busy`, `BusyIdle`, `DoNotDisturb`, `Offline`, `PresenceUnknown` | | activity | string collection | The supplemental information to a user's availability. Possible values are `Available`, `Away`, `BeRightBack`, `Busy`, `DoNotDisturb`, `InACall`, `InAConferenceCall`, `Inactive`,`InAMeeting`, `Offline`, `OffWork`,`OutOfOffice`, `PresenceUnknown`,`Presenting`, `UrgentInterruptionsOnly`. |
-| outOfOfficeSettings | [outOfOfficeSettings](outOfOfficeSettings.md) | The out of office settings for a user. |
+| outOfOfficeSettings | [outOfOfficeSettings](outOfOfficeSettings.md) | The out of office settings for a user. |
+| statusMessage | [microsoft.graph.presenceStatusMessage](presencestatusmessage.md) | The presence status message of a user. |
>**Note:** To learn more about the different presence states, see [User presence in Teams](/microsoftteams/presence-admins).
The following is a JSON representation of the resource.
"id":"string", "availability":"string", "activity":"string",
- "outOfOfficeSettings":{"@odata.type": "#microsoft.graph.outOfOfficeSettings"}
+ "outOfOfficeSettings":{"@odata.type": "#microsoft.graph.outOfOfficeSettings"},
+ "statusMessage":{"@odata.type": "#microsoft.graph.presenceStatusMessage"}
} ```
v1.0 Presencestatusmessage https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/presenceStatusMessage.md
+
+ Title: "presenceStatusMessage resource type"
+description: "Represents a presence status message related to the presence of a user in Microsoft Teams."
+
+ms.localizationpriority: medium
++
+# presenceStatusMessage resource type
+
+Namespace: microsoft.graph
++
+Represents a presence status message related to the [presence](presence.md) of a user in Microsoft Teams.
+
+## Properties
+
+| Property | Type | Description |
+| -- | -- | - |
+| expiryDateTime | [microsoft.graph.dateTimeTimeZone](datetimetimezone.md) | Time in which the status message expires.<br/>If not provided, the status message does not expire.<br/><br/>**expiryDateTime.dateTime** should not include time zone.<br/><br/>**expiryDateTime** is not available when requesting presence of another user. |
+| message | [microsoft.graph.itemBody](itembody.md) | Status message item.<br/><br/> The only supported format currently is `message.contentType = 'text'`. |
+| publishedDateTime | DateTimeOffset |Time in which the status message was published.<br/>Read-only.<br/><br/>**publishedDateTime** is not available when requesting presence of another user. |
+
+## JSON representation
+
+The following is a JSON representation of the resource.
+
+<!-- {
+ "blockType": "resource",
+ "optionalProperties": [
+ "publishedDateTime",
+ "expiryDateTime"
+ ],
+ "@odata.type": "microsoft.graph.presenceStatusMessage"
+}-->
+```json
+{
+ "expiryDateTime": {"@odata.type": "#microsoft.graph.dateTimeTimeZone"},
+ "message": {"@odata.type": "#microsoft.graph.itemBody"},
+ "publishedDateTime": "String"
+}
+```
v1.0 Printjob https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/printjob.md
Represents a print job that has been queued for a printer.
## Properties | Property | Type | Description | |:-|:|:|
-|id|String|The printer's GUID. Read-only.|
+|id|String|The ID of the print job. Read-only.|
+|displayName|String|The name of the print job.|
|createdDateTime|DateTimeOffset|The DateTimeOffset when the job was created. Read-only.| |status|[printJobStatus](printjobstatus.md)|The status of the print job. Read-only.| |configuration|[printJobConfiguration](printJobConfiguration.md)|A group of settings that a printer should use to print a job.|
The following is a JSON representation of the resource.
```json { "id": "String (identifier)",
+ "displayName": "String",
"createdDateTime": "String (timestamp)", "isFetchable": "Boolean", "redirectedFrom": "String",
v1.0 Privilegedidentitymanagementv3 Overview https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/privilegedidentitymanagementv3-overview.md
ms.localizationpriority: medium ms.prod: "governance" doc_type: resourcePageType Last updated : 12/07/2022 # Overview of role management through the privileged identity management (PIM) API
v1.0 Report Identity Access https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/report-identity-access.md
ms.localizationpriority: high
ms.prod: "identity-and-access-reports" doc_type: conceptualPageType Last updated : 07/07/2022 # Identity and access reports API overview
v1.0 Report https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/report.md
The following table shows the availability for each API across all cloud deploym
| APIs | Microsoft Graph global service | **Microsoft Cloud for US Government** | **Microsoft Cloud China operated by 21Vianet** | **Microsoft Cloud Germany** | **Microsoft Cloud for USNat and USSec** | | | | - | - | | | | [Admin Report Settings](/graph/api/resources/adminreportsettings?view=graph-rest-beta&preserve-view=true) | Γ£ö | Γ£ö | Γ£ö | Γ₧û | Γ£ö |
-| [Microsoft 365 activations](/graph/api/resources/office-365-activations-reports?view=graph-rest-beta&preserve-view=true) | Γ£ö | Γ₧û | Γ£ö | Γ₧û | Γ₧û |
+| [Microsoft 365 activations](/graph/api/resources/office-365-activations-reports?view=graph-rest-beta&preserve-view=true) | Γ£ö | Γ£ö | Γ£ö | Γ₧û | Γ₧û |
| [Microsoft 365 active users](/graph/api/resources/office-365-active-users-reports?view=graph-rest-beta&preserve-view=true) | Γ£ö | Γ₧û | Γ£ö | Γ₧û | Γ₧û | | [Microsoft 365 Apps usage](/graph/api/resources/microsoft-365-apps-usage-report?view=graph-rest-beta&preserve-view=true) | Γ£ö | Γ₧û | Γ£ö | Γ₧û | Γ₧û | | [Microsoft 365 browser usage](/graph/api/resources/microsoft-365-browser-usage-report?view=graph-rest-beta&preserve-view=true) | Γ£ö | Γ₧û | Γ₧û | Γ₧û | Γ₧û |
v1.0 Riskdetection https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/riskdetection.md
Title: "riskDetection resource type" description: "Represents all risk detections in AzureAD tenants."-+ ms.localizationpriority: medium ms.prod: "identity-and-sign-in" doc_type: resourcePageType
v1.0 Riskuseractivity https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/riskuseractivity.md
Title: "riskUserActivity resource type" description: author-+ ms.localizationpriority: medium ms.prod: "identity-and-sign-in" doc_type: resourcePageType
v1.0 Riskyuser https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/riskyuser.md
Title: "riskyUser resource type" description: "Represents Azure AD users who are at risk. Azure AD continually evaluates user risk based on various signals and machine learning. This API provides programmatic access to all at-risk users in your Azure AD."-+ ms.localizationpriority: medium doc_type: resourcePageType ms.prod: "identity-and-sign-in"
v1.0 Riskyuserhistoryitem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/riskyuserhistoryitem.md
Title: "riskyUserHistoryItem resource type" description: "Represents the risk history of an Azure Active Directory (Azure AD) user as determined by Azure AD Identity Protection."-+ ms.localizationpriority: medium ms.prod: "identity-and-sign-in" doc_type: resourcePageType
v1.0 Schemaextension https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/schemaextension.md
For more information about Microsoft Graph extensibility including limits for sc
|:|:--|:-| |description|String|Description for the schema extension. Supports `$filter` (`eq`).| |id|String|The unique identifier for the schema extension definition. <br>You can assign a value in one of two ways: <ul><li>Concatenate the name of one of your verified domains with a name for the schema extension to form a unique string in this format, \{_&#65279;domainName_\}\_\{_&#65279;schemaName_\}. As an example, `contoso_mySchema`. </li><li>Provide a schema name, and let Microsoft Graph use that schema name to complete the **id** assignment in this format: ext\{_&#65279;8-random-alphanumeric-chars_\}\_\{_&#65279;schema-name_\}. An example would be `extkvbmkofy_mySchema`.</li></ul>This property cannot be changed after creation. Supports `$filter` (`eq`). <br/><br> **Note:** We recommend that your **id** starts with an alphabetic letter between A-Z because query capabilities might be limited for IDs that begin with integers. <br/><br/> Supports `$filter` (`eq`).|
-|owner|String| The `appId` of the application that is the owner of the schema extension. This property can be supplied on creation, to set the owner. If not supplied, then the calling application's `appId` will be set as the owner. In either case, the signed-in user must be the owner of the application. So, for example, if creating a new schema extension definition using Graph Explorer, you **must** supply the owner property. Once set, this property is read-only and cannot be changed. Supports `$filter` (`eq`).|
+|owner|String| The `appId` of the application that is the owner of the schema extension. The owner of the schema definition must be explicitly specified during the Create and Update operations, or it will be implied and auto-assigned by Azure AD as follows: <br/><ul><li>In delegated access: <ul><li>The signed-in user must be the owner of the app that calls Microsoft Graph to create the schema extension definition. </li></ul> <ul><li>If the signed-in user isn't the owner of the calling app, they must explicitly specify the **owner** property, and assign it the **appId** of an app that they own.</li></ul></li></ul> <ul><li>In app-only access: <ul><li> The **owner** property isn't required in the request body. Instead, the calling app is assigned ownership of the schema extension.</li></ul></li></ul> </br>So, for example, if creating a new schema extension definition using Graph Explorer, you **must** supply the owner property. Once set, this property is read-only and cannot be changed. Supports `$filter` (`eq`).|
|properties|[extensionSchemaProperty](extensionschemaproperty.md) collection|The collection of property names and types that make up the schema extension definition.| |status|String|The lifecycle state of the schema extension. Possible states are `InDevelopment`, `Available`, and `Deprecated`. Automatically set to `InDevelopment` on creation. For more information about the possible state transitions and behaviors, see [Schema extensions lifecycle](#schema-extensions-lifecycle). Supports `$filter` (`eq`).| |targetTypes|String collection|Set of Microsoft Graph types (that can support extensions) that the schema extension can be applied to. Select from **administrativeUnit**, **contact**, **device**, **event**, **group**, **message**, **organization**, **post**, **todoTask**, **todoTaskList**, or **user**.|
v1.0 Search Api Overview https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/search-api-overview.md
The following table describes the types available to query and the supported per
| EntityType | Permission scope required to access the items| Source| Comment| |:|:|:|:|
+|[acronym](search-acronym.md)|Acronym.Read.All|Microsoft Search|Acronyms in Microsoft Search in your organization.|
+|[bookmark](search-bookmark.md)|Bookmark.Read.All|Microsoft Search|Bookmarks in Microsoft Search in your organization.|
|[chatMessage](chatmessage.md)|Chat.Read, Chat.ReadWrite, ChannelMessage.Read.All|Teams|Teams messages.| |[message](message.md)|Mail.Read, Mail.ReadWrite| Exchange Online| Email messages.| |[event](event.md) |Calendars.Read, Calendars.ReadWrite| Exchange Online|Calendar events. |
The following table describes the types available to query and the supported per
|[driveItem](driveitem.md)|Files.Read.All, Files.ReadWrite.All, Sites.Read.All, Sites.ReadWrite.All| SharePoint and OneDrive | Files, folders, pages, and news. | |[list](list.md)|Sites.Read.All, Sites.ReadWrite.All| SharePoint and OneDrive | Lists. Note that document libraries are also returned as lists. | |[listItem](listitem.md)|Sites.Read.All, Sites.ReadWrite.All| SharePoint and OneDrive | List items. Note that files and folders are also returned as list items; **listItem** is the super class of **driveItem**. |
-|[site](site.md)|Sites.Read.All, Sites.ReadWrite.All| SharePoint | Sites in SharePoint.|
|[externalItem](externalconnectors-externalitem.md)|ExternalItem.Read.All| Microsoft Graph connectors| All content ingested with the Microsoft Graph connectors API.| |[person](person.md)|People.Read|Exchange Online|Personal contacts and contacts or addressable objects in your organization.|
-|[bookmark](search-bookmark.md)|Bookmark.Read.All|Microsoft Search|Bookmarks in Microsoft Search in your organization.|
-|[acronym](search-acronym.md)|Acronym.Read.All|Microsoft Search|Acronyms in Microsoft Search in your organization.|
+|[qna](search-qna.md)|QnA.Read.All|Microsoft Search|Questions and answers in Microsoft Search in your organization.|
+|[site](site.md)|Sites.Read.All, Sites.ReadWrite.All| SharePoint | Sites in SharePoint.|
## Page search results
The **collapseProperties** property contains a set of criteria, fields, and limi
The [query](../api/search-query.md) method lets you customize the collapse property by specifying **collapseProperties** on the `requests` parameter, which is a collection of [collapseProperty](collapseproperty.md) objects. This allows you to specify a set of one or more collapse properties.
-Note that collapsing results is currently only supported on the following SharePoint and OneDrive types: [driveItem](driveitem.md), [listItem](listitem.md), [drive](drive.md), [list](list.md), [site](site.md).
+Note that collapsing results is currently supported on the following entity types: [driveItem](driveitem.md), [listItem](listitem.md), [drive](drive.md), [list](list.md), [site](site.md), [externalItem](externalconnectors-externalitem.md).
-The properties on which the collapse clause are applied need to be queryable and either sortable or refinable in the SharePoint [search schema](/sharepoint/manage-search-schema). For multi-level collapse, each subsequent property limit size specified in a multi-level request should be less than or equal to the previous; otherwise, the response will return an `HTTP 400 Bad Request` error.
+The properties on which the collapse clause are applied need to be queryable and either sortable or refinable. For multi-level collapse, each subsequent property limit size specified in a multi-level request should be less than or equal to the previous; otherwise, the response will return an `HTTP 400 Bad Request` error.
For examples that show how to collapse results, see [collapse search results](/graph/search-concept-collapse).
The search API has the following limitations:
- The [searchRequest](./searchrequest.md) resource supports passing multiple types of entities at a time. The following table lists the combinations that are supported.
-| Entity Type |message | chatMessage| drive | driveItem | event |externalItem | list | listItem | person | site |
-|-|||-|||-|||||
-| message | True | - | - | - | - | - | - | - | - | - |
-| chatMessage | - | True | - | - | - | - | - | - | - | - |
-| drive | - | - | True | True | - | True | True | True | - | True |
-| driveItem | - | - | True | True | - | True | True | True | - | True |
-| event | - | - | - | - | True | - | - | - | - | - |
-|externalItem | - | - | True | True | - | True | True | True | - | True |
-| list | - | - | True | True | - | True | True | True | - | True |
-| listItem | - | - | True | True | - | True | True | True | - | True |
-| person | - | - | - | - | - | - | - | - | True | - |
-| site | - | - | True | True | - | True | True | True | - | True |
+| Entity Type |acronym |bookmark |message | chatMessage| drive | driveItem | event |externalItem | list | listItem | person |qna | site |
+|-|||-|||-||||||||
+| acronym | True | - | - | - | - | - | - | - | - | - | - | - | - |
+| bookmark | - | True | - | - | - | - | - | - | - | - | - | - | - |
+| message | - | - | True | - | - | - | - | - | - | - | - | - | - |
+| chatMessage | - | - | - | True | - | - | - | - | - | - | - | - | - |
+| drive | - | - | - | - | True | True | - | True | True | True | - | - | True |
+| driveItem | - | - | - | - | True | True | - | True | True | True | - | - | True |
+| event | - | - | - | - | - | - | True | - | - | - | - | - | - |
+|externalItem | - | - | - | - | True | True | - | True | True | True | - | - | True |
+| list | - | - | - | - | True | True | - | True | True | True | - | - | True |
+| listItem | - | - | - | - | True | True | - | True | True | True | - | - | True |
+| person | - | - | - | - | - | - | - | - | - | - | True | - | - |
+| qna | - | - | - | - | - | - | - | - | - | - | - | True | - |
+| site | - | - | - | - | True | True | - | True | True | True | - | - | True |
- The **contentSource** property, which defines the connection to use, is only applicable when **entityType** is specified as `externalItem`. -- The search API does not support custom sort for **message**, **chatMessage**, **event**, **person**, or **externalItem**.
+- The search API does not support custom sort for **acronym**,**bookmark**,**message**, **chatMessage**, **event**, **person**, **qna**, or **externalItem**.
-- The search API does not support aggregations for **message**, **event**, **site**, **person**, or **drive**.
+- The search API does not support aggregations for **acronym**,**bookmark**,**message**, **event**, **site**, **person**, **qna**, or **drive**.
-- The search API does not support xrank for **message**,**chatMessage**, **event**, **person**, or **externalItem**.
+- The search API does not support xrank for **acronym**,**bookmark**,**message**,**chatMessage**, **event**, **person**, **qna**, or **externalItem**.
- Customizations in SharePoint search, such as a custom search schema or result sources, can interfere with Microsoft Search API operations.
v1.0 Search Qna https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/search-qna.md
Namespace: microsoft.graph.search
Q&As are administrative answer results in the search results page which provide answers for specific search keywords. Q&As allow administrators to answer the user's questions directly in search instead of providing a link to a webpage. A Q&A has many properties which allow administrators to make common resources more accessible in their organization.
-Inherits from [searchAnswer](../resources/search-searchAnswer.md).
+Inherits from [searchAnswer](../resources/search-searchanswer.md).
## Methods+ |Method|Return type|Description| |:|:|:| |[List qnas](../api/search-searchentity-list-qnas.md)|[microsoft.graph.search.qna](../resources/search-qna.md) collection|Get a list of the [qna](../resources/search-qna.md) objects and their properties.| |[Create qna](../api/search-searchentity-post-qnas.md)|[microsoft.graph.search.qna](../resources/search-qna.md)|Create a new [qna](../resources/search-qna.md) object.| |[Get qna](../api/search-qna-get.md)|[microsoft.graph.search.qna](../resources/search-qna.md)|Read the properties and relationships of a [qna](../resources/search-qna.md) object.| |[Update qna](../api/search-qna-update.md)|[microsoft.graph.search.qna](../resources/search-qna.md)|Update the properties of a [qna](../resources/search-qna.md) object.|
-|[Delete qna](../api/search-qna-delete.md)|None|Deletes a [qna](../resources/search-qna.md) object.|
+|[Delete qna](../api/search-qna-delete.md)|None|Delete a [qna](../resources/search-qna.md) object.|
## Properties+ |Property|Type|Description| |:|:|:|
-|id|String|The unique identifier (GUID) for the qna. Inherited from [entity](../resources/entity.md).|
-|displayName|String|Question displayed in search results. Inherited from [searchAnswer](../resources/search-searchAnswer.md).|
-|description|String|Answer displayed in search results. Inherited from [searchAnswer](../resources/search-searchAnswer.md).|
-|webUrl|String|Qna URL link. When users click this qna in search results, they will go to this URL. Inherited from [searchAnswer](../resources/search-searchAnswer.md).|
-|lastModifiedBy|[microsoft.graph.identitySet](../resources/identityset.md)|Details of the user that created or last modified the qna. Inherited from [searchAnswer](../resources/search-searchAnswer.md). Read-only. |
-|lastModifiedDateTime|DateTimeOffset| Timestamp of when the qna is created or edited. Inherited from [searchAnswer](../resources/search-searchAnswer.md). Read-only.|
-|availabilityStartDateTime|DateTimeOffset|Timestamp of when the qna will start to appear as a search result. Set as `null` for always available.|
|availabilityEndDateTime|DateTimeOffset|Timestamp of when the qna will stop to appear as a search result. Set as `null` for always available.|
-|languageTags|String collection|A list of language names that are geographically specific and that this QnA can be viewed in. Each language tag value follows the pattern {language}-{region}. As an example, `en-us` is English as used in the United States. See [supported language tags](search-api-answers-overview.md#supported-language-tags) for the list of possible values. |
+|availabilityStartDateTime|DateTimeOffset|Timestamp of when the qna will start to appear as a search result. Set as `null` for always available.|
+|description|String|Answer displayed in search results. Inherited from [searchAnswer](../resources/search-searchanswer.md).|
+|displayName|String|Question displayed in search results. Inherited from [searchAnswer](../resources/search-searchanswer.md).|
+|groupIds|String collection|List of security groups able to view this qna.|
+|id|String|The unique identifier (GUID) for the qna. Inherited from [entity](../resources/entity.md).|
+|isSuggested|Boolean| True if this qna was suggested to the admin by a user or was mined and suggested by Microsoft. Read-only.|
+|keywords|[microsoft.graph.search.answerKeyword](../resources/search-answerkeyword.md)|Keywords that trigger this qna to appear in search results.|
+|languageTags|String collection|A list of language names that are geographically specific and that this QnA can be viewed in. Each language tag value follows the pattern {language}-{region}. As an example, `en-us` is English as used in the United States. For the list of possible values, see [supported language tags](search-api-answers-overview.md#supported-language-tags). |
+|lastModifiedBy|[microsoft.graph.identitySet](../resources/identityset.md)|Details of the user that created or last modified the qna. Inherited from [searchAnswer](../resources/search-searchanswer.md). Read-only. |
+|lastModifiedDateTime|DateTimeOffset| Timestamp of when the qna is created or edited. Inherited from [searchAnswer](../resources/search-searchanswer.md). Read-only.|
|platforms|microsoft.graph.devicePlatformType collection|List of devices and operating systems able to view this qna. Possible values are: `unknown`, `android`, `androidForWork`, `ios`, `macOS`, `windowsPhone81`, `windowsPhone81AndLater`, `windows10AndLater`, `androidWorkProfile`, `androidASOP`.|
-|targetedVariations|[microsoft.graph.search.answerVariant](../resources/search-answerVariant.md) collection|Variations of a qna for different countries or devices. Use when you need to show different content to users based on their device, country/region, or both. The date and group settings will apply to all variations.|
-|keywords|[microsoft.graph.search.answerKeyword](../resources/search-answerKeyword.md)|Keywords that trigger this qna to appear in search results.|
|state|microsoft.graph.search.answerState|State of the qna. Possible values are: `published`, `draft`, `excluded`, or `unknownFutureValue`.|
-|isSuggested|Boolean| True if this qna was suggested to the admin by a user or was mined and suggested by Microsoft. Read-only.|
-|groupIds|String collection|List of security groups able to view this qna.|
-
+|targetedVariations|[microsoft.graph.search.answerVariant](../resources/search-answervariant.md) collection|Variations of a qna for different countries or devices. Use when you need to show different content to users based on their device, country/region, or both. The date and group settings will apply to all variations.|
+|webUrl|String|Qna URL link. When users click this qna in search results, they will go to this URL. Inherited from [searchAnswer](../resources/search-searchanswer.md).|
## Relationships+ None. ## JSON representation+ The following is a JSON representation of the resource.+ <!-- { "blockType": "resource", "keyProperty": "id",
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.search.qna",
- "id": "String (identifier)",
- "displayName": "String",
+ "availabilityEndDateTime": "String (timestamp)",
+ "availabilityStartDateTime": "String (timestamp)",
"description": "String",
- "webUrl": "String",
- "lastModifiedBy": {
- "@odata.type": "microsoft.graph.identitySet"
+ "displayName": "String",
+ "groupIds": [
+ "String"
+ ],
+ "id": "String (identifier)",
+ "isSuggested": "Boolean",
+ "keywords": {
+ "@odata.type": "microsoft.graph.search.answerKeyword"
},
- "lastModifiedDateTime": "String (timestamp)",
- "availabilityStartDateTime": "String (timestamp)",
- "availabilityEndDateTime": "String (timestamp)",
"languageTags": [ "String" ],
+ "lastModifiedBy": {
+ "@odata.type": "microsoft.graph.identitySet"
+ },
+ "lastModifiedDateTime": "String (timestamp)",
"platforms": [ "String" ],
+ "state": "String",
"targetedVariations": [ { "@odata.type": "microsoft.graph.search.answerVariant" } ],
- "keywords": {
- "@odata.type": "microsoft.graph.search.answerKeyword"
- },
- "state": "String",
- "isSuggested": "Boolean",
- "groupIds": [
- "String"
- ]
+ "webUrl": "String"
} ```
v1.0 Searchhit https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/searchhit.md
Represents a single result within the list of search results.
| Property | Type | Description | |:-|:|:|
+|contentSource|String|The name of the content source that the **externalItem** is part of.|
|hitId|String|The internal identifier for the item. The format of the identifier varies based on the entity type. For details, see [hitId format](#hitid-format).|
+|isCollapsed|Boolean|Indicates whether the current result is collapses when the **collapseProperties** property is used.|
|rank|Int32|The rank or the order of the result.|
-|contentSource|String|The name of the content source which the **externalItem** is part of .|
-|summary|String|A summary of the result, if a summary is available.|
-|resultTemplateId|String|ID of the result template for rendering the search result. This ID must map to a display layout in the **resultTemplates** dictionary, included in the [searchresponse](searchresponse.md) as well.|
|resource|[entity](entity.md)|The underlying Microsoft Graph representation of the search result.|
+|resultTemplateId|String|ID of the result template for rendering the search result. This ID must map to a display layout in the **resultTemplates** dictionary, included in the [searchresponse](searchresponse.md) as well.|
+|summary|String|A summary of the result, if a summary is available.|
|_id (deprecated)|String| Renamed as **hitId**. The internal identifier for the item.| |_score (deprecated)|Int32|Renamed as **rank**. The score or the order of the result.| |_summary (deprecated)|String|Renamed as **summary**. A summary of the result (if summary is available).|
v1.0 Security Alertevidence https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/security-alertevidence.md
This alert evidence base type and its derived evidence types provide a means to
|Property|Type|Description| |:|:|:| |createdDateTime|DateTimeOffset|The time the evidence was created and added to the alert.|
-|remediationStatus|[microsoft.graph.security.evidenceRemediationStatus](#evidenceremediationstatus-values)|Status of the remediation action taken. The possible values are: `none`, `remediated`, `prevented`, `blocked`, `notFound`, `active`, `pendingApproval`, `declined`, `notRemediated`, `running`, `unknownFutureValue`.|
+|remediationStatus|[microsoft.graph.security.evidenceRemediationStatus](#evidenceremediationstatus-values)|Status of the remediation action taken. The possible values are: `none`, `remediated`, `prevented`, `blocked`, `notFound`, `unknownFutureValue`.|
|remediationStatusDetails|String|Details about the remediation status.| |roles|[microsoft.graph.security.evidenceRole](#evidencerole-values) collection|The role/s that an evidence entity represents in an alert, e.g., an IP address that is associated with an attacker will have the evidence role "Attacker".| |tags|String collection|Array of custom tags associated with an evidence instance, for example to denote a group of devices, high value assets, etc.|
This alert evidence base type and its derived evidence types provide a means to
| remediated | Remediation action has completed successfully. | | prevented | The threat was prevented from executing. | | blocked | The threat was blocked while executing. |
-| active | Live response session is currently active. |
-| pendingApproval | Remediation action is pending manual approval. |
-| declined | Remediation action was not approved by analyst.|
-| notRemediated | Remediation action failed to remediate threat. |
-| running | Remediation action is currently running. |
+| notFound | The evidence was not found. |
| unknownFutureValue | Evolvable enumeration sentinel value. Do not use. |
v1.0 Security Api Overview https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/security-api-overview.md
Title: "Use the Microsoft Graph security API"
-description: " > **Important:** APIs under the /beta version in Microsoft Graph are in preview and are subject to change. Use of these APIs in production applications is not supported."
+description: "The Microsoft Graph security API provides a unified interface and schema to integrate with security solutions from Microsoft and ecosystem partners."
ms.localizationpriority: high ms.prod: "security"
Take immediate action to defend against threats using the [securityAction](secur
> **Note:** Currently security actions only support application permissions.
-## Advanced hunting (preview)
+## Advanced hunting
Advanced hunting is a query-based threat hunting tool that lets you explore up to 30 days of raw data. You can proactively inspect events in your network to locate threat indicators and entities. The flexible access to data enables unconstrained hunting for both known and potential threats. Use [runHuntingQuery](../api/security-security-runhuntingquery.md) to run a [Kusto Query Language](/azure/data-explorer/kusto/query/) (KQL) query on data stored in Microsoft 365 Defender. Leverage the returned result set to enrich an existing investigation or to uncover undetected threats in your network.
Use [runHuntingQuery](../api/security-security-runhuntingquery.md) to run a [Kus
6. The maximum query result size of a single request cannot exceed 124 MB. Exceeding the size limit results in HTTP 400 Bad Request with the message "Query execution has exceeded the allowed result size. Optimize your query by limiting the number of results and try again." ## Alerts
-Alerts are suspicious activities in a customer's tenant that Microsoft or partner security providers have identified and flagged for action. Attacks typically employ various techniques against different types of entities, such as devices, users, and mailboxes. The result is alerts from multiple security providers for multiple entities in the tenant. Piecing the individual alerts together to gain insight into an attack can be challenging and time-consuming.
+Alerts are detailed warnings about suspicious activities in a customer's tenant that Microsoft or partner security providers have identified and flagged for action. Attacks typically employ various techniques against different types of entities, such as devices, users, and mailboxes. The result is alerts from multiple security providers for multiple entities in the tenant. Piecing the individual alerts together to gain insight into an attack can be challenging and time-consuming.
The beta version of the security API offers two types of alerts that aggregate other alerts from security providers and make analyzing attacks and determining response easier: -- [Alerts and incidents](#alerts-and-incidents-preview) (preview) - these are the latest generation of alerts in the Microsoft Graph security API. They are represented by the [alert](security-alert.md) resource and its collection, [incident](security-incident.md) resource, defined in the `microsoft.graph.security` namespace.
+- [Alerts and incidents](#alerts-and-incidents) - these are the latest generation of alerts in the Microsoft Graph security API. They are represented by the [alert](security-alert.md) resource and its collection, [incident](security-incident.md) resource, defined in the `microsoft.graph.security` namespace.
- [Legacy alerts](#legacy-alerts) - these are the first generation of alerts in the Microsoft Graph security API. They are represented by the [alert](alert.md) resource defined in the `microsoft.graph` namespace.
-### Alerts and incidents (preview)
+### Alerts and incidents
These [alert](security-alert.md) resources first pull alert data from security provider services, that are either part of or integrated with [Microsoft 365 Defender](/microsoft-365/security/defender/microsoft-365-defender?view=o365-worldwide&preserve-view=true). Then they consume the data to return rich, valuable clues about a completed or ongoing attack, the impacted assets, and associated [evidence](security-alertevidence.md). In addition, they automatically correlate other alerts with the same attack techniques or the same attacker into an [incident](security-incident.md) to provide a broader context of an attack. They recommend response and remediation actions, offering consistent actionability across all the different providers. The rich content makes it easier for analysts to collectively investigate and respond to threats.
Alerts from the following security providers are available via this legacy **ale
| Security provider | <p align="center">GET alert</p>| <p align="center">PATCH alert</p>| <p align="center">Subscribe to alert</p>| |:|:|:--|:|
-|[Azure Active Directory Identity Protection](/azure/active-directory/identity-protection/playbook) | <p align="center">&#x2713;</p> | <p align="center">[File issue](https://github.com/microsoftgraph/security-api-solutions/issues/new) *</p> | <p align="center">&#x2713;</p> |
+|[Azure Active Directory Identity Protection](/azure/active-directory/identity-protection/playbook) **** | <p align="center">&#x2713;</p> | <p align="center">[File issue](https://github.com/microsoftgraph/security-api-solutions/issues/new) *</p> | <p align="center">&#x2713;</p> |
|[Azure Security Center](/azure/security-center/security-center-alerts-type)| <p align="center">&#x2713;</p> | <p align="center">&#x2713;</p> | <p align="center">&#x2713;</p> | |Microsoft 365 <ul><li> [Default](/office365/securitycompliance/alert-policies#default-alert-policies)</li> <li>[Cloud App Security](/office365/securitycompliance/anomaly-detection-policies-in-ocas)</li><li>Custom Alert</li></ul> | <p align="center">&#x2713;</p> | <p align="center"> [File issue](https://github.com/microsoftgraph/security-api-solutions/issues/new) </p> | <p align="center"> [File issue](https://github.com/microsoftgraph/security-api-solutions/issues/new) </p> | | [Microsoft Defender for Cloud Apps](/cloud-app-security/monitor-alerts) (formerly Microsoft Cloud App Security) | <p align="center">&#x2713;</p> | <p align="center">[File issue](https://github.com/microsoftgraph/security-api-solutions/issues/new) *</p> | <p align="center">&#x2713;</p> |
Alerts from the following security providers are available via this legacy **ale
\*\*\* Microsoft Defender for Identity alerts are available via the Microsoft Defender for Cloud Apps integration. This means you will get Microsoft Defender for Identity alerts only if you have joined Unified SecOps and connected Microsoft Defender for Identity into Microsoft Defender for Cloud Apps. Learn more about [how to integrate Microsoft Defender for Identity and Microsoft Defender for Cloud Apps](/azure-advanced-threat-protection/atp-mcas-integration).
+\*\*\*\* Azure AD Identity Protection alerts only include user object IDs. The **userPrincipalName** (UPN) property is not included in GET request responses. This issue does not impact any of the other providers. For details and a workaround, see [Known issues](/graph/known-issues#upn-missing-in-identity-protection-security-alerts).
+ ## Attack simulation and training [Attack simulation and training](/microsoft-365/security/office-365-security/attack-simulation-training) is part of [Microsoft Defender for Office 365](/microsoft-365/security/office-365-security/defender-for-office-365?view=o365-worldwide&preserve-view=true). This service lets users in a tenant experience a realistic benign phishing attack and learn from it. Social engineering simulation and training experiences for end users help reduce the risk of users being breached via those attack techniques. The attack simulation and training API enables tenant administrators to view launched [simulation](simulation.md) exercises and trainings, and get [reports](report-m365defender-reports-overview.md) on derived insights into online behaviors of users in the phishing simulations.
Alerts from the following security providers are available via this legacy **ale
[Microsoft Purview eDiscovery (Premium)](/microsoft-365/compliance/overview-ediscovery-20) provides an end-to-end workflow to preserve, collect, analyze, review, and export content that's responsive to your organization's internal and external investigations.
-## Incidents (preview)
+## Incidents
An [incident](security-incident.md) is a collection of correlated  [alerts](security-alert.md) and associated data that make up the story of an attack. Incident management is part of Microsoft 365 Defender, and is available in the Microsoft 365 Defender portal (https://security.microsoft.com/).
The following are some of the most popular requests for working with the Microso
|List security actions| [List security actions](../api/securityactions-list.md)|[https://graph.microsoft.com/beta/security/securityActions](https://developer.microsoft.com/graph/graph-explorer?request=security/securityActions&method=GET&version=beta&GraphUrl=https://graph.microsoft.com)| |Create security actions|[Create security actions](../api/securityactions-post.md)|[https://graph.microsoft.com/beta/security/securityActions](https://developer.microsoft.com/graph/graph-explorer?request=security/securityActions&method=POST&version=beta&GraphUrl=https://graph.microsoft.com)| |Cancel security action|[Cancel security actions](../api/securityaction-cancelsecurityaction.md)| [https://graph.microsoft.com/beta/security/securityActions/{id}/cancelSecurityAction](https://developer.microsoft.com/graph/graph-explorer?request=security/securityActions/{id}/cancelSecurityAction&method=POST&version=beta&GraphUrl=https://graph.microsoft.com) |
-| **Alerts and incidents (preview)**|||
+| **Alerts and incidents**|||
| List alerts | [List alerts](../api/security-list-alerts_v2.md) | [https://graph.microsoft.com/beta/security/alerts_v2](https://developer.microsoft.com/graph/graph-explorer?request=security/alerts_v2&method=GET&version=beta&GraphUrl=https://graph.microsoft.com) | | Update alert | [Update alert](../api/security-alert-update.md) | [https://graph.microsoft.com/beta/security/alerts/{id}](https://developer.microsoft.com/graph/graph-explorer?request=security/alerts/{id}&method=PATCH&version=beta&GraphUrl=https://graph.microsoft.com) | | List incidents | [List incidents](../api/security-list-incidents.md) | [https://graph.microsoft.com/beta/security/incidents](https://developer.microsoft.com/graph/graph-explorer?request=security/incidents&method=GET&version=beta&GraphUrl=https://graph.microsoft.com) | | List incidents with alerts| [List incidents](../api/security-list-incidents.md) | [https://graph.microsoft.com/beta/security/incidents?$expand=alerts](https://developer.microsoft.com/graph/graph-explorer?request=security/incidents?$expand=alerts&method=GET&version=beta&GraphUrl=https://graph.microsoft.com) | | Update incident | [Update incident](../api/security-incident-update.md) | [https://graph.microsoft.com/beta/security/incidents/{id}](https://developer.microsoft.com/graph/graph-explorer?request=security/incidents/{id}&method=PATCH&version=beta&GraphUrl=https://graph.microsoft.com) |
-| **Attack simulation and training (preview)**|||
+| **Attack simulation and training**|||
|List simulations|[List simulations](../api/attacksimulationroot-list-simulations.md)|[https://graph.microsoft.com/beta/security/attackSimulation/simulations](https://developer.microsoft.com/graph/graph-explorer?request=security/attackSimulation/simulations&method=GET&version=beta&GraphUrl=https://graph.microsoft.com)| |Get simulation overview report|[Get simulation overview report](../api/simulationreportoverview-get.md)|[https://graph.microsoft.com/beta/security/attackSimulation/simulations/{id}/report/overview](https://developer.microsoft.com/graph/graph-explorer?request=security/attackSimulation/simulations/{id}/report/overview&method=GET&version=beta&GraphUrl=https://graph.microsoft.com)| |List simulation users report|[List simulation users report](../api/usersimulationdetails-list.md)|[https://graph.microsoft.com/beta/security/attackSimulation/simulations/{id}/report/simulationUsers](https://developer.microsoft.com/graph/graph-explorer?request=security/attackSimulation/simulations/{id}/report/simulationUsers&method=GET&version=beta&GraphUrl=https://graph.microsoft.com)|
v1.0 Security Caseoperation https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/security-caseoperation.md
Title: "caseOperation resource type"
-description: "An abstract entity that represents a long-running process."
+description: "An abstract entity that represents a long-running eDiscovery process."
ms.localizationpriority: medium ms.prod: "ediscovery"
Namespace: microsoft.graph.security
[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)]
-Inherits from [entity](../resources/entity.md).
-
-An abstract entity that represents a long-running eDiscovery process. It contains a common set of properties that are shared among inheriting entities. Entities that derive from **caseOperation** include:
+An abstract entity that represents a long-running eDiscovery process. It contains a common set of properties that are shared among inheriting entities. Entities that derive from **caseOperation** include:
- [Index operation](../resources/security-ediscoveryindexoperation.md) - [Hold operation](../resources/security-ediscoveryholdoperation.md)
An abstract entity that represents a long-running eDiscovery process. It contain
- [Tag operation](../resources/security-ediscoverytagoperation.md) - [Export operation](../resources/security-ediscoveryexportoperation.md)
+Inherits from [entity](../resources/entity.md).
+ ## Methods |Method|Return type|Description| |:|:|:|
An abstract entity that represents a long-running eDiscovery process. It contain
| applyTags | The operation represents bulk tagging documents in a review set for the specified review set query. | | contentExport | The operation represents a content export from a review set. | | convertToPdf | The operation represents converting documents to PDFs with redactions. |
-| estimateStatistics | The operation represents searching against Microsoft 365 services such as Exchange, SharePoint, and OneDrive for business. |
+| estimateStatistics | The operation represents searching against Microsoft 365 services such as Exchange, SharePoint, and OneDrive for Business. |
| holdUpdate | The operation represent updating legal hold (apply/remove) for custodians and non-custodial data sources. | index | The operation represents indexing data sources of custodians and non-custodial data sources to make them searchable. | | purgeData | The operation represents purging content from the source workloads. |
An abstract entity that represents a long-running eDiscovery process. It contain
| submissionFailed | Submission of the operation failed. | | running | The operation is currently running. | | succeeded | The operation was successfully completed without any errors. |
-| partiallySucceeded | The operation completed, but there were errors - See [resultInfo](../resources/resultinfo.md) for error details. |
-| failed | The operation failed - See result info for error details. |
+| partiallySucceeded | The operation completed, but there were errors. For error details, see [resultInfo](../resources/resultinfo.md). |
+| failed | The operation failed. For error details, see [resultInfo](../resources/resultinfo.md). |
## Relationships None.
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.security.caseOperation",
- "id": "String (identifier)",
- "createdDateTime": "String (timestamp)",
- "completedDateTime": "String (timestamp)",
"action": "String",
+ "completedDateTime": "String (timestamp)",
"createdBy": { "@odata.type": "microsoft.graph.identitySet" },
- "percentProgress": "Integer",
- "status": "String",
+ "createdDateTime": "String (timestamp)",
+ "id": "String (identifier)",
+ "percentProgress": "Int32",
"resultInfo": { "@odata.type": "microsoft.graph.resultInfo"
- }
+ },
+ "status": "String"
}
-```
+```
v1.0 Security Incident https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/security-incident.md
Because piecing the individual alerts together to gain insight into an attack ca
|lastUpdateDateTime|DateTimeOffset|Time when the incident was last updated.| |redirectIncidentId|String|Only populated in case an incident is grouped together with another incident, as part of the logic that processes incidents. In such a case, the **status** property is `redirected`. | |severity|alertSeverity|Indicates the possible impact on assets. The higher the severity, the bigger the impact. Typically higher severity items require the most immediate attention. Possible values are: `unknown`, `informational`, `low`, `medium`, `high`, `unknownFutureValue`.|
-|status|[microsoft.graph.security.incidentStatus](#incidentstatus-values)|The status of the incident. Possible values are: `active`, `resolved`, `redirected`, `unknownFutureValue`.|
-|tags|String collection|Array of custom tags associated with an incident.|
+|status|[microsoft.graph.security.incidentStatus](#incidentstatus-values)|The status of the incident. Possible values are: `active`, `resolved`, `inProgress`, `redirected`, `unknownFutureValue`.|
+|customTags|String collection|Array of custom tags associated with an incident.|
### incidentStatus values
Because piecing the individual alerts together to gain insight into an attack ca
| :-| :-- | | active | The incident is in active state. | | resolved | The incident is in resolved state. |
+| inProgress | The incident is in mitigation progress. |
| redirected | The incident was merged with another incident. The target incident ID appears in the **redirectIncidentId** property. | | unknownFutureValue | Evolvable enumeration sentinel value. Do not use. |
The following is a JSON representation of the resource.
"determination": "String", "status": "String", "severity": "String",
- "tags": [
+ "customTags": [
"String" ], "comments": [
v1.0 Security Ipevidence https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/security-ipevidence.md
Inherits from [alertEvidence](../resources/security-alertevidence.md).
|Property|Type|Description| |:|:|:| |ipAddress|String|The value of the IP Address, can be either in V4 address or V6 address format.|
+|countryLetterCode|String|The two-letter country code according to ISO 3166 format, for example: `US`, `UK`, `CA`, etc..).|
## Relationships None.
The following is a JSON representation of the resource.
"tags": [ "String" ],
- "ipAddress": "String"
+ "ipAddress": "String",
+ "countryLetterCode": "String"
} ```
v1.0 Segmentconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/segmentconfiguration.md
+
+ Title: "segmentConfiguration resource type"
+description: "An abstract type for defining application segments when publishing an on-premises wildcard application through Azure AD Application Proxy."
+ms.localizationpriority: medium
+++
+# segmentConfiguration resource type
+
+Namespace: microsoft.graph
++
+An abstract type for defining application segments when publishing an on-premises wildcard application through Azure AD Application Proxy. The following types are derived from this abstract type:
++ [webSegmentConfiguration](websegmentconfiguration.md)+
+## Properties
+
+None.
++
+## JSON representation
+
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.segmentConfiguration"
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.segmentConfiguration"
+}
+```
v1.0 Signin https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/signin.md
The availability of sign-in logs is governed by the [Azure AD data retention pol
|appDisplayName|String|The application name displayed in the Azure Portal. Supports `$filter` (`eq` and `startsWith` operators only).| |appId|String|The application identifier in Azure Active Directory. Supports `$filter` (`eq` operator only).| |appliedConditionalAccessPolicies|[appliedConditionalAccessPolicy](appliedconditionalaccesspolicy.md) collection|A list of conditional access policies that are triggered by the corresponding sign-in activity.|
+|appliedEventListeners|[appliedAuthenticationEventListener](../resources/appliedauthenticationeventlistener.md) collection|Detailed information about the listeners, such as Azure Logic Apps and Azure Functions, that were triggered by the corresponding events in the sign-in event.|
|authenticationAppDeviceDetails|[authenticationAppDeviceDetails](../resources/authenticationappdevicedetails.md)|Provides details about the app and device used during an Azure AD authentication step.| |authenticationAppPolicyEvaluationDetails|[authenticationAppPolicyDetails](../resources/authenticationapppolicydetails.md) collection|Provides details of the Azure AD policies applied to a user and client authentication app during an authentication step.| |authenticationContextClassReferences|[authenticationContext](authenticationcontext.md) collection|Contains a collection of values that represent the conditional access authentication contexts applied to the sign-in.|
The following is a JSON representation of the resource.
"@odata.type": "microsoft.graph.appliedConditionalAccessPolicy" } ],
+ "appliedEventListeners": [
+ {
+ "@odata.type": "microsoft.graph.appliedAuthenticationEventListener"
+ }
+ ],
"authenticationAppDeviceDetails": { "@odata.type": "microsoft.graph.authenticationAppDeviceDetails" },
v1.0 Signingcertificateupdatestatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/signingcertificateupdatestatus.md
Title: "signingCertificateUpdateStatus resource type" description: "Provides status of the last update of the signing certificate."-+ ms.localizationpriority: medium ms.prod: "identity-and-sign-in" doc_type: resourcePageType
v1.0 Simulation https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/simulation.md
The attack simulation and training API enables tenant administrators to list lau
Inherits from [entity](../resources/entity.md). ## Methods+ |Method|Return type|Description| |:|:|:| |[List simulations](../api/attacksimulationroot-list-simulations.md)|[simulation](../resources/simulation.md) collection|Get a list of attack simulation campaigns for a tenant.|
+|[Create simulation](../api/attacksimulationroot-create-simulation.md)|[simulation](../resources/simulation.md)|Create a new [simulation](../resources/simulation.md) object.|
|[Get simulation](../api/attacksimulationroot-get-simulations.md)|[simulation](../resources/simulation.md)|Get an attack simulation campaign for a tenant.|
+|[Update simulation](../api/attacksimulationroot-update-simulation.md)|[simulation](../resources/simulation.md)|Update the properties of a [simulation](../resources/simulation.md) object.|
+|[Delete simulation](../api/attacksimulationroot-delete-simulation.md)|None|Delete a [simulation](../resources/simulation.md) object.|
+|[Get payload](../api/attacksimulationroot-get-payload.md)|None|Get a [payload](../resources/payload.md) object.|
+|[Get excludedAccountTarget](../api/attacksimulationroot-get-excludedaccounttarget.md)|[accountTargetContent](../resources/accountTargetContent.md)|Get excluded account targets (users) for an attack simulation campaign for a tenant.|
+|[Get includedAccountTarget](../api/attacksimulationroot-get-includedaccounttarget.md)|[accountTargetContent](../resources/accountTargetContent.md)|Get included account targets (users) for an attack simulation campaign for a tenant.|
## Properties+ |Property|Type|Description| |:|:|:| |attackTechnique|[simulationAttackTechnique](#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).|
Inherits from [entity](../resources/entity.md).
|createdDateTime|DateTimeOffset|Date and time of creation of the attack simulation and training campaign.| |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.|
|id|String|Unique identifier for the attack simulation and training campaign. Inherited from [entity](../resources/entity.md).|
+|includedAccountTarget|[accountTargetContent](../resources/accounttargetcontent.md)|Users targeted in the simulation.|
|isAutomated|Boolean|Flag that represents if the attack simulation and training campaign was created from a simulation automation flow. Supports `$filter` and `$orderby`. | |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.|
Inherits from [entity](../resources/entity.md).
|endpoint| Attack on endpoints of a corporate network, such as desktops, laptops, mobile phones, and Internet of Things (IoT) devices. | |unknownFutureValue| Evolvable enumeration sentinel value. Do not use. |
+### simulationContentStatus values
+
+|Member|Description |
+|:|:|
+|unknown| The simulation content status is not defined. |
+|draft| The simulation content status is in draft state. |
+|ready| The simulation content status is in ready state. |
+|archive| The simulation content status is archive state. |
+|delete| The simulation content status is in delete state. |
+|unknownFutureValue| Evolvable enumeration sentinel value. Do not use. |
+
+### simulationContentSource values
+
+|Member|Description |
+|:|:|
+|unknown| The simulation content source is not defined. |
+|global| The simulation content source is global. |
+|tenant| The simulation content source is tenant. |
+|unknownFutureValue| Evolvable enumeration sentinel value. Do not use. |
+ ## Relationships
-None.
+
+|Relationship|Type|Description|
+|:|:|:|
+|payload|[payload](../resources/payload.md)|The payload associated with a simulation during its creation.|
## JSON representation+ The following is a JSON representation of the resource. <!-- { "blockType": "resource",
The following is a JSON representation of the resource.
"attackType": "String", "automationId": "String", "completionDateTime": "String (timestamp)",
- "createdBy": {
- "@odata.type": "microsoft.graph.emailIdentity"
- },
+ "createdBy": {"@odata.type": "microsoft.graph.emailIdentity"},
"createdDateTime": "String (timestamp)", "description": "String", "displayName": "String",
+ "durationInDays": "Int32",
+ "excludedAccountTarget": {"@odata.type": "microsoft.graph.accountTargetContent"},
"id": "String (identifier)", "isAutomated": "Boolean",
- "lastModifiedBy": {
- "@odata.type": "microsoft.graph.emailIdentity"
- },
+ "includedAccountTarget": {"@odata.type": "microsoft.graph.accountTargetContent"},
+ "lastModifiedBy": {"@odata.type": "microsoft.graph.emailIdentity"},
"lastModifiedDateTime": "String (timestamp)", "launchDateTime": "String (timestamp)",
- "payloadDeliveryPlatform": "String",
- "report": {
- "@odata.type": "microsoft.graph.simulationReport"
- },
+ "payloadDeliveryPlatform": {"@odata.type": "microsoft.graph.payloadDeliveryPlatform"},
+ "report": {"@odata.type": "microsoft.graph.simulationReport"},
"status": "String" } ``` - ## See also+ - [Simulate a phishing attack](/microsoft-365/security/office-365-security/attack-simulation-training?view=o365-worldwide&preserve-view=true) - [Get started using attack simulation training](/microsoft-365/security/office-365-security/attack-simulation-training-get-started?view=o365-worldwide&preserve-view=true#simulations).
v1.0 Smsauthenticationmethodconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/smsauthenticationmethodconfiguration.md
Represents a Text Message authentication methods policy. Authentication methods
|Method|Return type|Description| |:|:|:| |[Get](../api/smsauthenticationmethodconfiguration-get.md)|[smsAuthenticationMethodConfiguration](../resources/smsauthenticationmethodconfiguration.md)|Read the properties and relationships of a smsAuthenticationMethodConfiguration object.|
-|[Update](../api/smsauthenticationmethodconfiguration-update.md)|[smsAuthenticationMethodConfiguration](../resources/smsauthenticationmethodconfiguration.md)|Update the properties of a smsAuthenticationMethodConfiguration object.|
+|[Update](../api/smsauthenticationmethodconfiguration-update.md)|None|Update the properties of a smsAuthenticationMethodConfiguration object.|
|[Delete](../api/smsauthenticationmethodconfiguration-delete.md)|None|Reverts the smsAuthenticationMethodConfiguration object to its default configuration.| ## Properties |Property|Type|Description| |:|:|:|
+|excludeTargets|[excludeTarget](../resources/excludetarget.md) collection|Groups of users that are excluded from the policy.|
|id|String|The authentication method policy identifier.| |state|authenticationMethodState|Possible values are: `enabled`, `disabled`.| ## Relationships |Relationship|Type|Description| |:|:|:|
-|includeTargets|[smsAuthenticationMethodTarget](../resources/smsauthenticationmethodtarget.md) collection|A collection of users or groups who are enabled to use the authentication method.|
+|includeTargets|[smsAuthenticationMethodTarget](../resources/smsauthenticationmethodtarget.md) collection|A collection of groups that are enabled to use the authentication method.|
## JSON representation The following is a JSON representation of the resource.
The following is a JSON representation of the resource.
{ "@odata.type": "#microsoft.graph.smsAuthenticationMethodConfiguration", "id": "String (identifier)",
- "state": "String"
+ "state": "String",
+ "excludeTargets": [
+ {
+ "@odata.type": "microsoft.graph.excludeTarget"
+ }
+ ]
} ```
v1.0 Smsauthenticationmethodtarget https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/smsauthenticationmethodtarget.md
Title: "smsAuthenticationMethodTarget resource type"
-description: "A collection of users or groups enabled to use Text Message authentication methods policy."
+description: "A collection of groups enabled to use Text Message authentication methods policy."
ms.localizationpriority: medium ms.prod: "identity-and-sign-in"
Namespace: microsoft.graph
[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)]
-A collection of users or groups enabled to use [Text Message authentication methods policy](../resources/smsAuthenticationMethodConfiguration.md) in Azure AD.
+A collection of groups enabled to use [Text Message authentication methods policy](../resources/smsAuthenticationMethodConfiguration.md) in Azure AD.
## Properties |Property|Type|Description| |:|:|:| |id|String|Object ID of an Azure AD user or group.| |isRegistrationRequired|Boolean|Determines whether the user is enforced to register the authentication method. **Not supported**.|
-|isUsableForSignIn|Boolean|Determines if the users or groups can use this authentication method to sign in to Azure AD. The value is always `true`.|
-|targetType|authenticationMethodTargetType| Possible values are: `user`, `group`.|
+|isUsableForSignIn|Boolean|Determines if users can use this authentication method to sign in to Azure AD. `true` if users can use this method for primary authentication, otherwise `false`.|
+|targetType|authenticationMethodTargetType|Possible values are: `group`, and `unknownFutureValue`. From December 2022, targeting individual users using `user` is no longer recommended. Existing targets will remain but we recommend to move the individual users to a targeted group. Inherited from [authenticationMethodTarget](authenticationMethodTarget.md).|
## Relationships None.
v1.0 Softwareoathauthenticationmethod https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/softwareoathauthenticationmethod.md
Namespace: microsoft.graph
A representation of a software OATH token registered to a user. A software OATH token is a software-based number generator that uses the OATH Time-Based One Time Password (TOTP) standard for multi-factor authentication. This API will not return Microsoft Authenticator authentication method entities, though it will return an entity if Microsoft Authenticator was set up via the third-party software authenticator flow.
+This is a derived type that inherits from the [authenticationMethod](authenticationmethod.md) resource type.
+ ## Methods |Method|Return type|Description| |:|:|:|
v1.0 Softwareoathauthenticationmethodconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/softwareoathauthenticationmethodconfiguration.md
+
+ Title: "softwareOathAuthenticationMethodConfiguration resource type"
+description: "Represents the authentication policy for a third-party software OATH authentication method."
+
+ms.localizationpriority: medium
++
+# softwareOathAuthenticationMethodConfiguration resource type
+
+Namespace: microsoft.graph
++
+Represents the authentication policy for a third-party software OATH authentication method. Authentication methods policies define configuration settings and users or groups that are enabled to use the authentication method.
++
+## Methods
+|Method|Return type|Description|
+|:|:|:|
+|[Get softwareOathAuthenticationMethodConfiguration](../api/softwareoathauthenticationmethodconfiguration-get.md)|[softwareOathAuthenticationMethodConfiguration](../resources/softwareoathauthenticationmethodconfiguration.md)|Read the properties and relationships of a [softwareOathAuthenticationMethodConfiguration](../resources/softwareoathauthenticationmethodconfiguration.md) object.|
+|[Update softwareOathAuthenticationMethodConfiguration](../api/softwareoathauthenticationmethodconfiguration-update.md)|None|Update the properties of a [softwareOathAuthenticationMethodConfiguration](../resources/softwareoathauthenticationmethodconfiguration.md) object.|
+|[Delete softwareOathAuthenticationMethodConfiguration](../api/softwareoathauthenticationmethodconfiguration-delete.md)|None|Reverts the [softwareOathAuthenticationMethodConfiguration](../resources/softwareoathauthenticationmethodconfiguration.md) object to its default configuration.|
+
+## Properties
+|Property|Type|Description|
+|:|:|:|
+|excludeTargets|[excludeTarget](../resources/excludetarget.md) collection|Groups of users that are excluded from the policy.|
+|id|String|The authentication method policy identifier.|
+|state|authenticationMethodState|Represents whether users can register this authentication method. The possible values are: `enabled`, `disabled`.|
+
+## Relationships
+|Relationship|Type|Description|
+|:|:|:|
+|includeTargets|[authenticationMethodTarget](../resources/authenticationmethodtarget.md) collection| A collection of groups that are enabled to use the authentication method. Expanded by default.|
+
+## JSON representation
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "keyProperty": "id",
+ "@odata.type": "microsoft.graph.softwareOathAuthenticationMethodConfiguration",
+ "baseType": "microsoft.graph.authenticationMethodConfiguration",
+ "openType": false
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.softwareOathAuthenticationMethodConfiguration",
+ "id": "String (identifier)",
+ "state": "String",
+ "excludeTargets": [
+ {
+ "@odata.type": "microsoft.graph.excludeTarget"
+ }
+ ]
+}
+```
+
v1.0 Subscription https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/subscription.md
Namespace: microsoft.graph
A subscription allows a client app to receive change notifications about changes to data in Microsoft Graph. For the possible resource path values for each supported resource, see [Use the Microsoft Graph API to get change notifications](webhooks.md). To learn how to use lifecycle notifications, see [Reduce missing subscriptions and change notifications](/graph/webhooks-lifecycle).
For the possible resource path values for each supported resource, see [Use the
## Properties
-| Property | Type | Description | Supported Resources |
-|:|:--|:|:--|
-| applicationId | String | Optional. Identifier of the application used to create the subscription. Read-only. | All |
-| changeType | String | Required. Indicates the type of change in the subscribed resource that will raise a change notification. The supported values are: `created`, `updated`, `deleted`. Multiple values can be combined using a comma-separated list. <br><br>**Note:** <li> Drive root item and list change notifications support only the `updated` changeType. <li>[User](../resources/user.md) and [group](../resources/user.md) change notifications support `updated` and `deleted` changeType. Use `updated` to receive notifications when user or group is created, updated or soft deleted. Use `deleted` to receive notifications when user or group is permanently deleted. | All |
-| clientState | String | Optional. Specifies the value of the **clientState** property sent by the service in each change notification. The maximum length is 255 characters. The client can check that the change notification came from the service by comparing the value of the **clientState** property sent with the subscription with the value of the **clientState** property received with each change notification. | All |
-| creatorId | String | Optional. Identifier of the user or service principal that created the subscription. If the app used delegated permissions to create the subscription, this field contains the ID of the signed-in user the app called on behalf of. If the app used application permissions, this field contains the ID of the service principal corresponding to the app. Read-only. | All |
-| encryptionCertificate | String | Optional. A base64-encoded representation of a certificate with a public key used to encrypt resource data in change notifications. Optional but required when **includeResourceData** is `true`. | All |
-| encryptionCertificateId | String | Optional. A custom app-provided identifier to help identify the certificate needed to decrypt resource data. Required when **includeResourceData** is `true`. | All |
-| expirationDateTime | DateTimeOffset | Required. Specifies the date and time when the webhook subscription expires. The time is in UTC, and can be an amount of time from subscription creation that varies for the resource subscribed to. For the maximum supported subscription length of time, see [the table below](#maximum-length-of-subscription-per-resource-type). | All |
-| id | String | Optional. Unique identifier for the subscription. Read-only. | All |
-| includeResourceData | Boolean | Optional. When set to `true`, change notifications [include resource data](/graph/webhooks-with-resource-data) (such as content of a chat message). | All |
-| latestSupportedTlsVersion | String | Optional. Specifies the latest version of Transport Layer Security (TLS) that the notification endpoint, specified by **notificationUrl**, supports. The possible values are: `v1_0`, `v1_1`, `v1_2`, `v1_3`. </br></br>For subscribers whose notification endpoint supports a version lower than the currently recommended version (TLS 1.2), specifying this property by a set [timeline](https://developer.microsoft.com/graph/blogs/microsoft-graph-subscriptions-deprecating-tls-1-0-and-1-1/) allows them to temporarily use their deprecated version of TLS before completing their upgrade to TLS 1.2. For these subscribers, not setting this property per the timeline would result in subscription operations failing. </br></br>For subscribers whose notification endpoint already supports TLS 1.2, setting this property is optional. In such cases, Microsoft Graph defaults the property to `v1_2`. | All |
-| lifecycleNotificationUrl | String | Optional. The URL of the endpoint that receives lifecycle notifications, including `subscriptionRemoved` and `missed` notifications. This URL must make use of the HTTPS protocol. | All |
-| notificationContentType | String | Optional. Desired **content-type** for Microsoft Graph change notifications for supported resource types. The default content-type is `application/json`. | All |
-| notificationQueryOptions | String |Optional. OData query options for specifying the value for the targeting resource. Clients receive notifications when the resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the **notificationQueryOptions** property. For example, when the print job is completed or when a print job resource `isFetchable` property value becomes `true` etc. | [Universal Print Service](/graph/universal-print-webhook-notifications) |
-| notificationUrl | String | Required. The URL of the endpoint that receives the change notifications. This URL must make use of the HTTPS protocol. | All |
-| notificationUrlAppId| String | Optional. The app ID that the subscription service can use to generate the validation token. This allows the client to validate the authenticity of the notification received. | All |
-| resource | String | Required. Specifies the resource that will be monitored for changes. Do not include the base URL (`https://graph.microsoft.com/bet) for each supported resource. | All |
+| Property | Type | Description |
+||||
+| applicationId | String | Optional. Identifier of the application used to create the subscription. Read-only. |
+| changeType | String | Required. Indicates the type of change in the subscribed resource that will raise a change notification. The supported values are: `created`, `updated`, `deleted`. Multiple values can be combined using a comma-separated list. <br><br>**Note:** <li> Drive root item and list change notifications support only the `updated` changeType. <li>[User](../resources/user.md) and [group](../resources/user.md) change notifications support `updated` and `deleted` changeType. Use `updated` to receive notifications when user or group is created, updated or soft deleted. Use `deleted` to receive notifications when user or group is permanently deleted. |
+| clientState | String | Optional. Specifies the value of the **clientState** property sent by the service in each change notification. The maximum length is 255 characters. The client can check that the change notification came from the service by comparing the value of the **clientState** property sent with the subscription with the value of the **clientState** property received with each change notification. |
+| creatorId | String | Optional. Identifier of the user or service principal that created the subscription. If the app used delegated permissions to create the subscription, this field contains the ID of the signed-in user the app called on behalf of. If the app used application permissions, this field contains the ID of the service principal corresponding to the app. Read-only. |
+| encryptionCertificate | String | Optional. A base64-encoded representation of a certificate with a public key used to encrypt resource data in change notifications. Optional but required when **includeResourceData** is `true`. |
+| encryptionCertificateId | String | Optional. A custom app-provided identifier to help identify the certificate needed to decrypt resource data. Required when **includeResourceData** is `true`. |
+| expirationDateTime | DateTimeOffset | Required. Specifies the date and time when the webhook subscription expires. The time is in UTC, and can be an amount of time from subscription creation that varies for the resource subscribed to. For the maximum supported subscription length of time, see [the table below](#maximum-length-of-subscription-per-resource-type). |
+| id | String | Optional. Unique identifier for the subscription. Read-only. |
+| includeResourceData | Boolean | Optional. When set to `true`, change notifications [include resource data](/graph/webhooks-with-resource-data) (such as content of a chat message). |
+| latestSupportedTlsVersion | String | Optional. Specifies the latest version of Transport Layer Security (TLS) that the notification endpoint, specified by **notificationUrl**, supports. The possible values are: `v1_0`, `v1_1`, `v1_2`, `v1_3`. </br></br>For subscribers whose notification endpoint supports a version lower than the currently recommended version (TLS 1.2), specifying this property by a set [timeline](https://developer.microsoft.com/graph/blogs/microsoft-graph-subscriptions-deprecating-tls-1-0-and-1-1/) allows them to temporarily use their deprecated version of TLS before completing their upgrade to TLS 1.2. For these subscribers, not setting this property per the timeline would result in subscription operations failing. </br></br>For subscribers whose notification endpoint already supports TLS 1.2, setting this property is optional. In such cases, Microsoft Graph defaults the property to `v1_2`. |
+| lifecycleNotificationUrl | String | Optional. The URL of the endpoint that receives lifecycle notifications, including `subscriptionRemoved`, `reauthorizationRequired`, and `missed` notifications. This URL must make use of the HTTPS protocol. |
+| notificationContentType | String | Optional. Desired **content-type** for Microsoft Graph change notifications for supported resource types. The default content-type is `application/json`. |
+| notificationQueryOptions | String | Optional. OData query options for specifying the value for the targeting resource. Clients receive notifications when the resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the **notificationQueryOptions** property. For example, when the print job is completed or when a print job resource `isFetchable` property value becomes `true` etc. <br/><br/> Supported only for Universal Print Service. For more information, see [Subscribe to change notifications from cloud printing APIs using Microsoft Graph](/graph/universal-print-webhook-notifications). |
+| notificationUrl | String | Required. The URL of the endpoint that receives the change notifications. This URL must make use of the HTTPS protocol. |
+| notificationUrlAppId | String | Optional. The app ID that the subscription service can use to generate the validation token. This allows the client to validate the authenticity of the notification received. |
+| resource | String | Required. Specifies the resource that will be monitored for changes. Do not include the base URL (`https://graph.microsoft.com/bet) for each supported resource. |
### Maximum length of subscription per resource type
v1.0 Synchronization Configure With Custom Target Attributes https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/synchronization-configure-with-custom-target-attributes.md
ms.localizationpriority: medium
doc_type: conceptualPageType ms.prod: "applications" Last updated : 07/20/2022 # Configure synchronization with custom target attributes
v1.0 Synchronization Configure With Directory Extension Attributes https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/synchronization-configure-with-directory-extension-attributes.md
ms.localizationpriority: medium
doc_type: conceptualPageType ms.prod: "applications" Last updated : 07/20/2022 # Configure synchronization with directory extension attributes
v1.0 Targetresource https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/targetresource.md
Title: "targetResource resource complex type - Microsoft Graph API" description: "Defines the targetResource entity resource complex type of the Microsoft Graph API which supports audit log reporting organization (tenant) activity."-+ ms.localizationpriority: medium doc_type: resourcePageType ms.prod: "identity-and-access-reports"
v1.0 Team https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/team.md
Every team is associated with a [Microsoft 365 group](../resources/group.md). Th
| Property | Type | Description | |:|:--|:-|
+| id | string | The unique identifier of the team. The group has the same ID as the team. This property is read-only, and is inherited from the base entity type. |
|classSettings|[teamClassSettings](teamclasssettings.md) |Configure settings of a class. Available only when the team represents a class.| |classification|string| An optional label. Typically describes the data or business sensitivity of the team. Must match one of a pre-configured set in the tenant's directory. | |createdDateTime|dateTimeOffset|Timestamp at which the team was created.|
v1.0 Teamsapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/teamsapp.md
Users can see these apps in the Microsoft Teams Store, and these apps can be ins
- [teamsAppInstallation](teamsappinstallation.md) - [teamsAppDefinition](teamsappdefinition.md) - [teamsTab](../resources/teamstab.md)
+- [App catalog sample (C#)](https://github.com/OfficeDev/Microsoft-Teams-Samples/tree/main/samples/graph-appcatalog-lifecycle/csharp)
+- [App catalog sample (Node.JS)](https://github.com/OfficeDev/Microsoft-Teams-Samples/tree/main/samples/graph-appcatalog-lifecycle/nodejs)
<!-- uuid: 8fcb5dbc-d5aa-4681-8e31-b001d5168d79 2015-10-25 14:57:30 UTC -->
v1.0 Teamvisibilitytype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/teamvisibilitytype.md
Describes the visibility of a [team](../resources/team.md).
|:|:--|:-| |private|0|Anyone can see the team but only the owner can add a user to the team.| |public|1|Anyone can join the team.|-
+|hiddenMembership|2|Only the administrators (global, company, user, and helpdesk) can view the members of a team.<br>Owner permissions are required to join a team.|
v1.0 Temporaryaccesspassauthenticationmethod https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/temporaryaccesspassauthenticationmethod.md
Namespace: microsoft.graph
Represents a Temporary Access Pass registered to a user. A Temporary Access Pass is a time-limited passcode that serves as a strong credential and allows onboarding of passwordless credentials. The availability and settings that can be configured for the **temporaryAccessPassAuthenticationMethod** depends on the [Temporary Access Pass methods policy](temporaryaccesspassauthenticationmethodconfiguration.md).
+This is a derived type that inherits from the [authenticationMethod](authenticationmethod.md) resource type.
+ ## Methods |Method|Return type|Description|
v1.0 Temporaryaccesspassauthenticationmethodconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/temporaryaccesspassauthenticationmethodconfiguration.md
Represents a Temporary Access Pass authentication methods policy that defines th
|:|:|:| |defaultLength|Int|Default length in characters of a Temporary Access Pass object. Must be between 8 and 48 characters.| |defaultLifetimeInMinutes|Int|Default lifetime in minutes for a Temporary Access Pass. Value can be any integer between the **minimumLifetimeInMinutes** and **maximumLifetimeInMinutes**.|
+|excludeTargets|[excludeTarget](../resources/excludetarget.md) collection|Groups of users that are excluded from the policy.|
|id|String|The identifier of the authentication method policy. Inherited from [entity](entity.md).| |isUsableOnce|Boolean |If `true`, all the passes in the tenant will be restricted to one-time use. If `false`, passes in the tenant can be created to be either one-time use or reusable.| |minimumLifetimeInMinutes|Int|Minimum lifetime in minutes for any Temporary Access Pass created in the tenant. Value can be between 10 and 43200 minutes (equivalent to 30 days).|
Represents a Temporary Access Pass authentication methods policy that defines th
## Relationships |Relationship|Type|Description| |:|:|:|
-|includeTargets|[authenticationMethodTarget](../resources/authenticationmethodtarget.md) collection|A collection of users or groups who are enabled to use the authentication method.|
+|includeTargets|[authenticationMethodTarget](../resources/authenticationmethodtarget.md) collection|A collection of groups that are enabled to use the authentication method.|
## JSON representation The following is a JSON representation of the resource.
The following is a JSON representation of the resource.
"@odata.type": "#microsoft.graph.temporaryAccessPassAuthenticationMethodConfiguration", "id": "String (identifier)", "state": "String",
+ "excludeTargets": [
+ {
+ "@odata.type": "microsoft.graph.excludeTarget"
+ }
+ ],
"defaultLifetimeInMinutes": "Integer", "defaultLength": "Integer", "minimumLifetimeInMinutes": "Integer",
v1.0 Todo Overview https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/todo-overview.md
Use the Microsoft Graph To Do API built on [todoTask](todotask.md) to create an
* Sync your appΓÇÖs existing tasks with To Do and create a single task view for better prioritization and manageability. * Manage To Do tasks in a custom business application.
-Currently, the API supports only permissions delegated by the signed-in user.
+The API supports both delegated and application permissions.
Before starting with the To Do API, take a look at the resources and how they relate to one another.
v1.0 User https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/user.md
This resource supports:
| onPremisesUserPrincipalName | String | Contains the on-premises `userPrincipalName` synchronized from the on-premises directory. The property is only populated for customers who are synchronizing their on-premises directory to Azure Active Directory via Azure AD Connect. Read-only. <br><br>Supports `$filter` (`eq`, `ne`, `not`, `ge`, `le`, `in`, `startsWith`). | | otherMails | String collection | A list of additional email addresses for the user; for example: `["bob@contoso.com", "Robert@fabrikam.com"]`.<br>NOTE: This property cannot contain accent characters.<br><br>Supports `$filter` (`eq`, `not`, `ge`, `le`, `in`, `startsWith`, `endsWith`, `/$count eq 0`, `/$count ne 0`). | | passwordPolicies | String | Specifies password policies for the user. This value is an enumeration with one possible value being `DisableStrongPassword`, which allows weaker passwords than the default policy to be specified. `DisablePasswordExpiration` can also be specified. The two may be specified together; for example: `DisablePasswordExpiration, DisableStrongPassword`. For more information on the default password policies, see [Azure AD pasword policies](/azure/active-directory/authentication/concept-sspr-policy#password-policies-that-only-apply-to-cloud-user-accounts). <br><br>Supports `$filter` (`ne`, `not`, and `eq` on `null` values).|
-| passwordProfile | [passwordProfile](passwordprofile.md) | Specifies the password profile for the user. The profile contains the user's password. This property is required when a user is created. The password in the profile must satisfy minimum requirements as specified by the **passwordPolicies** property. By default, a strong password is required. **NOTE:** For Azure B2C tenants, the **forceChangePasswordNextSignIn** property should be set to `false` and instead use custom policies and user flows to force password reset at first logon. See [Force password reset at first logon](https://github.com/azure-ad-b2c/samples/tree/master/policies/force-password-reset-first-logon). <br><br>Supports `$filter` (`eq`, `ne`, `not`, `in`, and `eq` on `null` values).|
+| passwordProfile | [passwordProfile](passwordprofile.md) | Specifies the password profile for the user. The profile contains the user's password. This property is required when a user is created. The password in the profile must satisfy minimum requirements as specified by the **passwordPolicies** property. By default, a strong password is required. <br><br>Supports `$filter` (`eq`, `ne`, `not`, `in`, and `eq` on `null` values).|
| pastProjects | String collection | A list for the user to enumerate their past projects. <br><br>Returned only on `$select`. | | postalCode | String | The postal code for the user's postal address. The postal code is specific to the user's country/region. In the United States of America, this attribute contains the ZIP code. Maximum length is 40 characters. <br><br>Supports `$filter` (`eq`, `ne`, `not`, `ge`, `le`, `in`, `startsWith`, and `eq` on `null` values).| | preferredDataLocation | String | The preferred data location for the user. For more information, see [OneDrive Online Multi-Geo](/sharepoint/dev/solution-guidance/multigeo-introduction).|
v1.0 Users https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/users.md
ms.localizationpriority: high
ms.prod: "users" doc_type: conceptualPageType Last updated : 11/16/2022 # Working with users in Microsoft Graph
v1.0 Voiceauthenticationmethodconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/voiceauthenticationmethodconfiguration.md
+
+ Title: "voiceAuthenticationMethodConfiguration resource type"
+description: "Represents a voice call authenticaiton methods policy"
+
+ms.localizationpriority: medium
++
+# voiceAuthenticationMethodConfiguration resource type
+
+Namespace: microsoft.graph
++
+Represents a voice call authentication methods policy. Authentication methods policies define configuration settings and users or groups that are enabled to use the authentication method.
++
+Inherits from [authenticationMethodConfiguration](../resources/authenticationmethodconfiguration.md).
+
+## Methods
+|Method|Return type|Description|
+|:|:|:|
+|[Get voiceAuthenticationMethodConfiguration](../api/voiceauthenticationmethodconfiguration-get.md)|[voiceAuthenticationMethodConfiguration](../resources/voiceauthenticationmethodconfiguration.md)|Read the properties and relationships of a [voiceAuthenticationMethodConfiguration](../resources/voiceauthenticationmethodconfiguration.md) object.|
+|[Update voiceAuthenticationMethodConfiguration](../api/voiceauthenticationmethodconfiguration-update.md)|None|Update the properties of a [voiceAuthenticationMethodConfiguration](../resources/voiceauthenticationmethodconfiguration.md) object.|
+|[Delete voiceAuthenticationMethodConfiguration](../api/voiceauthenticationmethodconfiguration-delete.md)|None|Revert the [voiceAuthenticationMethodConfiguration](../resources/voiceauthenticationmethodconfiguration.md) object to its default configuration.|
+
+## Properties
+|Property|Type|Description|
+|:|:|:|
+|excludeTargets|[excludeTarget](../resources/excludetarget.md) collection|Groups of users that are excluded from the policy.|
+|id|String|The authentication method policy identifier.|
+|isOfficePhoneAllowed|Boolean|`true` if users can register office phones, otherwise, `false`. |
+|state|authenticationMethodState|Represents whether users can register this authentication method. The possible values are: `enabled`, `disabled`.|
+
+## Relationships
+|Relationship|Type|Description|
+|:|:|:|
+|includeTargets|[voiceAuthenticationMethodTarget](../resources/voiceauthenticationmethodtarget.md) collection|A collection of groups that are enabled to use the authentication method. Expanded by default.|
+
+## JSON representation
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "keyProperty": "id",
+ "@odata.type": "microsoft.graph.voiceAuthenticationMethodConfiguration",
+ "baseType": "microsoft.graph.authenticationMethodConfiguration",
+ "openType": false
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.voiceAuthenticationMethodConfiguration",
+ "id": "String (identifier)",
+ "state": "String",
+ "excludeTargets": [
+ {
+ "@odata.type": "microsoft.graph.excludeTarget"
+ }
+ ],
+ "isOfficePhoneAllowed": "Boolean"
+}
+```
+
v1.0 Voiceauthenticationmethodtarget https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/voiceauthenticationmethodtarget.md
+
+ Title: "voiceAuthenticationMethodTarget resource type"
+description: "A collection of groups enabled to use voice call authentication method via policy."
+
+ms.localizationpriority: medium
++
+# voiceAuthenticationMethodTarget resource type
+
+Namespace: microsoft.graph
++
+A collection of groups enabled to use voice call authentication via the [voice call authentication methods policy](../resources/voiceAuthenticationMethodConfiguration.md) in Azure AD.
+
+## Properties
+|Property|Type|Description|
+|:|:|:|
+|id|String|Object ID of an Azure AD group.|
+|isRegistrationRequired|Boolean|Determines whether the user is enforced to register the authentication method. **Not supported**.|
+|targetType|authenticationMethodTargetType|Possible values are: `group`, and `unknownFutureValue`. From December 2022, targeting individual users using `user` is no longer recommended. Existing targets will remain but we recommend to move the individual users to a targeted group. Inherited from [authenticationMethodTarget](authenticationMethodTarget.md).|
+
+## Relationships
+None.
+
+## JSON representation
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "keyProperty": "id",
+ "@odata.type": "microsoft.graph.voiceAuthenticationMethodTarget",
+ "baseType": "microsoft.graph.authenticationMethodTarget",
+ "openType": false
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.voiceAuthenticationMethodTarget",
+ "id": "String (identifier)",
+ "targetType": "String",
+ "isRegistrationRequired": "Boolean"
+}
+```
+
v1.0 Webapplicationsegment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/webapplicationsegment.md
+
+ Title: "webApplicationSegment resource type"
+description: "Represents the segment configurations that are allowed for an on-premises wildcard application published through Azure AD Application Proxy."
+ms.localizationpriority: medium
+++
+# webApplicationSegment resource type
+
+Namespace: microsoft.graph
++
+A [webApplicationSegment](webapplicationsegment.md) object represents the segment configurations that are allowed for an on-premises wildcard application published through Azure AD Application Proxy.
+
+Inherits from [applicationSegment](applicationsegment.md).
+
+## Properties
+
+| Property | Type | Description |
+|:-|:|:|
+|alternateUrl|String|If you're configuring a traffic manager in front of multiple App Proxy application segments, this property contains the user-friendly URL that will point to the traffic manager.|
+|externalUrl|String |The published external URL for the application segment; for example, `https://intranet.contoso.com/`.|
+|id|String|The unique identifier that is assigned to an applicationSegment by Azure AD. Not nullable. Read-only. Supports `$filter` (`eq`). Inherited from [applicationSegment](applicationsegment.md).|
+|internalUrl|String |The internal URL of the application segment; for example, `https://intranet/`.|
+
+## Relationships
+|Relationship|Type|Description|
+|:|:|:|
+|corsConfigurations|[corsConfiguration_v2](corsconfiguration_v2.md) collection|A collection of CORS Rule definitions for a particular application segment.|
+++
+## JSON representation
+
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.webApplicationSegment"
+}
+-->
+``` json
+{
+ "@odata.type": "microsoft.graph.webApplicationSegment",
+ "alternateUrl": "String",
+ "externalUrl": "String",
+ "internalUrl": "String"
+}
+```
v1.0 Webhooks https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/webhooks.md
ms.localizationpriority: medium
doc_type: conceptualPageType ms.prod: "change-notifications" Last updated : 10/04/2022 # Use the Microsoft Graph API to get change notifications
Namespace: microsoft.graph
The Microsoft Graph REST API uses a webhook mechanism to deliver change notifications to clients. A client is a web service that configures its own URL to receive notifications. Client apps use notifications to update their state upon changes. For more details, including how to subscribe to and handle incoming notifications, see [Set up notifications for changes in user data](/graph/webhooks).
-Using the Microsoft Graph API, an app can subscribe to changes in the resources in the table below. Apply the resource path corresponding to your scenario as specified when [creating a subscription](/graph/api/subscription-post-subscriptions).
-
-| **Resource** | **Supported resource paths** | **Resource data can be included in notifications** |
-|:-|:|:--|
-| Cloud printing [printer][] | Changes when a print job is ready to be downloaded (JobFetchable event):<br>`/print/printers/{id}/jobs` | No |
-| Cloud printing [printTaskDefinition][] | Changes when there is a valid job in the queue (JobStarted event) :<br>`/print/printtaskdefinition/{id}/tasks` | No |
-| [driveItem][] on OneDrive for Business | Changes to content within the hierarchy of the _root folder_:<br>`/drives/{id}/root`<br> `/users/{id}/drive/root` | No |
-| [driveItem][] on OneDrive (personal) | Changes to content within the hierarchy of _any folder_:<br>`/users/{id}/drive/root` | No |
-| [group][] | Changes to all groups:<br>`/groups` <br>Changes to a specific group:<br>`/groups/{id}`<br>Changes to owners of a specific group:<br>`/groups/{id}/owners`<br>Changes to members of a specific group:<br>`/groups/{id}/members` | No |
-| [list][] under a SharePoint [site][] | `/sites/{id}/lists/{id}` | No |
-| Microsoft 365 group [conversation][] | Changes to a group's conversations:<br>`groups/{id}/conversations` | No |
-| Outlook [event][] | Changes to all events in a user's mailbox:<br>`/users/{id}/events` | Yes |
-| Outlook [message][] | Changes to all messages in a user's mailbox: <br>`/users/{id}/messages`<br>Changes to messages in a user's Inbox:<br>`/users/{id}/mailFolders('inbox')/messages` | Yes |
-| Outlook personal [contact][] | Changes to all personal contacts in a user's mailbox:<br>`/users/{id}/contacts` | Yes |
-| Security [alert][] | Changes to a specific alert:<br>`/security/alerts/{id}` <br>Changes to filtered alerts:<br> `/security/alerts/?$filter`| No |
-| Teams [callRecord][] | Changes to _all_ call records: `/communications/callRecords` | No |
-| Teams [channel][] | Changes to channels in all teams:<br>`/teams/getAllChannels` <br>Changes to channel in a specific team:<br>`/teams/{id}/channels` | Yes |
-| Teams [chat][] | Changes to any chat in the tenant:<br>`/chats` <br>Changes to a specific chat:<br>`/chats/{id}`<br>Changes to any chat in the tenant a particular Teams app is installed to:<br>`/appCatalogs/teamsApps{id}/installedToChats` | Yes |
-| Teams [chatmessage][] | Changes to chat messages in all channels in all teams:<br>`/teams/getAllMessages` <br>Changes to chat messages in a specific channel:<br>`/teams/{id}/channels/{id}/messages`<br>Changes to chat messages in all chats:<br>`/chats/getAllMessages` <br>Changes to chat messages in a specific chat:<br>`/chats/{id}/messages`<br>Changes to chat messages in all chats a particular user is part of:<br>`/users/{id}/chats/getAllMessages`<br>Changes to chat messages in all the chats in the tenant that a particular Teams app is installed to:<br>`/appCatalogs/teamsApps/{id}/installedToChats/getAllMessages` | Yes |
-| Teams [conversationMember][] | Changes to membership in a specific team:<br>`/teams/{id}/members` <br> Changes to membership in a specific chat:<br>`/chats/{id}/members` <br> Changes to membership in all chats:<br>`/chats/getAllMembers` <br> Changes to membership in all channels under a specific team:<br>`/teams/{id}/channels/getAllMembers`<br>Changes to membership in all the chats in the tenant that a particular Teams app is installed to:<br>`/appCatalogs/teamsApps/{id}/installedToChats/getAllMembers` <br> Changes to membership in all channels across the tenant:<br> `teams/getAllChannels/getAllMembers`| Yes |
-| Teams [onlineMeeting][] | Changes to an online meeting: <br>`/communications/onlineMeetings/?$filter=JoinWebUrl eq {joinWebUrl}` | Yes |
-| Teams [presence][] | Changes to a single user's presence: `/communications/presences/{id}` <br> Changes to multiple user presences:<br> `/communications/presences?$filter=id in ({id},{id}...)` | Yes |
-| Teams [team][] | Changes to any team in the tenant:<br>`/teams` <br>Changes to a specific team:<br>`/teams/{id}` | Yes |
-| To Do [baseTask][] (deprecated) | Changes to all task in a specific task list:<br>`/me/tasks/lists/{baseTaskListId}/tasks`<br>Changes to all tasks:<br>`/me/tasks/lists/alltasks` | No |
-| [To Do task][] | Changes to all task in a specific task list:<br>`/me/todo/lists/{todoTaskListId}/tasks` | No |
-| [user][] | Changes to all users:<br>`/users` <br>Changes to a specific user:<br>`/users/{id}`| No |
- > **Note**: Any resource path that begins with `/users/{id}` can also accept `/me` to reference the signed-in user.
In general, subscription operations require read permission to the resource. For
## See also -- [Subscription resource type](subscription.md)-- [List subscriptions](../api/subscription-list.md)-- [Get subscription](../api/subscription-get.md)-- [Create subscription](../api/subscription-post-subscriptions.md)-- [Update subscription](../api/subscription-update.md)-- [Delete subscription](../api/subscription-delete.md)
+- [subscription resource type](subscription.md)
+- [Training module: Use change notifications and track changes with Microsoft Graph](/training/modules/msgraph-changenotifications-trackchanges)
+- [Lifecycle notifications](/graph/webhooks-lifecycle)
+
+<!-- Links -->
[chat]: ./chat.md [chatMessage]: ./chatmessage.md [contact]: ./contact.md
v1.0 Websegmentconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/websegmentconfiguration.md
+
+ Title: "webSegmentConfiguration resource type"
+description: "Represents application segments for an on-premises wildcard application published through Azure AD Application Proxy."
+ms.localizationpriority: medium
+++
+# webSegmentConfiguration resource type
+
+Namespace: microsoft.graph
++
+A [webSegmentConfiguration](websegmentconfiguration.md) object represents application segments for an on-premises wildcard application published through Azure AD Application Proxy.
+
+Inherits from [segmentsConfiguration](segmentconfiguration.md).
+
+## Properties
+
+| Property | Type | Description |
+|:-|:|:|
+|applicationSegments|[webApplicationSegment](webapplicationsegment.md) collection|A collection of application segments for an on-premises wildcard application published through Azure AD Application Proxy. It includes the internal URL, external URL, alternate URLs, and cors configurations. |
++
+## JSON representation
+
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.onPremisesApplicationSegment"
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.webSegmentConfiguration",
+ "applicationSegments": [
+ {
+ "@odata.type": "microsoft.graph.webApplicationSegment"
+ }
+ ],
+}
+```
v1.0 Windowshelloforbusinessauthenticationmethod https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/windowshelloforbusinessauthenticationmethod.md
Namespace: microsoft.graph
A representation of a Windows Hello for Business authentication method registered to a user. Windows Hello for Business is a sign-in authentication method for Windows devices.
-Inherits from [authenticationMethod](../resources/authenticationmethod.md).
+This is a derived type that inherits from the [authenticationMethod](authenticationmethod.md) resource type.
## Methods |Method|Return type|Description|
v1.0 X509certificateauthenticationmethodconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/x509certificateauthenticationmethodconfiguration.md
Inherits from [authenticationMethodConfiguration](../resources/authenticationmet
|Method|Return type|Description| |:|:|:| |[Get x509CertificateAuthenticationMethodConfiguration](../api/x509certificateauthenticationmethodconfiguration-get.md)|[x509CertificateAuthenticationMethodConfiguration](../resources/x509certificateauthenticationmethodconfiguration.md)|Read the properties and relationships of a x509CertificateAuthenticationMethodConfiguration object.|
-|[Update x509CertificateAuthenticationMethodConfiguration](../api/x509certificateauthenticationmethodconfiguration-update.md)|[x509CertificateAuthenticationMethodConfiguration](../resources/x509certificateauthenticationmethodconfiguration.md)|Update the properties of a x509CertificateAuthenticationMethodConfiguration object.|
+|[Update x509CertificateAuthenticationMethodConfiguration](../api/x509certificateauthenticationmethodconfiguration-update.md)|None|Update the properties of a x509CertificateAuthenticationMethodConfiguration object.|
|[Delete x509CertificateAuthenticationMethodConfiguration](../api/x509certificateauthenticationmethodconfiguration-delete.md)|None| Delete the tenant-customized x509CertificateAuthenticationMethodConfiguration object and restore the default configuration.| ## Properties |Property|Type|Description| |:|:|:|
+|excludeTargets|[excludeTarget](../resources/excludetarget.md) collection|Groups of users that are excluded from the policy.|
|id|String|The identifier for the authentication method policy. The value is always `X509Certificate`. Inherited from [authenticationMethodConfiguration](../resources/authenticationmethodconfiguration.md).| |state|authenticationMethodState|The possible values are: `enabled`, `disabled`. Inherited from [authenticationMethodConfiguration](../resources/authenticationmethodconfiguration.md).| |certificateUserBindings|[x509CertificateUserBinding](../resources/x509certificateuserbinding.md) collection|Defines fields in the X.509 certificate that map to attributes of the Azure AD user object in order to bind the certificate to the user. The **priority** of the object determines the order in which the binding is carried out. The first binding that matches will be used and the rest ignored. |
Inherits from [authenticationMethodConfiguration](../resources/authenticationmet
## Relationships |Relationship|Type|Description| |:|:|:|
-|includeTargets|[authenticationMethodTarget](../resources/authenticationmethodtarget.md) collection|A collection of users or groups who are enabled to use the authentication method.|
+|includeTargets|[authenticationMethodTarget](../resources/authenticationmethodtarget.md) collection|A collection of groups that are enabled to use the authentication method.|
## JSON representation The following is a JSON representation of the resource.
The following is a JSON representation of the resource.
"@odata.type": "#microsoft.graph.x509CertificateAuthenticationMethodConfiguration", "id": "String (identifier)", "state": "String",
+ "excludeTargets": [
+ {
+ "@odata.type": "microsoft.graph.excludeTarget"
+ }
+ ],
"certificateUserBindings": [ { "@odata.type": "microsoft.graph.x509CertificateUserBinding"
v1.0 Accesspackageassignmentrequest Cancel https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/accesspackageassignmentrequest-cancel.md
POST https://graph.microsoft.com/v1.0/identityGovernance/entitlementManagement/a
} --> ``` http
-HTTP/1.1 204 No Content
+HTTP/1.1 200 Status OK
```
v1.0 Administrativeunit Post Members https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/administrativeunit-post-members.md
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.
POST https://graph.microsoft.com/v1.0/directory/administrativeUnits/{id}/members
Content-type: application/json {
- "@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/v1.0/api/appcatalogs-list-teamsapps.md
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.
+> 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/v1.0/appCatalogs/teamsApps?$filter=distributionM
-- <!-- markdownlint-disable MD024 --> #### 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/v1.0/appCatalogs/teamsApps?$filter=id%20eq%20'b1c5353a-7aca-41b3-830f-27d5218fe0e5'
+GET https://graph.microsoft.com/v1.0/appCatalogs/teamsApps?$filter=id eq 'b1c5353a-7aca-41b3-830f-27d5218fe0e5'
``` # [C#](#tab/csharp)
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/v1.0/appCatalogs/teamsApps?$filter=externalId eq
#### Response
+The following is an example of the response.
+ <!-- { "blockType": "response", "@odata.type": "microsoft.graph.teamsApp",
The following example lists applications with a given ID, and expands **appDefin
#### Request -
+The following is an example of a request.
# [HTTP](#tab/http) <!-- {
GET https://graph.microsoft.com/v1.0/appCatalogs/teamsApps?$filter=id eq '876df2
-- #### 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/v1.0/appCatalogs/teamsApps?$expand=appDefinition
-- #### Response
+The following is an example of the response.
+ <!-- { "blockType": "response", "name": "list_teamsapp_with_bots",
Content-Type: application/json
] } ```+ ## See also - [List apps installed in a team](team-list-installedapps.md) <!-
v1.0 Application Post Calls https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/application-post-calls.md
One of the following permissions is required to call this API. To learn more, in
| Permission type | Permissions (from least to most privileged) | |:|:-|
-| Delegated (work or school account) | Not Supported |
-| Delegated (personal Microsoft account) | Not Supported |
-| Application | Calls.JoinGroupCallsasGuest.All, Calls.JoinGroupCalls.All, Calls.Initiate.All, Calls.InitiateGroupCalls.All |
+| Delegated (work or school account) | Not supported. |
+| Delegated (personal Microsoft account) | Not supported. |
+| Application | Calls.JoinGroupCalls.Chat*, Calls.JoinGroupCallAsGuest.All, Calls.JoinGroupCall.All, Calls.Initiate.All, Calls.InitiateGroupCall.All |
> **Note:** For a call with app-hosted media, you need the Calls.AccessMedia.All permission in addition to one of the permissions listed in the table above.
+>
+> Permissions marked with * use [resource-specific consent](/microsoftteams/platform/graph-api/rsc/resource-specific-consent).
## HTTP request <!-- { "blockType": "ignored" } -->
If successful, this method returns a `201 Created` response code and a [call](..
> **Note:** This call needs the Calls.Initiate.All permission. #### Request
-The following example shows the request which makes a peer-to-peer call between the bot and the specified user. In this example, the media is hosted by the service. The values of authorization token, callback URL, application ID, application name, user ID, user name, and tenant ID must be replaced with actual values to make the example work.
+The following example shows a request that makes a peer-to-peer call between the bot and the specified user. In this example, the media is hosted by the service. The values of authorization token, callback URL, application ID, application name, user ID, user name, and tenant ID must be replaced with actual values to make the example work.
# [HTTP](#tab/http)
Content-Type: application/json
<!-- { "blockType": "response", "truncated": true,
+ "name": "create-call-service-hosted-media-1",
"@odata.type": "microsoft.graph.call"
-} -->
+}-->
```http HTTP/1.1 201 Created Location: https://graph.microsoft.com/v1.0/communications/calls/2e1a0b00-2db4-4022-9570-243709c565ab
Content-Type: application/json
> **Note**: This example needs Calls.Initiate.All and Calls.AccessMedia.All permissions. #### Request
-The following example shows the request which makes a peer-to-peer call between the bot and the specified user. In this example the media is hosted locally by the application. The values of authorization token, callback url, application id, application name, user id, user name and tenant id must be replaced with actual values to make the example work.
+The following example shows a request that makes a peer-to-peer call between the bot and the specified user. In this example, the media is hosted locally by the application. The values of authorization token, callback URL, application ID, application name, user ID, user name, and tenant ID must be replaced with actual values to make the example work.
# [HTTP](#tab/http)
Content-Type: application/json
<!-- { "blockType": "response", "truncated": true,
+ "name": "create-call-app-hosted-media",
"@odata.type": "microsoft.graph.call" } --> ```http
This supports up to 5 VoIP users. The example shows how to create a group call w
#### Request +
+# [HTTP](#tab/http)
<!-- {
- "blockType": "example",
+ "blockType": "request",
"name": "create-group-call-service-hosted-media", "@odata.type": "microsoft.graph.call" }-->
Content-Type: application/json
} ```
+# [C#](#tab/csharp)
+
+# [JavaScript](#tab/javascript)
+
+# [Java](#tab/java)
+
+# [Go](#tab/go)
+
+# [PowerShell](#tab/powershell)
+
+# [PHP](#tab/php)
++++
+#### Response
+
+> **Note:** The response object shown here might be shortened for readability.
+<!-- {
+ "blockType": "response",
+ "truncated": true,
+ "name": "create-group-call-service-hosted-media",
+ "@odata.type": "microsoft.graph.call"
+}-->
+
+```http
+HTTP/1.1 201 Created
+Location: https://graph.microsoft.com/v1.0/communications/calls/2f1a1100-b174-40a0-aba7-0b405e01ed92
+Content-Type: application/json
+
+{
+ "@odata.type": "#microsoft.graph.call",
+ "state": "establishing",
+ "direction": "outgoing",
+ "subject": "Create a group call with service hosted media",
+ "callbackUri": "https://bot.contoso.com/callback",
+ "callChainId": "d17646-3110-40b1-bae6-e9ac6c3f74",
+ "callRoutes": [],
+ "source": {
+ "@odata.type": "#microsoft.graph.participantInfo",
+ "identity": {
+ "@odata.type": "#microsoft.graph.identitySet",
+ "application": {
+ "@odata.type": "#microsoft.graph.identity",
+ "displayName": "TestBot",
+ "id": "dd3885da-f9ab-486b-bfae-85de3d445555"
+ }
+ },
+ "region": null,
+ "languageId": null
+ },
+ "targets": [
+ {
+ "@odata.type": "#microsoft.graph.invitationParticipantInfo",
+ "identity": {
+ "@odata.type": "#microsoft.graph.identitySet",
+ "user": {
+ "@odata.type": "#microsoft.graph.identity",
+ "displayName": "user1",
+ "id": "98da8a1a-1b87-452c-a713-65d3f10b5555"
+ }
+ }
+ },
+ {
+ "@odata.type": "#microsoft.graph.invitationParticipantInfo",
+ "identity": {
+ "@odata.type": "#microsoft.graph.identitySet",
+ "user": {
+ "@odata.type": "#microsoft.graph.identity",
+ "displayName": "user2",
+ "id": "bf5aae9a-d11d-47a8-93b1-782504c95555"
+ }
+ }
+ }
+ ],
+ "requestedModalities": [
+ "audio"
+ ],
+ "activeModalities": [],
+ "mediaConfig": {
+ "@odata.type": "#microsoft.graph.serviceHostedMediaConfig",
+ },
+ "routingPolicies": [],
+ "tenantId": "aa67bd4c-8475-432d-bd41-39f255720e0a",
+ "id": "2f1a1100-b174-40a0-aba7-0b405e01ed92",
+ "myParticipantId": "c9a65b85-a223-44ae-8cdb-29395458323f",
+ "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#app/calls/$entity",
+}
+```
+ ### Example 4: Create a group call with application hosted media This supports up to 5 VoIP users. The example shows how to create a group call with two VoIP users.
This supports up to 5 VoIP users. The example shows how to create a group call w
#### Request +
+# [HTTP](#tab/http)
<!-- {
- "blockType": "example",
+ "blockType": "request",
"name": "create-group-call-app-hosted-media", "@odata.type": "microsoft.graph.call" }-->
Content-Type: application/json
} ```
+# [C#](#tab/csharp)
+
+# [JavaScript](#tab/javascript)
+
+# [Java](#tab/java)
+
+# [Go](#tab/go)
+
+# [PowerShell](#tab/powershell)
+
+# [PHP](#tab/php)
++++
+#### Response
+
+> **Note:** The response object shown here might be shortened for readability.
+<!-- {
+ "blockType": "response",
+ "truncated": true,
+ "name": "create-group-call-app-hosted-media",
+ "@odata.type": "microsoft.graph.call"
+}-->
+
+```http
+HTTP/1.1 201 Created
+Location: https://graph.microsoft.com/v1.0/communications/calls/2f1a1100-b174-40a0-aba7-0b405e01ed92
+Content-Type: application/json
+
+{
+ "@odata.type": "#microsoft.graph.call",
+ "state": "establishing",
+ "direction": "outgoing",
+ "subject": "Create a group call with app hosted media",
+ "callbackUri": "https://bot.contoso.com/callback",
+ "callChainId": "d8217646-3110-40b1-bae6-e9ac6c3a9f74",
+ "callRoutes": [],
+ "source": {
+ "@odata.type": "#microsoft.graph.participantInfo",
+ "identity": {
+ "@odata.type": "#microsoft.graph.identitySet",
+ "application": {
+ "@odata.type": "#microsoft.graph.identity",
+ "displayName": "TestBot",
+ "id": "dd3885da-f9ab-486b-bfae-85de3d445555"
+ }
+ },
+ "region": null,
+ "languageId": null
+ },
+ "targets": [
+ {
+ "@odata.type": "#microsoft.graph.invitationParticipantInfo",
+ "identity": {
+ "@odata.type": "#microsoft.graph.identitySet",
+ "user": {
+ "@odata.type": "#microsoft.graph.identity",
+ "displayName": "user1",
+ "id": "98da8a1a-1b87-452c-a713-65d3f10b5555"
+ }
+ }
+ },
+ {
+ "@odata.type": "#microsoft.graph.invitationParticipantInfo",
+ "identity": {
+ "@odata.type": "#microsoft.graph.identitySet",
+ "user": {
+ "@odata.type": "#microsoft.graph.identity",
+ "displayName": "user2",
+ "id": "bf5aae9a-d11d-47a8-93b1-782504c95555"
+ }
+ }
+ }
+ ],
+ "requestedModalities": [
+ "audio"
+ ],
+ "activeModalities": [],
+ "mediaConfig": {
+ "@odata.type": "#microsoft.graph.appHostedMediaConfig",
+ "blob": "<Media Session Configuration>",
+ "removeFromDefaultAudioGroup": false
+ },
+ "routingPolicies": [],
+ "tenantId": "aa67bd4c-8475-432d-bd41-39f255720e0a",
+ "id": "2f1a1100-b174-40a0-aba7-0b405e01ed92",
+ "myParticipantId": "c9a65b85-a223-44ae-8cdb-29395458323f",
+ "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#app/calls/$entity",
+}
+```
+ ### Example 5: Join scheduled meeting with service hosted media
-To join the scheduled meeting we will need to get the thread id, message id, organizer id and the tenant id in which the meeting is scheduled.
-This information can be obtained from the [Get Online Meetings API](../api/onlinemeeting-get.md) (VTC-based meetings only).
+To join the scheduled meeting, you need to get the thread ID, message ID, organizer ID, and the tenant ID in which the meeting is scheduled.
+You can get this information by using the [Get onlineMeeting](../api/onlinemeeting-get.md) API.
+
+The values of authorization token, callback URL, application ID, application name, user ID, user name, and tenant ID must be replaced along with the details obtained from the [Get onlineMeeting](../api/onlinemeeting-get.md) API with actual values to make the example work.
-The values of authorization token, callback url, application id, application name, user id, user name and tenant id must be replaced along with the details obtained from [Get Online Meetings API](../api/onlinemeeting-get.md) (VTC-based meetings only) with actual values to make the example work.
> **Note:** This example needs the `Calls.JoinGroupCalls.All` permission. #### Request +
+# [HTTP](#tab/http)
<!-- {
- "blockType": "example",
+ "blockType": "request",
"name": "join-scheduled-meeting-service-hosted-media", "@odata.type": "microsoft.graph.call" }-->
Content-Type: application/json
} ```
+# [C#](#tab/csharp)
+
+# [JavaScript](#tab/javascript)
+
+# [Java](#tab/java)
+
+# [Go](#tab/go)
+
+# [PowerShell](#tab/powershell)
+
+# [PHP](#tab/php)
++++ #### Response <!-- {
Content-Type: application/json
>**Note:** For join meeting scenarios apart from call state notifications, we receive roster notifications. ### Example 6: Join scheduled meeting with application hosted media
-Update the media config with the [AppHostedMediaConfig](../resources/apphostedmediaconfig.md) as shown below.
+Update the media config with the [appHostedMediaConfig](../resources/apphostedmediaconfig.md) as shown in the following example.
+#### Request
+
+# [HTTP](#tab/http)
<!-- {
- "blockType": "example",
+ "blockType": "request",
"name": "join-scheduled-meeting-app-hosted-media", "@odata.type": "microsoft.graph.call" }-->
Content-Type: application/json
} ```
-### Example 7: Create peer-to-peer PSTN call with service hosted media
+# [C#](#tab/csharp)
-> **Note:** This call requires the Calls.Initiate.All permission.
+# [JavaScript](#tab/javascript)
-This call requires an application instance with a PSTN number assigned. For details, see [Assign a phone number to your bot](/graph/cloud-communications-phone-number#assign-a-phone-number-to-your-bot).
+# [Java](#tab/java)
-#### Request
-The following example shows the request to make a peer-to-peer call between the bot and a PSTN number. In this example, the media is hosted by the service. The values of authorization token, callback URL, application instance ID, application instance display name, phone ID and tenant ID must be replaced with actual values to make the example work.
-> **Note:** Application instance ID is the object ID of application instance. The application ID that application instance links to should match the one in authorization token. Phone ID is the phone number in E.164 format.
+# [Go](#tab/go)
+# [PowerShell](#tab/powershell)
-# [HTTP](#tab/http)
-<!-- {
+# [PHP](#tab/php)
++++
+#### Response
+
+<!-- {
+ "blockType": "response",
+ "@odata.type": "microsoft.graph.call",
+ "truncated": "true"
+}-->
+
+```http
+HTTP/1.1 201 Created
+Location: https://graph.microsoft.com/v1.0/communications/calls/2f1a1100-b174-40a0-aba7-0b405e01ed92
+Content-Type: application/json
+
+{
+ "@odata.type": "#microsoft.graph.call",
+ "state": "establishing",
+ "direction": "outgoing",
+ "callbackUri": "https://bot.contoso.com/callback",
+ "callChainId": "d8217646-3110-40b1-bae6-e9ac6c3a9f74",
+ "callRoutes": [],
+ "source": {
+ "@odata.type": "#microsoft.graph.participantInfo",
+ "identity": {
+ "@odata.type": "#microsoft.graph.identitySet",
+ "application": {
+ "@odata.type": "#microsoft.graph.identity",
+ "displayName": "Calling Bot",
+ "id": "2891555a-92ff-42e6-80fa-6e1300c6b5c6"
+ }
+ },
+ "region": null,
+ "languageId": null
+ },
+ "targets": [],
+ "requestedModalities": [
+ "audio"
+ ],
+ "activeModalities": [],
+ "mediaConfig": {
+ "@odata.type": "#microsoft.graph.appHostedMediaConfig",
+ "blob": "<Media Session Configuration>",
+ },
+ "chatInfo": {
+ "@odata.type": "#microsoft.graph.chatInfo",
+ "threadId": "19:meeting_Win6Ydo4wsMijFjZS00ZGVjLTk5MGUtOTRjNWY2NmNkYTFm@thread.v2",
+ "messageId": "0",
+ "replyChainMessageId": null
+ },
+ "meetingInfo": {
+ "@odata.type": "#microsoft.graph.organizerMeetingInfo",
+ "organizer": {
+ "@odata.type": "#microsoft.graph.identitySet",
+ "user": {
+ "@odata.type": "#microsoft.graph.identity",
+ "id": "5810cede-f3cc-42eb-b2c1-e9bd5d53ec96",
+ "tenantId": "aa67bd4c-8475-432d-bd41-39f255720e0a",
+ "displayName": "Bob"
+ }
+ },
+ "allowConversationWithoutHost": true
+ },
+ "transcription": null,
+ "routingPolicies": [],
+ "tenantId": "aa67bd4c-8475-432d-bd41-39f255720e0a",
+ "myParticipantId": "05491616-385f-44a8-9974-18cc5f9933c1",
+ "id": "2f1a1100-b174-40a0-aba7-0b405e01ed92",
+ "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#app/calls/$entity",
+ "terminationReason": null,
+ "ringingTimeoutInSeconds": null,
+ "mediaState": null,
+ "subject": null,
+ "resultInfo": null,
+ "answeredBy": null,
+ "meetingCapability": null,
+ "toneInfo": null
+}
+```
++
+### Example 7: Join a scheduled meeting with joinMeetingId and passcode
+
+The following shows an example that requires a **joinMeetingId** and a **passcode** to join an existing meeting. You can retrieve these properties from the [Get onlineMeeting](../api/onlinemeeting-get.md) API.
+
+#### Request
+
+The following is an example of a request.
++
+# [HTTP](#tab/http)
+<!-- {
+ "blockType": "request",
+ "name": "join-meeting-with-join-meeting-id-and-passcode",
+ "@odata.type": "microsoft.graph.call"
+}-->
+
+```http
+POST https://graph.microsoft.com/v1.0/communications/calls
+Content-Type: application/json
+
+{
+ "@odata.type": "#microsoft.graph.call",
+ "callbackUri": "https://bot.contoso.com/callback",
+ "requestedModalities": [
+ "audio"
+ ],
+ "mediaConfig": {
+ "@odata.type": "#microsoft.graph.serviceHostedMediaConfig",
+ "preFetchMedia": [
+ {
+ "uri": "https://cdn.contoso.com/beep.wav",
+ "resourceId": "f8971b04-b53e-418c-9222-c82ce681a582"
+ },
+ {
+ "uri": "https://cdn.contoso.com/cool.wav",
+ "resourceId": "86dc814b-c172-4428-9112-60f8ecae1edb"
+ }
+ ]
+ },
+ "meetingInfo": {
+ "@odata.type": "#microsoft.graph.joinMeetingIdMeetingInfo",
+ "joinMeetingId": "1234567",
+ "passcode": "psw123"
+ },
+ "tenantId": "86dc81db-c112-4228-9222-63f3esaa1edb"
+}
+```
+
+# [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",
+ "name": "join-meeting-with-join-meeting-id-and-passcode",
+ "@odata.type": "microsoft.graph.call"
+}-->
+
+```http
+HTTP/1.1 201 Created
+Location: https://graph.microsoft.com/v1.0/communications/calls/2f1a1100-b174-40a0-aba7-0b405e01ed92
+Content-Type: application/json
+
+{
+ "@odata.type": "#microsoft.graph.call",
+ "state": "establishing",
+ "direction": "outgoing",
+ "callbackUri": "https://bot.contoso.com/callback",
+ "callChainId": "d8217646-3110-40b1-bae6-e9ac6c3a9f74",
+ "callRoutes": [],
+ "source": {
+ "@odata.type": "#microsoft.graph.participantInfo",
+ "identity": {
+ "@odata.type": "#microsoft.graph.identitySet",
+ "application": {
+ "@odata.type": "#microsoft.graph.identity",
+ "displayName": "Calling Bot",
+ "id": "2891555a-92ff-42e6-80fa-6e1300c6b5c6"
+ }
+ },
+ "region": null,
+ "languageId": null
+ },
+ "targets": [],
+ "requestedModalities": [
+ "audio"
+ ],
+ "activeModalities": [],
+ "mediaConfig": {
+ "@odata.type": "#microsoft.graph.serviceHostedMediaConfig",
+ "preFetchMedia": [
+ {
+ "uri": "https://cdn.contoso.com/beep.wav",
+ "resourceId": "f8971b04-b53e-418c-9222-c82ce681a582"
+ },
+ {
+ "uri": "https://cdn.contoso.com/cool.wav",
+ "resourceId": "86dc814b-c172-4428-9112-60f8ecae1edb"
+ }
+ ],
+ },
+ "chatInfo": {
+ "@odata.type": "#microsoft.graph.chatInfo",
+ "threadId": "19:meeting_Win6Ydo4wsMijFjZS00ZGVjLTk5MGUtOTRjNNkYTFm@thread.v2",
+ "messageId": "0",
+ "replyChainMessageId": null
+ },
+ "meetingInfo": {
+ "@odata.type": "#microsoft.graph.joinMeetingIdMeetingInfo",
+ "joinMeetingId": "1234567",
+ "passcode": "psw123"
+ },
+ "transcription": null,
+ "routingPolicies": [],
+ "tenantId": "86dc81db-c112-4228-9222-63f3esaa1edb",
+ "myParticipantId": "05491616-385f-44a8-9974-18cc5f9933c1",
+ "id": "2f1a1100-b174-40a0-aba7-0b405e01ed92",
+ "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#app/calls/$entity",
+ "terminationReason": null,
+ "ringingTimeoutInSeconds": null,
+ "mediaState": null,
+ "subject": null,
+ "resultInfo": null,
+ "answeredBy": null,
+ "meetingCapability": null,
+ "toneInfo": null
+}
+```
+
+### Example 8: Join a scheduled meeting with joinMeetingId
+
+The following shows an example that requires a **joinMeetingId** but doesn't require a **passcode** to join an existing meeting. You can retrieve the **joinMeetingId** property from the [Get onlineMeeting](../api/onlinemeeting-get.md) API.
+
+#### Request
+
+The following is an example of a request.
++
+# [HTTP](#tab/http)
+<!-- {
+ "blockType": "request",
+ "name": "join-meeting-with-join-meeting-id-and-without-passcode",
+ "@odata.type": "microsoft.graph.call"
+}-->
+
+```http
+POST https://graph.microsoft.com/v1.0/communications/calls
+Content-Type: application/json
+
+{
+ "@odata.type": "#microsoft.graph.call",
+ "callbackUri": "https://bot.contoso.com/callback",
+ "requestedModalities": [
+ "audio"
+ ],
+ "mediaConfig": {
+ "@odata.type": "#microsoft.graph.serviceHostedMediaConfig",
+ "preFetchMedia": [
+ {
+ "uri": "https://cdn.contoso.com/beep.wav",
+ "resourceId": "f8971b04-b53e-418c-9222-c82ce681a582"
+ },
+ {
+ "uri": "https://cdn.contoso.com/cool.wav",
+ "resourceId": "86dc814b-c172-4428-9112-60f8ecae1edb"
+ }
+ ]
+ },
+ "meetingInfo": {
+ "@odata.type": "#microsoft.graph.joinMeetingIdMeetingInfo",
+ "joinMeetingId": "1234567",
+ "passcode": null
+ },
+ "tenantId": "86dc81db-c112-4228-9222-63f3esaa1edb"
+}
+```
+
+# [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",
+ "name": "join-meeting-with-join-meeting-id-and-without-passcode",
+ "@odata.type": "microsoft.graph.call"
+}-->
+
+```http
+HTTP/1.1 201 Created
+Location: https://graph.microsoft.com/v1.0/communications/calls/2f1a1100-b174-40a0-aba7-0b405e01ed92
+Content-Type: application/json
+
+{
+ "@odata.type": "#microsoft.graph.call",
+ "state": "establishing",
+ "direction": "outgoing",
+ "callbackUri": "https://bot.contoso.com/callback",
+ "callChainId": "d8217646-3110-40b1-bae6-e9ac6c3a9f74",
+ "callRoutes": [],
+ "source": {
+ "@odata.type": "#microsoft.graph.participantInfo",
+ "identity": {
+ "@odata.type": "#microsoft.graph.identitySet",
+ "application": {
+ "@odata.type": "#microsoft.graph.identity",
+ "displayName": "Calling Bot",
+ "id": "2891555a-92ff-42e6-80fa-6e1300c6b5c6"
+ }
+ },
+ "region": null,
+ "languageId": null
+ },
+ "targets": [],
+ "requestedModalities": [
+ "audio"
+ ],
+ "activeModalities": [],
+ "mediaConfig": {
+ "@odata.type": "#microsoft.graph.serviceHostedMediaConfig",
+ "preFetchMedia": [
+ {
+ "uri": "https://cdn.contoso.com/beep.wav",
+ "resourceId": "f8971b04-b53e-418c-9222-c82ce681a582"
+ },
+ {
+ "uri": "https://cdn.contoso.com/cool.wav",
+ "resourceId": "86dc814b-c172-4428-9112-60f8ecae1edb"
+ }
+ ],
+ },
+ "chatInfo": {
+ "@odata.type": "#microsoft.graph.chatInfo",
+ "threadId": "19:meeting_Win6Ydo4wsMijFjZS00ZGVjLTk5MGUtOTRjNNkYTFm@thread.v2",
+ "messageId": "0",
+ "replyChainMessageId": null
+ },
+ "meetingInfo": {
+ "@odata.type": "#microsoft.graph.joinMeetingIdMeetingInfo",
+ "joinMeetingId": "1234567",
+ "passcode": null
+ },
+ "transcription": null,
+ "routingPolicies": [],
+ "tenantId": "86dc81db-c112-4228-9222-63f3esaa1edb",
+ "myParticipantId": "05491616-385f-44a8-9974-18cc5f9933c1",
+ "id": "2f1a1100-b174-40a0-aba7-0b405e01ed92",
+ "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#app/calls/$entity",
+ "terminationReason": null,
+ "ringingTimeoutInSeconds": null,
+ "mediaState": null,
+ "subject": null,
+ "resultInfo": null,
+ "answeredBy": null,
+ "meetingCapability": null,
+ "toneInfo": null
+}
+```
+
+### Example 9: Create peer-to-peer PSTN call with service hosted media
+
+> **Note:** This call requires the Calls.Initiate.All permission.
+
+This call requires an application instance with a PSTN number assigned. For details, see [Assign a phone number to your bot](/graph/cloud-communications-phone-number#assign-a-phone-number-to-your-bot).
+
+#### Request
+The following example shows the request to make a peer-to-peer call between the bot and a PSTN number. In this example, the media is hosted by the service. The values of authorization token, callback URL, application instance ID, application instance display name, phone ID and tenant ID must be replaced with actual values to make the example work.
+> **Note:** Application instance ID is the object ID of application instance. The application ID that application instance links to should match the one in authorization token. Phone ID is the phone number in E.164 format.
++
+# [HTTP](#tab/http)
+<!-- {
"blockType": "request", "name": "create-call-service-hosted-media-2", "@odata.type": "microsoft.graph.call"
Content-Type: application/json
<!-- { "blockType": "response", "truncated": true,
+ "name": "create-call-service-hosted-media-2",
"@odata.type": "microsoft.graph.call"
-} -->
+}-->
```http HTTP/1.1 201 Created Location: https://graph.microsoft.com/v1.0/communications/calls/2e1a0b00-2db4-4022-9570-243709c565ab
Content-Type: application/json
} ```
-### Example 8: Create peer-to-peer PSTN call with application hosted media
+### Example 10: Create peer-to-peer PSTN call with application hosted media
> **Note**: This example requires Calls.Initiate.All and Calls.AccessMedia.All permissions.
Content-Type: application/json
#### Response
-> **Note:** The response object shown here might be shortened for readability.
+> **Note:** The response object shown here might be shortened for readability.
<!-- { "blockType": "response", "truncated": true,
+ "name": "create-call-service-hosted-media-3",
"@odata.type": "microsoft.graph.call"
-} -->
+}-->
```http HTTP/1.1 201 Created Location: https://graph.microsoft.com/v1.0/communications/calls/2e1a0b00-2db4-4022-9570-243709c565ab
v1.0 Application Post Onlinemeetings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/application-post-onlinemeetings.md
POST /users/{userId}/onlineMeetings
``` > [!NOTE]
-> `userId` is the object ID of a user in [Azure user management portal](https://portal.azure.com/#blade/Microsoft_AAD_IAM/UsersManagementMenuBlade). See more details in [application access policy](/graph/cloud-communication-online-meeting-application-access-policy).
+>- `userId` is the object ID of a user in [Azure user management portal](https://portal.azure.com/#blade/Microsoft_AAD_IAM/UsersManagementMenuBlade). For more details, see [Allow applications to access online meetings on behalf of a user](/graph/cloud-communication-online-meeting-application-access-policy).
## Request headers | Name | Description |
The following example creates an online meeting with a user token.
#### Request
+The following is an example of a request.
+ # [HTTP](#tab/http) <!-- { "blockType": "request",
Content-Type: application/json
#### Response
+The following is an example of the response.
+ > **Note:** The response object shown here might be shortened for readability. <!-- {
Content-Type: application/json
{ "@odata.type": "#microsoft.graph.onlineMeeting",
- "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#users('f4053f86-17cc-42e7-85f4-f0389ac980d6')/onlineMeetings/$entity",
+ "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#users('f4053e7-85f4-f0389ac980d6')/onlineMeetings/$entity",
"audioConferencing": {
- "tollNumber": "+12525634478",
- "tollFreeNumber": "+18666390588",
- "ConferenceId": "2425999",
- "dialinUrl": "https://dialin.teams.microsoft.com/22f12fa0-499f-435b-bc69-b8de580ba330?id=2425999"
+ "tollNumber": "+1252578",
+ "tollFreeNumber": "+18588",
+ "ConferenceId": "24999",
+ "dialinUrl": "https://dialin.teams.microsoft.com/22f12faf--bc69-b8de580ba330?id=24299"
}, "chatInfo": {
- "threadId": "19:meeting_M2IzYzczNTItYmY3OC00MDlmLWJjMzUtYmFiMjNlOTY4MGEz@thread.skype",
+ "threadId": "19:meeting_M2IzYzczNTItYzUtYmFiMjNlOTY4MGEz@thread.skype",
"messageId": "0", "replyChainMessageId": "0" }, "creationDateTime": "2019-07-11T02:17:17.6491364Z", "startDateTime": "2019-07-11T02:17:17.6491364Z", "endDateTime": "2019-07-11T02:47:17.651138Z",
- "id": "MSpkYzE3Njc0Yy04MWQ5LTRhZGItYmZiMi04ZdFpHRTNaR1F6WGhyZWFkLnYy",
- "joinWebUrl": "https://teams.microsoft.com/l/meetup-join/19%3ameeting_M2IzYzczNTItYmY3OC00MDlmLWJjMzUtYmFiMjNlOTY4MGEz%40thread.skype/0?context=%7b%22Tid%22%3a%2272f988bf-86f1-41af-91ab-2d7cd011db47%22%2c%22Oid%22%3a%22550fae72-d251-43ec-868c-373732c2704f%22%7d",
+ "id": "MSpkYzE3NjctYmZiMi04ZdFpHRTNaR1F6WGhyZWFkLnYy",
+ "joinWebUrl": "https://teams.microsoft.com/l/meetup-join/19%3ameeting_M2IzYzczNTItYmY3OC00MDlmLWJjMzUtYmFiMjNlOTY4MGEz%40thread.skype/0?context=%7b%22Tid%22%3a%2272f988bf-87cd011db47%22%2c%22Oid%22%3a%22550fae72-d251-43ec-868c-373732c2704f%22%7d",
"participants": { "organizer": { "identity": { "user": {
- "id": "550fae72-d251-43ec-868c-373732c2704f",
+ "id": "550fae72-d25-868c-373732c2704f",
"displayName": "Heidi Steen" } }, "upn": "upn-value" } },
- "subject": "User Token Meeting"
+ "subject": "User Token Meeting",
+ "joinMeetingIdSettings": {
+ "isPasscodeRequired": false,
+ "joinMeetingId": "1234567890",
+ "passcode": null
+ }
} ``` > [!NOTE]
Content-Type: application/json
}--> #### Request
+The following is an example of a request.
+ ```http POST https://graph.microsoft.com/v1.0/me/onlineMeetings Content-Type: application/json
Content-Type: application/json
#### Response
+The following is an example of the response.
+ > **Note:** The response object shown here has been shortened for readability. <!-- {
Content-Type: application/json
"role": "producer", "identity": { "user": {
- "id": "dc17674c-81d9-4adb-bfb2-8f6a442e4622",
+ "id": "dc17674c-81d9-4ada442e4622",
"displayName": null,
- "tenantId": "909c6581-5130-43e9-88f3-fcb3582cde38",
+ "tenantId": "909c6581-5130cb3582cde38",
"identityProvider": "AAD" } }
Content-Type: application/json
"role": "producer", "identity": { "user": {
- "id": "dc17674c-81d9-4adb-bfb2-8f6a442e4622",
+ "id": "dc17674c-81d9--8f6a442e4622",
"displayName": null,
- "tenantId": "909c6581-5130-43e9-88f3-fcb3582cde38",
+ "tenantId": "909c6581-51f3-fcb3582cde38",
"identityProvider": "AAD" } }
Content-Type: application/json
"role": "producer", "identity": { "user": {
- "id": "dc17674c-81d9-4adb-bfb2-8f6a442e4622",
+ "id": "dc17674c-81d9-4adf6a442e4622",
"displayName": null,
- "tenantId": "909c6581-5130-43e9-88f3-fcb3582cde38",
+ "tenantId": "909c6581-5f3-fcb3582cde38",
"identityProvider": "AAD" } }
Content-Type: application/json
"scope": "organization", "isDialInBypassEnabled": false },
+ "joinMeetingIdSettings": {
+ "isPasscodeRequired": false,
+ "joinMeetingId": "1234567890",
+ "passcode": null
+ },
"isBroadcast": true, "broadcastSettings": { "allowedAudience": "organization",
Content-Type: application/json
} ```
+### 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/v1.0/me/onlineMeetings
+Content-Type: application/json
+
+{
+ "startDateTime":"2019-07-12T14:30:34.2444915-07:00",
+ "endDateTime":"2019-07-12T15:00:34.2464912-07:00",
+ "subject":"User meeting",
+ "joinMeetingIdSettings": {
+ "isPasscodeRequired": true
+ }
+}
+```
+
+# [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.onlineMeeting"
+} -->
+
+```http
+HTTP/1.1 201 Created
+Content-Type: application/json
+
+{
+ "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#users('f4086-17cc-42e7-85f4-f03880d6')/onlineMeetings/$entity",
+ "audioConferencing": {
+ "tollNumber": "+12525478",
+ "tollFreeNumber": "+18690588",
+ "ConferenceId": "2999",
+ "dialinUrl": "https://dialin.teams.microsoft.com/22fa0-499f-435b-bc69-b8dea330?id=2999"
+ },
+ "chatInfo": {
+ "threadId": "19%3A3b523985568b776357c1dd79%40thread.skype",
+ "messageId": "15629053",
+ "replyChainMessageId": null
+ },
+ "creationDateTime": "2019-07-11T02:17:17.6491364Z",
+ "startDateTime": "2019-07-11T02:17:17.6491364Z",
+ "endDateTime": "2019-07-11T02:47:17.651138Z",
+ "id": "MSpkYzE3Njc0Yy04MWQ5LTRhFpHRTNaR1F6WGhyZWFkLnYy",
+ "joinWebUrl": "https://teams.microsoft.com/l/meetup-join/19%3ameeting_M2IzYzczNTItYmY3iMjNlOTY4MGEz%40thread.skype/0?context=%7b%22Tid%22%3a%22f8bf-86f1-41af-91ab-2011db47%22%2c%22Oid%22%3a%20fae72-d251-43ec-86c-377304f%22%7d",
+ "participants": {
+ "organizer": {
+ "identity": {
+ "user": {
+ "id": "5e72-d251-43ec-868c-3732704f",
+ "tenantId": "72fbf-86f1-41af-91ab-2d71db47",
+ "displayName": "Mario Rogers"
+ }
+ },
+ "role": "presenter",
+ "upn": "upn-value"
+ }
+ },
+ "subject": "User meeting",
+ "joinMeetingIdSettings": {
+ "isPasscodeRequired": true,
+ "joinMeetingId": "1234567890",
+ "passcode": "123abc"
+ }
+}
+```
+
+### 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/v1.0/me/onlineMeetings
+Content-Type: application/json
+
+{
+ "startDateTime":"2019-07-12T14:30:34.2444915-07:00",
+ "endDateTime":"2019-07-12T15:00:34.2464912-07:00",
+ "subject":"User meeting in Microsoft Teams channel.",
+ "joinMeetingIdSettings": {
+ "isPasscodeRequired": false
+ }
+}
+```
+
+# [C#](#tab/csharp)
+
+# [JavaScript](#tab/javascript)
+
+# [Java](#tab/java)
+
+# [Go](#tab/go)
+
+# [PowerShell](#tab/powershell)
+
+# [PHP](#tab/php)
++++
+OR
+
+```http
+POST https://graph.microsoft.com/v1.0/me/onlineMeetings
+Content-Type: application/json
+
+{
+ "startDateTime":"2019-07-12T14:30:34.2444915-07:00",
+ "endDateTime":"2019-07-12T15:00:34.2464912-07:00",
+ "subject":"User meeting in Microsoft Teams channel."
+}
+```
+
+#### 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.onlineMeeting"
+} -->
+
+```http
+HTTP/1.1 201 Created
+Content-Type: application/json
+
+{
+ "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#users('f4053f86-17cc-85f4-f0389ac980d6')/onlineMeetings/$entity",
+ "audioConferencing": {
+ "tollNumber": "+12525478",
+ "tollFreeNumber": "+186390588",
+ "ConferenceId": "24999",
+ "dialinUrl": "https://dialin.teams.microsoft.com/22f12fa0-45b-bc69-b8de580ba330?id=2425999"
+ },
+ "chatInfo": {
+ "threadId": "19%3A3b52398f3c524556894b776357c1dd79%40thread.skype",
+ "messageId": "1563302249053",
+ "replyChainMessageId": null
+ },
+ "creationDateTime": "2019-07-11T02:17:17.6491364Z",
+ "startDateTime": "2019-07-11T02:17:17.6491364Z",
+ "endDateTime": "2019-07-11T02:47:17.651138Z",
+ "id": "MSpkYzE3Njc0Yy04MWQ5LTRhZGItYmZiMi04ZdFpHRTNaR1F6WGhyZWFkLnYy",
+ "joinWebUrl": "https://teams.microsoft.com/l/meetup-join/19%3ameeting_M2IzYzczNTItYmY3OC00MDlmLWJjMzUtYmFiMjNlOTY4MGEz%40thread.skype/0?context=%7b%22Tid%22%3a%2272f988bf-86f1-1ab-2d7cd011db47%22%2c%22Oid%22%3a%22550fae72-d251-c-373732c2704f%22%7d",
+ "participants": {
+ "organizer": {
+ "identity": {
+ "user": {
+ "id": "550fae72-d251-43ecc-373732c2704f",
+ "tenantId": "72f98841af-91ab-2d7cd011db47",
+ "displayName": "Tyler Stein"
+ }
+ },
+ "role": "presenter",
+ "upn": "upn-value"
+ }
+ },
+ "subject": "User meeting in Microsoft Teams channel.",
+ "joinMeetingIdSettings": {
+ "isPasscodeRequired": false,
+ "joinMeetingId": "1234567890",
+ "passcode": null
+ }
+}
+```
+ <!-- uuid: 8fcb5dbc-d5aa-4681-8e31-b001d5168d79 2015-10-25 14:57:30 UTC --> <!--
v1.0 Authentication List Methods https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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"
doc_type: "apiPageType"
Namespace: microsoft.graph
-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 Certificatebasedauthconfiguration Post Certificatebasedauthconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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/v1.0/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/v1.0/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/v1.0/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.
## Request headers
v1.0 Channel Post Messages https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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/v1.0/api/channel-post.md
doc_type: apiPageType
Namespace: microsoft.graph
-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.
+
+If you're creating a private channel, you can add a maximum of 200 members.
+
+> [!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
Content-type: application/json
[!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 Chatmessage Post https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/chatmessage-post.md
Content-type: application/json
} ```
+### Example 9: Send message that contains cards that are attributed to a Teams app
+
+#### Request
+
+The following is an example of the request.
+
+> **Note:** When specifying a Teams app to attribute a card to, the Azure AD app ID used to make the call must match the Azure AD app ID of the Teams app. The Azure AD app ID of the Teams app can be specified in the *webApplicationInfo* section of the app's manifest. Refer to the following documentation on the current [Teams app manifest schema](/microsoftteams/platform/resources/schema/manifest-schema).
+>
+> Furthermore, the app specified in the payload must be installed either for the user sending the message or in the chat or channel in which the message is being sent.
+<!-- {
+ "blockType": "request",
+ "name": "post_chatmessage_9"
+}-->
+
+```http
+POST https://graph.microsoft.com/v1.0/teams/fbe2bf47-16c8-47cf-b4a5-4b9b187c508b/channels/19:4a95f7d8db4c4e7fae857bcebe0623e6@thread.tacv2/messages
+Content-type: application/json
+
+{
+ "subject": null,
+ "body": {
+ "contentType": "html",
+ "content": "<attachment id=\"74d20c7f34aa4a7fb74e2b30004247c5\"></attachment>"
+ },
+ "attachments": [
+ {
+ "id": "74d20c7f34aa4a7fb74e2b30004247c5",
+ "contentType": "application/vnd.microsoft.card.thumbnail",
+ "contentUrl": null,
+ "content": "{\r\n \"title\": \"This is an example of posting a card\",\r\n \"subtitle\": \"<h3>This is the subtitle</h3>\",\r\n \"text\": \"Here is some body text. <br>\\r\\nAnd a <a href=\\\"http://microsoft.com/\\\">hyperlink</a>. <br>\\r\\nAnd below that is some buttons:\",\r\n \"buttons\": [\r\n {\r\n \"type\": \"messageBack\",\r\n \"title\": \"Login to FakeBot\",\r\n \"text\": \"login\",\r\n \"displayText\": \"login\",\r\n \"value\": \"login\"\r\n }\r\n ]\r\n}",
+ "name": null,
+ "thumbnailUrl": null,
+ "teamsAppId": "881b8843-fd91-49e5-9ac2-47ec497ffbe5"
+ }
+ ]
+}
+```
+
+#### Response
+
+The following is an example of the response.
+<!-- {
+ "blockType": "response",
+ "truncated": true,
+ "@odata.type": "microsoft.graph.chatMessage"
+} -->
+
+```http
+HTTP/1.1 201 Created
+Content-type: application/json
+
+{
+ "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#teams('fbe2bf47-16c8-47cf-b4a5-4b9b187c508b')/channels('19%3A4a95f7d8db4c4e7fae857bcebe0623e6%40thread.tacv2')/messages/$entity",
+ "id": "1616991851162",
+ "replyToId": null,
+ "etag": "1616991851162",
+ "messageType": "message",
+ "createdDateTime": "2021-03-29T04:24:11.162Z",
+ "lastModifiedDateTime": "2021-03-29T04:24:11.162Z",
+ "lastEditedDateTime": null,
+ "deletedDateTime": null,
+ "subject": null,
+ "summary": null,
+ "chatId": null,
+ "importance": "normal",
+ "locale": "en-us",
+ "webUrl": "https://teams.microsoft.com/l/message/19%3A4a95f7d8db4c4e7fae857bcebe0623e6%40thread.tacv2/1616991851162?groupId=fbe2bf47-16c8-47cf-b4a5-4b9b187c508b&tenantId=2432b57b-0abd-43db-aa7b-16eadd115d34&createdTime=1616991851162&parentMessageId=1616991851162",
+ "policyViolation": null,
+ "eventDetail": null,
+ "from": {
+ "application": null,
+ "device": null,
+ "user": {
+ "id": "8ea0e38b-efb3-4757-924a-5f94061cf8c2",
+ "displayName": "Robin Kline",
+ "userIdentityType": "aadUser"
+ }
+ },
+ "body": {
+ "contentType": "html",
+ "content": "<attachment id=\"74d20c7f34aa4a7fb74e2b30004247c5\"></attachment>"
+ },
+ "channelIdentity": {
+ "teamId": "fbe2bf47-16c8-47cf-b4a5-4b9b187c508b",
+ "channelId": "19:4a95f7d8db4c4e7fae857bcebe0623e6@thread.tacv2"
+ },
+ "attachments": [
+ {
+ "id": "74d20c7f34aa4a7fb74e2b30004247c5",
+ "contentType": "application/vnd.microsoft.card.thumbnail",
+ "contentUrl": null,
+ "content": "{ \"title\": \"This is an example of posting a card\", \"subtitle\": \"<h3>This is the subtitle</h3>\", \"text\": \"Here is some body text. <br>\\\\And a <a href=\\\"http://microsoft.com/\\\">hyperlink</a>. <br>\\\\And below that is some buttons:\", \"buttons\": [ { \"type\": \"messageBack\", \"title\": \"Login to FakeBot\", \"text\": \"login\", \"displayText\": \"login\", \"value\": \"login\" } ]}",
+ "name": null,
+ "thumbnailUrl": null,
+ "teamsAppId": "881b8843-fd91-49e5-9ac2-47ec497ffbe5"
+ }
+ ],
+ "onBehalfOf": null,
+ "mentions": [],
+ "reactions": []
+}
+```
+ ## See also - [Cards reference](/microsoftteams/platform/concepts/cards/cards-reference)
v1.0 Chatmessage Softdelete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/chatmessage-softdelete.md
+
+ Title: "chatMessage: softDelete"
+description: "Delete a single message or message reply in a channel or a chat."
+
+ms.localizationpriority: medium
++
+# chatMessage: softDelete
+
+Namespace: microsoft.graph
+
+Delete a single [message](../resources/chatmessage.md) or a [message reply](../resources/chatmessage.md) in a [channel](../resources/channel.md) or a [chat](../resources/chat.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).
+
+### Permissions for channel
+
+| Permission type | Permissions (from least to most privileged) |
+|:|:--|
+|Delegated (work or school account)| ChannelMessage.ReadWrite |
+|Delegated (personal Microsoft account)| Not supported. |
+|Application| Not supported. |
+
+### Permissions for chat
+
+| Permission type | Permissions (from least to most privileged) |
+|:|:--|
+|Delegated (work or school account)| Chat.ReadWrite |
+|Delegated (personal Microsoft account)| Not supported. |
+|Application| Not supported. |
+
+## HTTP request
+
+<!-- {
+ "blockType": "ignored"
+}
+-->
+``` http
+POST /users/{userId}/chats/{chatsId}/messages/{chatMessageId}/softDelete
+POST /teams/{teamsId}/channels/{channelId}/messages/{chatMessageId}/softDelete
+POST /teams/{teamId}/channels/{channelId}/messages/{messageId}/replies/{replyId}/softDelete
+```
+
+## Request headers
+
+|Name|Description|
+|:|:|
+|Authorization|Bearer {token}. Required.|
+
+## Request body
+
+Do not supply a request body for this method.
+
+## Response
+
+If successful, this action returns a `204 No Content` response code.
+
+## Examples
+
+### Example 1: Soft-delete message in a chat
+
+#### Request
+
+# [HTTP](#tab/http)
+<!-- {
+ "blockType": "request",
+ "name": "chatmessagethis-softdelete1"
+}
+-->
+``` http
+POST https://graph.microsoft.com/v1.0/users/8f98f01d-1a73-401a-b9e9-9fd1e6f5e5ar/chats/19:22273db3497f4b32bue61f6e82be21c5@thread.tacv2/messages/1649864053377/softDelete
+```
+
+# [C#](#tab/csharp)
+
+# [JavaScript](#tab/javascript)
+
+# [Java](#tab/java)
+
+# [Go](#tab/go)
+
+# [PowerShell](#tab/powershell)
+
+# [PHP](#tab/php)
++++
+#### Response
+
+<!-- {
+ "blockType": "response"
+} -->
+
+``` http
+HTTP/1.1 204 No Content
+```
+
+### Example 2: Soft-delete message in a channel
+
+#### Request
++
+# [HTTP](#tab/http)
+<!-- {
+ "blockType": "request",
+ "name": "chatmessagethis-softdelete2"
+}
+-->
+``` http
+POST https://graph.microsoft.com/v1.0/teams/172b0cce-e65d-44ce-9a49-91d9f2e8593a/channels/19:22273db3497f4b32bue61f6e82be21c5@thread.tacv2/messages/1649864053377/softDelete
+```
+
+# [C#](#tab/csharp)
+
+# [JavaScript](#tab/javascript)
+
+# [Java](#tab/java)
+
+# [Go](#tab/go)
+
+# [PowerShell](#tab/powershell)
+
+# [PHP](#tab/php)
++++
+#### Response
+
+<!-- {
+ "blockType": "response"
+} -->
+
+``` http
+HTTP/1.1 204 No Content
+```
+
+### Example 3: Soft-delete message of a reply
+
+#### Request
++
+# [HTTP](#tab/http)
+<!-- {
+ "blockType": "request",
+ "name": "chatmessagethis-softdelete3"
+}
+-->
+``` http
+POST https://graph.microsoft.com/v1.0/teams/172b0cce-e65d-44ce-9a49-91d9f2e8593a/channels/19:22273db3497f4b32bue61f6e82be21c5@thread.tacv2/messages/1649864053377/replies/1649852161658/softDelete
+```
+
+# [C#](#tab/csharp)
+
+# [JavaScript](#tab/javascript)
+
+# [Java](#tab/java)
+
+# [Go](#tab/go)
+
+# [PowerShell](#tab/powershell)
+
+# [PHP](#tab/php)
++++
+#### Response
+
+<!-- {
+ "blockType": "response"
+} -->
+
+``` http
+HTTP/1.1 204 No Content
+```
v1.0 Chatmessage Undosoftdelete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/chatmessage-undosoftdelete.md
+
+ Title: "chatMessage: undoSoftDelete"
+description: "Undelete a single message or a message reply in a channel or a chat."
+
+ms.localizationpriority: medium
++
+# chatMessage: undoSoftDelete
+
+Namespace: microsoft.graph
+
+Undo soft deletion of a single [message](../resources/chatmessage.md) or a [message reply](../resources/chatmessage.md) in a [channel](../resources/channel.md) or a [chat](../resources/chat.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).
+
+### Permissions for channel
+
+| Permission type | Permissions (from least to most privileged) |
+|:|:--|
+|Delegated (work or school account)| ChannelMessage.ReadWrite |
+|Delegated (personal Microsoft account)| Not supported |
+|Application| Not supported |
+
+> **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.
+### Permissions for chat
+
+| Permission type | Permissions (from least to most privileged) |
+|:|:--|
+|Delegated (work or school account)| Chat.ReadWrite |
+|Delegated (personal Microsoft account)| Not supported |
+|Application| Not supported |
+
+## HTTP request
+
+<!-- {
+ "blockType": "ignored"
+}
+-->
+``` http
+POST /users/{userId}/chats/{chatsId}/messages/{chatMessageId}/undoSoftDelete
+POST /teams/{teamsId}/channels/{channelId}/messages/{chatMessageId}/undoSoftDelete
+POST /teams/{teamId}/channels/{channelId}/messages/{messageId}/replies/{replyId}/undoSoftDelete
+```
+
+## Request headers
+
+|Name|Description|
+|:|:|
+|Authorization|Bearer {token}. Required.|
+
+## Request body
+
+Do not supply a request body for this method.
+
+## Response
+
+If successful, this action returns a `204 No Content` response code.
+
+## Examples
+
+### Example 1: Undo soft deletion of a message in a chat
+
+#### Request
+
+# [HTTP](#tab/http)
+<!-- {
+ "blockType": "request",
+ "name": "chatmessagethis-undosoftdelete1"
+}
+-->
+``` http
+POST https://graph.microsoft.com/v1.0/users/8f98f01d-1a73-401a-b9e9-9fd1e6f5e5ap/chats/19:22273db3497f4b32bue61f6e82be21c5@thread.tacv2/messages/1649864053377/undoSoftDelete
+```
+
+# [C#](#tab/csharp)
+
+# [JavaScript](#tab/javascript)
+
+# [Java](#tab/java)
+
+# [Go](#tab/go)
+
+# [PowerShell](#tab/powershell)
+
+# [PHP](#tab/php)
++++
+#### Response
+
+<!-- {
+ "blockType": "response"
+} -->
+
+``` http
+HTTP/1.1 204 No Content
+```
+
+### Example 2: Undo soft deletion of a message in a channel
+
+#### Request
+
+# [HTTP](#tab/http)
+<!-- {
+ "blockType": "request",
+ "name": "chatmessagethis2undosoftdelete2"
+}
+-->
+``` http
+POST https://graph.microsoft.com/v1.0/teams/172b0cce-e65d-44ce-9a49-91d9f2e8593a/channels/19:22273db3497f4b32bue61f6e82be21c5@thread.tacv2/messages/1649864053377/undoSoftDelete
+```
+
+# [C#](#tab/csharp)
+
+# [JavaScript](#tab/javascript)
+
+# [Java](#tab/java)
+
+# [Go](#tab/go)
+
+# [PowerShell](#tab/powershell)
+
+# [PHP](#tab/php)
++++
+#### Response
+
+<!-- {
+ "blockType": "response"
+} -->
+
+``` http
+HTTP/1.1 204 No Content
+```
+
+### Example 3: Undo soft deletion of a message of a reply in a channel
+
+#### Request
+
+# [HTTP](#tab/http)
+<!-- {
+ "blockType": "request",
+ "name": "chatmessagethis-undosoftdelete3"
+}
+-->
+``` http
+POST https://graph.microsoft.com/v1.0/teams/172b0cce-e65d-44ce-9a49-91d9f2e8593a/channels/19:22273db3497f4b32bue61f6e82be21c5@thread.tacv2/messages/1649864053377/undoSoftDelete
+```
+
+# [C#](#tab/csharp)
+
+# [JavaScript](#tab/javascript)
+
+# [Java](#tab/java)
+
+# [Go](#tab/go)
+
+# [PowerShell](#tab/powershell)
+
+# [PHP](#tab/php)
++++
+#### Response
+
+<!-- {
+ "blockType": "response"
+} -->
+
+``` http
+HTTP/1.1 204 No Content
+```
v1.0 Chatmessage Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/chatmessage-update.md
Title: "Update chatMessage"
-description: "Update the policyViolation property of a chatMessage."
+description: "Update the properties of a chatMessage object."
doc_type: apiPageType ms.localizationpriority: medium
ms.prod: "microsoft-teams"
# Update chatMessage
-Update a [chatMessage](../resources/chatMessage.md) object. Only the **policyViolation** property of a **chatMessage** can be updated.
+Update a [chatMessage](../resources/chatMessage.md) object.
+With the exception of the **policyViolation** property, all properties of a **chatMessage** can be updated in delegated permissions scenarios.
+Only the **policyViolation** property of a **chatMessage** can be updated in application permissions scenarios.
The update only works for chats where members are Microsoft Teams users. If one of the participants is using Skype, the operation will fail.
This method does not support federation. Only the user in the tenant who sent th
## Permissions
+One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference).
+ ### Permissions for channel | Permission type | Permissions (from least to most privileged) | |:|:--|
If no `model` is specified, [evaluation mode](/graph/teams-licenses#evaluation-m
| Content-Type | application/json. Required. | ## Request body
+For applications that use delegated permissions:
+In the request body, supply a JSON representation of a [chatMessage](../resources/chatMessage.md) object,
+specifying the properties that need to be changed.
+For applications that use application permissions:
In the request body, supply a JSON representation of a [chatMessage](../resources/chatMessage.md) object, specifying only the **policyViolation** property.
-## Response
+## Response body
+For applications that use delegated permissions:
+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
+## Examples
-### Request
+### Example 1: Update policyViolation property using application permissions
-The following is an example of the request to update the **policyViolation** property on a Microsoft Teams channel message.
+#### Request
+
+The following is an example of the request to update the **policyViolation** property on a Microsoft Teams channel message by using application permissions.
# [HTTP](#tab/http)
Content-Type: application/json
-### Response
+#### Response
-Here is an example of the response.
+The following is an example of the response.
<!-- { "blockType": "response",
Here is an example of the response.
```http HTTP/1.1 200 OK+ ``` <!-- uuid: 8fcb5dbc-d5aa-4681-8e31-b001d5168d79
HTTP/1.1 200 OK
"section": "documentation", "tocPath": "" }-->+++
+### Example 2: Update any property of a message using delegated permissions
+
+#### Request
+
+The following is an example of the request to update the properties on a Microsoft Teams channel message by using delegated permissions.
++
+# [HTTP](#tab/http)
+<!-- {
+ "blockType": "request",
+ "name": "patch_chatMessage_1"
+}-->
+
+```http
+PATCH https://graph.microsoft.com/v1.0/teams/e1234567-e123-4276-55555-6232b0e3a89a/channels/a7654321-e321-0000-0000-123b0e3a00a/messages/19%3Aa21b0b0c05194ebc9e30000000000f61%40thread.skype
+Content-Type: application/json
+
+{
+ "messageType": "message",
+ "subject": null,
+ "summary": null,
+ "importance": "normal",
+ "locale": "en-us",
+ "from": {
+ "application": null,
+ "device": null,
+ "user": {
+ "id": "3b102402-813e-4e17-a6b2-f841aef1fdfc",
+ "displayName": "Lam Cong",
+ "userIdentityType": "aadUser"
+ },
+ "conversation": null
+ },
+ "body": {
+ "contentType": "text",
+ "content": "Edit text only"
+ },
+ "attachments": [],
+ "mentions": [],
+ "reactions": []
+}
+```
+
+# [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",
+} -->
+
+```http
+HTTP/1.1 204 No Content
+```
+
+### 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.
++
+# [HTTP](#tab/http)
+<!-- {
+ "blockType": "request",
+ "name": "patch_chatMessage_2"
+}-->
+
+```http
+PATCH https://graph.microsoft.com/v1.0/teams/e1234567-e123-4276-55555-6232b0e3a89a/channels/a7654321-e321-0000-0000-123b0e3a00a/messages/19%3Aa21b0b0c05194ebc9e30000000000f61%40thread.skype
+Content-Type: application/json
+
+{
+ "messageType": "message",
+ "deletedDateTime": null,
+ "subject": null,
+ "summary": null,
+ "importance": "normal",
+ "locale": "en-us",
+ "from": {
+ "application": null,
+ "device": null,
+ "conversation": null,
+ "user": {
+ "id": "6b3f3c54-d09c-4fdd-b146-9b514a8a4f40",
+ "displayName": "Lam Cong",
+ "userIdentityType": "aadUser"
+ }
+ },
+ "body": {
+ "contentType": "html",
+ "content": "<div><div>\n<div>\n<div>\n<div>\n<div><at id=\"0\">Raghav</at><at id=\"1\">TestGlobalBot</at> YEAH"
+ },
+ "attachments": [],
+ "mentions": [
+ {
+ "id": 0,
+ "mentionText": "Raghav",
+ "mentioned": {
+ "application": null,
+ "device": null,
+ "conversation": null,
+ "user": {
+ "id": "f1b66449-b46d-49b0-9c3c-53c10234c818e",
+ "displayName": "Lam Cong",
+ "userIdentityType": "aadUser"
+ }
+ }
+ },
+ {
+ "id": 1,
+ "mentionText": "TestGlobalBot",
+ "mentioned": {
+ "application": {
+ "id": "03a02232-d8f5-4970-a77e-6e8c76ce7a4e",
+ "displayName": "TestGlobalBot",
+ "applicationIdentityType": "bot"
+ },
+ "device": null,
+ "conversation": null,
+ "user": null
+ }
+ }
+ ],
+ "reactions": []
+}
+```
+
+# [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",
+} -->
+
+```http
+HTTP/1.1 204 No Content
+```
+
+### 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.
++
+# [HTTP](#tab/http)
+<!-- {
+ "blockType": "request",
+ "name": "patch_chatMessage_3"
+}-->
+
+```http
+PATCH https://graph.microsoft.com/v1.0/teams/e1234567-e123-4276-55555-6232b0e3a89a/channels/a7654321-e321-0000-0000-123b0e3a00a/messages/19%3Aa21b0b0c05194ebc9e30000000000f61%40thread.skype
+Content-Type: application/json
+
+{
+ "messageType": "message",
+ "subject": null,
+ "summary": null,
+ "importance": "normal",
+ "locale": "en-us",
+ "from": {
+ "application": null,
+ "device": null,
+ "user": {
+ "id": "3b102402-813e-4e17-a6b2-f841aef1fdfc",
+ "displayName": "Lam Cong",
+ "userIdentityType": "aadUser"
+ },
+ "conversation": null
+ },
+ "body": {
+ "contentType": "html",
+ "content": "<p><em>text</em></p><attachment id=\"e8f78756199240b88448ae0fc6db112d\"></attachment><attachment id=\"638464e32834471ea202007da60a5ae6\"></attachment>"
+ },
+ "attachments": [
+ {
+ "id": "e8f78756199240b88448ae0fc6db112d",
+ "contentType": "application/vnd.microsoft.card.hero",
+ "contentUrl": null,
+ "content": "{\r\n \"title\": \"*title*\",\r\n \"subtitle\": \"*subtitle*\",\r\n \"text\": \"Have you found yourself scratching your head trying to figure these questions out? Frustrated trying to access some of the goodies unique to the Microsoft Teams platform? Well, fear not, Bot Builder SDK Extension for Teams in .NET and Node flavors is here! Just head on over to Nuget or NPM to download our tasty helpers, sure to speed up your prep time so you can spend more time maximizing the flavor of the bots you're cooking up.Here’s a small sample of some recipes to whet your appetite.\",\r\n \"images\": [\r\n {\r\n \"url\": \"https://us-api.asm.skype.com/v1/objects/0-eus-d8-ced0c9567ee7b0b233b987bd32f9eacd/views/img_preview\"\r\n }\r\n ],\r\n \"buttons\": [\r\n {\r\n \"type\": \"openUrl\",\r\n \"image\": \"https://urlp.asm.skype.com/v1/url/content?url=https%3a%2f%2fcdn2.iconfinder.com%2fdata%2ficons%2fsocial-icons-33%2f128%2fTrello-128.png\",\r\n \"title\": \"😃😃 click me 😃😃\",\r\n \"value\": \"http://microsoft.com\"\r\n },\r\n {\r\n \"type\": \"imback\",\r\n \"title\": \"&i am back& <>= \\\"\",\r\n \"value\": \"&i am back& <>= \\\"\"\r\n },\r\n {\r\n \"type\": \"openUrl\",\r\n \"title\": \"Open URL\",\r\n \"value\": \"http://google.com\"\r\n }\r\n ]\r\n}",
+ "name": null,
+ "thumbnailUrl": null
+ },
+ {
+ "id": "638464e32834471ea202007da60a5ae6",
+ "contentType": "application/vnd.microsoft.card.hero",
+ "contentUrl": null,
+ "content": "{\r\n \"title\": \"*title*\",\r\n \"subtitle\": \"*subtitle*\",\r\n \"text\": \"Have you found yourself scratching your head trying to figure these questions out? Frustrated trying to access some of the goodies unique to the Microsoft Teams platform? Well, fear not, Bot Builder SDK Extension for Teams in .NET and Node flavors is here! Just head on over to Nuget or NPM to download our tasty helpers, sure to speed up your prep time so you can spend more time maximizing the flavor of the bots you're cooking up.HereΓÇÖs a small sample of some recipes to whet your appetite.\",\r\n \"images\": [\r\n {\r\n \"url\": \"https://us-api.asm.skype.com/v1/objects/0-eus-d8-ced0c9567ee7b0b233b987bd32f9eacd/views/img_preview\"\r\n }\r\n ],\r\n \"buttons\": [\r\n {\r\n \"type\": \"messageBack\",\r\n \"title\": \"&message back& <>= \\\"\",\r\n \"text\": \"text = &message back& <>= \\\"\",\r\n \"displayText\": \"displayText = &message back& <>= \\\"\",\r\n \"value\": {\r\n \"text\": \"some text 2\"\r\n }\r\n }\r\n ]\r\n}",
+ "name": null,
+ "thumbnailUrl": null
+ }
+ ],
+ "mentions": [],
+ "reactions": []
+}
+```
+
+# [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",
+} -->
+
+```http
+HTTP/1.1 204 No Content
+```
+
+### 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.
+++
+# [HTTP](#tab/http)
+<!-- {
+ "blockType": "request",
+ "name": "patch_chatMessage_4"
+}-->
+
+```http
+PATCH https://graph.microsoft.com/v1.0/teams/e1234567-e123-4276-55555-6232b0e3a89a/channels/a7654321-e321-0000-0000-123b0e3a00a/messages/19%3Aa21b0b0c05194ebc9e30000000000f61%40thread.skype
+Content-Type: application/json
+
+{
+ "messageType": "message",
+ "subject": null,
+ "summary": null,
+ "importance": "normal",
+ "locale": "en-us",
+ "from": {
+ "application": null,
+ "device": null,
+ "user": {
+ "id": "3b102402-813e-4e17-a6b2-f841aef1fdfc",
+ "displayName": "Lam Cong",
+ "userIdentityType": "aadUser"
+ },
+ "conversation": null
+ },
+ "body": {
+ "contentType": "html",
+ "content": "<p><em>text</em></p><attachment id=\"e8f78756199240b88448ae0fc6db112d\"></attachment><attachment id=\"638464e32834471ea202007da60a5ae6\"></attachment>"
+ },
+ "attachments": [
+ {
+ "id": "e8f78756199240b88448ae0fc6db112d",
+ "contentType": "application/vnd.microsoft.card.hero",
+ "contentUrl": null,
+ "content": "{\r\n \"title\": \"*title*\",\r\n \"subtitle\": \"*subtitle*\",\r\n \"text\": \"Have you found yourself scratching your head trying to figure these questions out? Frustrated trying to access some of the goodies unique to the Microsoft Teams platform? Well, fear not, Bot Builder SDK Extension for Teams in .NET and Node flavors is here! Just head on over to Nuget or NPM to download our tasty helpers, sure to speed up your prep time so you can spend more time maximizing the flavor of the bots you're cooking up.Here’s a small sample of some recipes to whet your appetite.\",\r\n \"images\": [\r\n {\r\n \"url\": \"https://us-api.asm.skype.com/v1/objects/0-eus-d8-ced0c9567ee7b0b233b987bd32f9eacd/views/img_preview\"\r\n }\r\n ],\r\n \"buttons\": [\r\n {\r\n \"type\": \"openUrl\",\r\n \"image\": \"https://urlp.asm.skype.com/v1/url/content?url=https%3a%2f%2fcdn2.iconfinder.com%2fdata%2ficons%2fsocial-icons-33%2f128%2fTrello-128.png\",\r\n \"title\": \"😃😃 click me 😃😃\",\r\n \"value\": \"http://microsoft.com\"\r\n },\r\n {\r\n \"type\": \"imback\",\r\n \"title\": \"&i am back& <>= \\\"\",\r\n \"value\": \"&i am back& <>= \\\"\"\r\n },\r\n {\r\n \"type\": \"openUrl\",\r\n \"title\": \"Open URL\",\r\n \"value\": \"http://google.com\"\r\n }\r\n ]\r\n}",
+ "name": null,
+ "thumbnailUrl": null
+ },
+ {
+ "id": "638464e32834471ea202007da60a5ae6",
+ "contentType": "application/vnd.microsoft.card.hero",
+ "contentUrl": null,
+ "content": "{\r\n \"title\": \"*title*\",\r\n \"subtitle\": \"*subtitle*\",\r\n \"text\": \"Have you found yourself scratching your head trying to figure these questions out? Frustrated trying to access some of the goodies unique to the Microsoft Teams platform? Well, fear not, Bot Builder SDK Extension for Teams in .NET and Node flavors is here! Just head on over to Nuget or NPM to download our tasty helpers, sure to speed up your prep time so you can spend more time maximizing the flavor of the bots you're cooking up.HereΓÇÖs a small sample of some recipes to whet your appetite.\",\r\n \"images\": [\r\n {\r\n \"url\": \"https://us-api.asm.skype.com/v1/objects/0-eus-d8-ced0c9567ee7b0b233b987bd32f9eacd/views/img_preview\"\r\n }\r\n ],\r\n \"buttons\": [\r\n {\r\n \"type\": \"messageBack\",\r\n \"title\": \"&message back& <>= \\\"\",\r\n \"text\": \"text = &message back& <>= \\\"\",\r\n \"displayText\": \"displayText = &message back& <>= \\\"\",\r\n \"value\": {\r\n \"text\": \"some text 2\"\r\n }\r\n }\r\n ]\r\n}",
+ "name": null,
+ "thumbnailUrl": null
+ }
+ ],
+ "mentions": [],
+ "reactions": [
+ {
+ "reactionType": "angry",
+ "createdDateTime": "2018-10-21T08:10:30.489Z",
+ "user": {
+ "application": null,
+ "device": null,
+ "user": {
+ "id": "f1b66449-b46d-49b0-9c3c-53c10a5c818e",
+ "displayName": null,
+ "userIdentityType": "aadUser"
+ }
+ }
+ },
+ {
+ "reactionType": "laugh",
+ "createdDateTime": "2018-10-21T08:10:32.489Z",
+ "user": {
+ "application": null,
+ "device": null,
+ "user": {
+ "id": "03a02232-d8f5-4970-a77e-6e8c76ce7a4e",
+ "displayName": null,
+ "userIdentityType": "aadUser"
+ }
+ }
+ },
+ {
+ "reactionType": "like",
+ "createdDateTime": "2018-10-21T02:17:14.67Z",
+ "user": {
+ "application": null,
+ "device": null,
+ "user": {
+ "id": "f1b66449-b46d-49b0-9c3c-53c10a5c818e",
+ "displayName": null,
+ "userIdentityType": "aadUser"
+ }
+ }
+ },
+ {
+ "reactionType": "like",
+ "createdDateTime": "2018-10-21T02:34:40.3Z",
+ "user": {
+ "application": null,
+ "device": null,
+ "user": {
+ "id": "4c9041b7-449a-40f7-8855-56da239b9fd1",
+ "displayName": null,
+ "userIdentityType": "aadUser"
+ }
+ }
+ },
+ {
+ "reactionType": "like",
+ "createdDateTime": "2018-10-21T08:10:25.489Z",
+ "user": {
+ "application": null,
+ "device": null,
+ "user": {
+ "id": "03a02232-d8f5-4970-a77e-6e8c76ce7a4e",
+ "displayName": null,
+ "userIdentityType": "aadUser"
+ }
+ }
+ },
+ {
+ "reactionType": "heart",
+ "createdDateTime": "2018-10-21T08:10:31.489Z",
+ "user": {
+ "application": null,
+ "device": null,
+ "user": {
+ "id": "03a02232-d8f5-4970-a77e-6e8c76ce7a4e",
+ "displayName": null,
+ "userIdentityType": "aadUser"
+ }
+ }
+ },
+ {
+ "reactionType": "sad",
+ "createdDateTime": "2018-10-21T08:10:33.489Z",
+ "user": {
+ "application": null,
+ "device": null,
+ "user": {
+ "id": "03a02232-d8f5-4970-a77e-6e8c76ce7a4e",
+ "displayName": null,
+ "userIdentityType": "aadUser"
+ }
+ }
+ },
+ {
+ "reactionType": "surprised",
+ "createdDateTime": "2018-10-21T08:10:34.489Z",
+ "user": {
+ "application": null,
+ "device": null,
+ "user": {
+ "id": "03a02232-d8f5-4970-a77e-6e8c76ce7a4e",
+ "displayName": null,
+ "userIdentityType": "aadUser"
+ }
+ }
+ }
+ ]
+}
+```
+
+# [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",
+} -->
+
+```http
+HTTP/1.1 204 No Content
+```
v1.0 Checklistitem Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/checklistitem-delete.md
One of the following permissions is required to call this API. To learn more, in
|:|:| |Delegated (work or school account)|Tasks.ReadWrite| |Delegated (personal Microsoft account)|Tasks.ReadWrite|
-|Application|Tasks.ReadWrite|
+|Application| Tasks.ReadWrite.All|
## HTTP request
v1.0 Checklistitem Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/checklistitem-get.md
One of the following permissions is required to call this API. To learn more, in
|:|:| |Delegated (work or school account)|Tasks.Read, Tasks.ReadWrite| |Delegated (personal Microsoft account)|Tasks.Read, Tasks.ReadWrite|
-|Application|Tasks.Read, Tasks.ReadWrite|
+|Application| Tasks.Read.All, Tasks.ReadWrite.All|
## HTTP request
v1.0 Checklistitem Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/checklistitem-update.md
One of the following permissions is required to call this API. To learn more, in
|:|:| |Delegated (work or school account)|Tasks.ReadWrite| |Delegated (personal Microsoft account)|Tasks.ReadWrite|
-|Application|Tasks.ReadWrite|
+|Application| Tasks.ReadWrite.All|
## HTTP request
v1.0 Device Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/device-update.md
HTTP/1.1 204 No Content
#### Request - # [HTTP](#tab/http) <!-- { "blockType": "request",
Content-type: application/json
- #### Response <!-- {
v1.0 Domain Post Federationconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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 Domain Promote https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/domain-promote.md
If successful, this call returns a `200 OK` response and a Boolean value that sp
### Request +
+# [HTTP](#tab/http)
<!-- { "blockType": "request", "name": "domain_promote"
If successful, this call returns a `200 OK` response and a Boolean value that sp
POST https://graph.microsoft.com/v1.0/domains/contoso.com/promote ```
+# [C#](#tab/csharp)
+
+# [JavaScript](#tab/javascript)
+
+# [Java](#tab/java)
+
+# [Go](#tab/go)
+
+# [PowerShell](#tab/powershell)
+
+# [PHP](#tab/php)
++++ ### Response <!-- {
Content-type: application/json
"@odata.context": "https://graph.microsoft.com/v1.0/$metadata#Edm.Boolean", "value": true }
-```
+```
v1.0 Educationassignment Delete Rubric https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/educationassignment-delete-rubric.md
doc_type: "apiPageType"
Namespace: microsoft.graph Remove 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/v1.0/api/educationassignment-get-rubric.md
doc_type: "apiPageType"
Namespace: microsoft.graph
-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/v1.0/api/educationassignment-get.md
doc_type: apiPageType
Namespace: microsoft.graph
-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/v1.0/api/educationassignment-list-categories.md
doc_type: apiPageType
Namespace: microsoft.graph
-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/v1.0/api/educationassignment-list-resources.md
doc_type: apiPageType
Namespace: microsoft.graph
-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/v1.0/api/educationassignment-list-submissions.md
doc_type: apiPageType
Namespace: microsoft.graph
-List all the submissions associated with an [assignment](../resources/educationassignment.md).
+List all the submissions 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 while 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/v1.0/api/educationassignment-post-categories.md
doc_type: "apiPageType"
Namespace: microsoft.graph
-Add one or more existing [educationCategory](../resources/educationcategory.md) objects to the specified [educationAssignment](../resources/educationassignment.md).
+Add one or more existing [educationCategory](../resources/educationcategory.md) objects to the specified [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 Post Resource https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/educationassignment-post-resource.md
doc_type: apiPageType
Namespace: microsoft.graph
-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
- [educationLinkResource](../resources/educationlinkresource.md) - [educationPowerPointResource](../resources/educationpowerpointresource.md) - [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.
In the request body, supply a JSON representation of one of the following resour
- [educationLinkResource](../resources/educationlinkresource.md) - [educationPowerPointResource](../resources/educationpowerpointresource.md) - [educationMediaResource](../resources/educationmediaresource.md)
+- [educationTeamsAppResource](../resources/educationteamsappresource.md)
>**Note:** You can't use this operation to create an [educationExternalResource](../resources/educationexternalresource.md).
Content-type: application/json
} ```
+### Example 7: Create an educationTeamsAppResource
+
+#### Request
+The following is an example of the request.
++
+# [HTTP](#tab/http)
+<!-- {
+ "blockType": "request",
+ "sampleKeys": ["2003c52e-807a-4186-9b49-60c573095461", "820371a1-4589-4a4a-8b40-9d5db94b9186"],
+ "name": "create_educationTeamsAppResource_from_educationassignmentsApp"
+}-->
+```http
+POST https://graph.microsoft.com/v1.0/education/classes/2003c52e-807a-4186-9b49-60c573095461/assignments/820371a1-4589-4a4a-8b40-9d5db94b9186/resources
+Content-type: application/json
+
+{
+ "distributeForStudentWork": false,
+ "resource": {
+ "displayName": "Template - My Story",
+ "appId": "6fbeb90c-3d55-4bd5-82c4-bfe824be4300",
+ "appIconWebUrl": "https://statics.teams.cdn.office.net/evergreen-assets/ThirdPartyApps/6fbeb90c-3d55-4bd5-82c4-bfe824be4300_largeImage.png?v=2.0.2",
+ "teamsEmbeddedContentUrl": "https://app.api.edu.buncee.com/player/C7B0866C9B7E485EAE21AE14DBC3FD08?embed=1&render_slide_panel=1",
+ "webUrl": "https://app.edu.buncee.com/buncee/C7B0866C9B7E485EAE21AE14DBC3FD08",
+ "@odata.type": "#microsoft.graph.educationTeamsAppResource"
+ }
+}
+```
+
+# [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.educationTeamsAppResource"
+} -->
+```http
+HTTP/1.1 201 Created
+Content-type: application/json
+
+{
+ "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#education/classes('2003c52e-807a-4186-9b49-60c573095461')/assignments('820371a1-4589-4a4a-8b40-9d5db94b9186')/resources/$entity",
+ "distributeForStudentWork": false,
+ "id": "6821bff5-91e4-4b63-8f98-8157305ff004",
+ "resource": {
+ "@odata.type": "#microsoft.graph.educationTeamsAppResource",
+ "displayName": "Template - My Story",
+ "createdDateTime": "2022-12-01T16:35:58.0718192Z",
+ "lastModifiedDateTime": "2022-12-01T16:35:58.0718396Z",
+ "appId": "6fbeb90c-3d55-4bd5-82c4-bfe824be4300",
+ "appIconWebUrl": "https://statics.teams.cdn.office.net/evergreen-assets/ThirdPartyApps/6fbeb90c-3d55-4bd5-82c4-bfe824be4300_largeImage.png?v=2.0.2",
+ "teamsEmbeddedContentUrl": "https://app.api.edu.buncee.com/player/C7B0866C9B7E485EAE21AE14DBC3FD08?embed=1&render_slide_panel=1",
+ "webUrl": "https://app.edu.buncee.com/buncee/C7B0866C9B7E485EAE21AE14DBC3FD08",
+ "createdBy": {
+ "application": null,
+ "device": null,
+ "user": {
+ "id": "fffafb29-e8bc-4de3-8106-be76ed2ad499",
+ "displayName": null
+ }
+ },
+ "lastModifiedBy": {
+ "application": null,
+ "device": null,
+ "user": {
+ "id": "fffafb29-e8bc-4de3-8106-be76ed2ad499",
+ "displayName": null
+ }
+ }
+ }
+}
+```
## See also
v1.0 Educationassignment Put Rubric https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/educationassignment-put-rubric.md
doc_type: "apiPageType"
Namespace: microsoft.graph
-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/v1.0/api/educationassignment-remove-category.md
doc_type: apiPageType
Namespace: microsoft.graph
-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/v1.0/api/educationassignment-setupfeedbackresourcesfolder.md
doc_type: apiPageType
Namespace: microsoft.graph
-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/v1.0/api/educationassignment-setupresourcesfolder.md
doc_type: apiPageType
Namespace: microsoft.graph
-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.
v1.0 Educationassignmentdefaults Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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/v1.0/api/educationassignmentresource-get.md
doc_type: apiPageType
Namespace: microsoft.graph
-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/v1.0/api/educationassignmentsettings-get.md
doc_type: apiPageType
# Get educationAssignmentSettings Namespace: microsoft.graph
-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/v1.0/api/educationcategory-delete.md
doc_type: apiPageType
Namespace: microsoft.graph
-Delete an existing [category](../resources/educationcategory.md).
+Delete an existing [category](../resources/educationcategory.md). Only teachers can perform this operation.
## Permissions
v1.0 Educationcategory Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/educationcategory-get.md
doc_type: apiPageType
Namespace: microsoft.graph
-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/v1.0/api/educationclass-list-assignments.md
doc_type: apiPageType
Namespace: microsoft.graph
-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/v1.0/api/educationclass-list-categories.md
doc_type: apiPageType
Namespace: microsoft.graph
-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 Assignment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/educationclass-post-assignment.md
doc_type: apiPageType
Namespace: microsoft.graph
-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/v1.0/api/educationclass-post-category.md
doc_type: apiPageType
Namespace: microsoft.graph
-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/v1.0/api/educationoutcome-update.md
doc_type: "apiPageType"
Namespace: microsoft.graph
-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/v1.0/api/educationrubric-delete.md
doc_type: "apiPageType"
Namespace: microsoft.graph
-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/v1.0/api/educationrubric-get.md
doc_type: "apiPageType"
Namespace: microsoft.graph
-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/v1.0/api/educationrubric-update.md
doc_type: "apiPageType"
Namespace: microsoft.graph
-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/acdefc6b-2dc6-4e71-b1e9-6d9810ab1793/assignments/cf6005fc-9e13-44a2-a6ac-a53322006454/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/acdefc6b-2dc6-4e71-b1e9-6d9810ab1793/assignments/cf6005fc-9e13-44a2-a6ac-a53322006454/rubric](educationrubric-get.md), but it cannot be updated.
v1.0 Educationsubmission Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/educationsubmission-get.md
doc_type: apiPageType
Namespace: microsoft.graph
-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/v1.0/api/educationsubmission-list-outcomes.md
doc_type: "apiPageType"
Namespace: microsoft.graph
-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/v1.0/api/educationsubmission-list-resources.md
doc_type: apiPageType
Namespace: microsoft.graph
-List the resources associated with a [submission](../resources/educationsubmission.md).
+List the resources associated with a [submission](../resources/educationsubmission.md). 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/v1.0/api/educationsubmission-list-submittedresources.md
doc_type: apiPageType
Namespace: microsoft.graph
-List the [educationSubmissionResource](../resources/educationsubmissionresource.md) objects that have officially been submitted for grading.
+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.
v1.0 Educationsubmission Post Resources https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/educationsubmission-post-resources.md
doc_type: apiPageType
Namespace: microsoft.graph
-Add an [educationSubmissionResource](../resources/educationsubmissionresource.md) to a submission resource list.
+Add an [educationSubmissionResource](../resources/educationsubmissionresource.md) to a submission resource list. Only teachers and students can perform this operation.
-Only the student assigned to the submission 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/v1.0/api/educationsubmission-setupresourcesfolder.md
doc_type: apiPageType
Namespace: microsoft.graph
-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/v1.0/api/educationsubmission-submit.md
doc_type: apiPageType
Namespace: microsoft.graph
-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/v1.0/api/educationsubmission-unsubmit.md
doc_type: apiPageType
Namespace: microsoft.graph
-Indicate that a student wants to work on the submission of the assignment after it was turned in.
+Indicate that a student wants to work on the submission of the 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/v1.0/api/educationsubmissionresource-delete.md
doc_type: apiPageType
Namespace: microsoft.graph
-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/v1.0/api/educationsubmissionresource-get.md
doc_type: apiPageType
Namespace: microsoft.graph
-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/v1.0/api/educationsubmittedsubmissionresource-get.md
doc_type: apiPageType
Namespace: microsoft.graph
-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.
This will be available to a teacher or an application with application permissions after a student has submitted, and will be available to the student after the teacher has released 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/v1.0/api/educationuser-list-assignments.md
doc_type: apiPageType
Namespace: microsoft.graph
-Returns a list of [educationAssignment](../resources/educationassignment.md) assigned to a [educationUser](../resources/educationuser.md) for all [classes](../resources/educationclass.md).
+Returns a list of [educationAssignment](../resources/educationassignment.md) assigned to a [educationUser](../resources/educationuser.md) for all [classes](../resources/educationclass.md). Only teachers, students, and applications with application permissions can perform this operation.
This method 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. Use the methods defined for the **assignment** for all other operations.
v1.0 Group List Members https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/group-list-members.md
Get a list of the group's direct members. A group can have users, organizational
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 a 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/v1.0/api/group-list-transitivemembers.md
doc_type: apiPageType
Namespace: microsoft.graph
-Get a list of the group's members. A group can have users, devices, organizational contacts, and other groups as members. This operation is transitive and returns 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 a 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/v1.0/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.
The following is an example of the 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/v1.0/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.
+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/v1.0/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
-One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference).
+The following table shows the least privileged permission that's required by each resource type when calling 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) | GroupMember.ReadWrite.All, Group.ReadWrite.All, Directory.ReadWrite.All |
-| Delegated (personal Microsoft account) | Not supported. |
-| Application | GroupMember.ReadWrite.All, Group.ReadWrite.All and Directory.ReadWrite.All |
+| Supported resource | Delegated (work or school account) | Delegated (personal Microsoft account) | Application |
+|:-|:|:-|:|
+| [device](../resources/device.md) | GroupMember.ReadWrite.All and Device.ReadWrite.All | Not supported. | GroupMember.ReadWrite.All and Device.ReadWrite.All |
+| [group](../resources/group.md) | GroupMember.ReadWrite.All and Group.ReadWrite.All | Not supported. | GroupMember.ReadWrite.All and Group.ReadWrite.All |
+| [orgContact](../resources/device.md) | GroupMember.ReadWrite.All and OrgContact.Read.All | Not supported. | GroupMember.ReadWrite.All and OrgContact.Read.All |
+| [servicePrincipal](../resources/group.md) | GroupMember.ReadWrite.All and Application.ReadWrite.All | Not supported. | GroupMember.ReadWrite.All and Application.ReadWrite.All |
+| [user](../resources/user.md) | GroupMember.ReadWrite.All and User.ReadWrite.All | Not supported. | UGroupMember.ReadWrite.All and User.ReadWrite.All |
> [!IMPORTANT] > To add members to a role-assignable group, the calling user must also be assigned the _RoleManagement.ReadWrite.Directory_ permission.
HTTP/1.1 204 No Content
- [Update member's role in team](team-update-members.md) - [Remove member from team](team-delete-members.md) --
-[Yes]: /graph/images/yesandnosymbols/greencheck.svg
-[No]: /graph/images/yesandnosymbols/no.svg
- <!-- uuid: 8fcb5dbc-d5aa-4681-8e31-b001d5168d79 2015-10-25 14:57:30 UTC --> <!-- {
v1.0 Identityprotectionroot List Riskyserviceprincipals https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/identityprotectionroot-list-riskyserviceprincipals.md
If successful, this method returns a `200 OK` response code and a collection of
### Request +
+# [HTTP](#tab/http)
<!-- { "blockType": "request", "name": "list_riskyserviceprincipal"
If successful, this method returns a `200 OK` response code and a collection of
GET https://graph.microsoft.com/v1.0/identityProtection/riskyServicePrincipals ```
+# [C#](#tab/csharp)
+
+# [JavaScript](#tab/javascript)
+
+# [Java](#tab/java)
+
+# [Go](#tab/go)
+
+# [PHP](#tab/php)
++++ ### Response >**Note:** The response object shown here might be shortened for readability. <!-- {
v1.0 Identityprotectionroot List Serviceprincipalriskdetections https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/identityprotectionroot-list-serviceprincipalriskdetections.md
If successful, this method returns a `200 OK` response code and a collection of
The following is an example of the request. +
+# [HTTP](#tab/http)
<!-- { "blockType": "request", "name": "list_serviceprincipalriskdetection"
The following is an example of the request.
GET https://graph.microsoft.com/v1.0/identityProtection/servicePrincipalRiskDetections ```
+# [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.
Content-Type: application/json
#### Request The following example shows how to use `$filter` to get the collection of service principal risk detections where the risk level is `medium` or the risk event type is `investigationsThreatIntelligence`. +
+# [HTTP](#tab/http)
<!-- { "blockType": "request", "name": "list_filter_serviceprincipalriskdetection"
The following example shows how to use `$filter` to get the collection of servic
GET https://graph.microsoft.com/v1.0/identityProtection/servicePrincipalRiskDetections?$filter=riskEventType eq 'investigationsThreatIntelligence' or riskLevel eq 'medium' ```
+# [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.
v1.0 Internaldomainfederation Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/internaldomainfederation-delete.md
Title: "Delete internalDomainFederation" description: "Delete 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/v1.0/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/v1.0/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 Apps Androidlobapp Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 1401
"versionCode": "Version Code value" } ```-----
v1.0 Intune Apps Androidlobapp Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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/v1.0/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: 1508
} } ```-----
v1.0 Intune Apps Androidlobapp List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 1610
] } ```-----
v1.0 Intune Apps Androidlobapp Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 1401
"versionCode": "Version Code value" } ```-----
v1.0 Intune Apps Androidstoreapp Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 1264
} } ```-----
v1.0 Intune Apps Androidstoreapp Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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/v1.0/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: 1363
} } ```-----
v1.0 Intune Apps Androidstoreapp List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 1457
] } ```-----
v1.0 Intune Apps Androidstoreapp Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 1264
} } ```-----
v1.0 Intune Apps Deviceappmanagement Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-apps-deviceappmanagement-get.md
Title: "Get deviceAppManagement" description: "Read properties and relationships of the deviceAppManagement object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceAppManagement](../resources/intune-apps-deviceappmanagement.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: 133
} } ```-----
v1.0 Intune Apps Deviceappmanagement Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-apps-deviceappmanagement-update.md
Title: "Update deviceAppManagement" description: "Update the properties of a deviceAppManagement object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceAppManagement](../resources/intune-apps-deviceappmanagement.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: 110
"id": "bbb801a3-01a3-bbb8-a301-b8bba301b8bb" } ```-----
v1.0 Intune Apps Ioslobapp Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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)|
Here is an example of the request.
``` http POST https://graph.microsoft.com/v1.0/deviceAppManagement/mobileApps Content-type: application/json
-Content-length: 1249
+Content-length: 1269
{ "@odata.type": "#microsoft.graph.iosLobApp",
Content-length: 1249
"v11_0": true, "v12_0": true, "v13_0": true,
- "v14_0": true
+ "v14_0": true,
+ "v15_0": true
}, "expirationDateTime": "2016-12-31T23:57:57.2481234-08:00", "versionNumber": "Version 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: 1421
+Content-Length: 1441
{ "@odata.type": "#microsoft.graph.iosLobApp",
Content-Length: 1421
"v11_0": true, "v12_0": true, "v13_0": true,
- "v14_0": true
+ "v14_0": true,
+ "v15_0": true
}, "expirationDateTime": "2016-12-31T23:57:57.2481234-08:00", "versionNumber": "Version Number value", "buildNumber": "Build Number value" } ```-----
v1.0 Intune Apps Ioslobapp Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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/v1.0/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: 1522
+Content-Length: 1544
{ "value": {
Content-Length: 1522
"v11_0": true, "v12_0": true, "v13_0": true,
- "v14_0": true
+ "v14_0": true,
+ "v15_0": true
}, "expirationDateTime": "2016-12-31T23:57:57.2481234-08:00", "versionNumber": "Version Number value",
Content-Length: 1522
} } ```-----
v1.0 Intune Apps Ioslobapp List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 1618
+Content-Length: 1642
{ "value": [
Content-Length: 1618
"v11_0": true, "v12_0": true, "v13_0": true,
- "v14_0": true
+ "v14_0": true,
+ "v15_0": true
}, "expirationDateTime": "2016-12-31T23:57:57.2481234-08:00", "versionNumber": "Version Number value",
Content-Length: 1618
] } ```-----
v1.0 Intune Apps Ioslobapp Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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)|
Here is an example of the request.
``` http PATCH https://graph.microsoft.com/v1.0/deviceAppManagement/mobileApps/{mobileAppId} Content-type: application/json
-Content-length: 1249
+Content-length: 1269
{ "@odata.type": "#microsoft.graph.iosLobApp",
Content-length: 1249
"v11_0": true, "v12_0": true, "v13_0": true,
- "v14_0": true
+ "v14_0": true,
+ "v15_0": true
}, "expirationDateTime": "2016-12-31T23:57:57.2481234-08:00", "versionNumber": "Version 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: 1421
+Content-Length: 1441
{ "@odata.type": "#microsoft.graph.iosLobApp",
Content-Length: 1421
"v11_0": true, "v12_0": true, "v13_0": true,
- "v14_0": true
+ "v14_0": true,
+ "v15_0": true
}, "expirationDateTime": "2016-12-31T23:57:57.2481234-08:00", "versionNumber": "Version Number value", "buildNumber": "Build Number value" } ```-----
v1.0 Intune Apps Iosmobileappconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 706
] } ```-----
v1.0 Intune Apps Iosmobileappconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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/v1.0/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: 763
} } ```-----
v1.0 Intune Apps Iosmobileappconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 815
] } ```-----
v1.0 Intune Apps Iosmobileappconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 706
] } ```-----
v1.0 Intune Apps Iosstoreapp Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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)|
Here is an example of the request.
``` http POST https://graph.microsoft.com/v1.0/deviceAppManagement/mobileApps Content-type: application/json
-Content-length: 1046
+Content-length: 1066
{ "@odata.type": "#microsoft.graph.iosStoreApp",
Content-length: 1046
"v11_0": true, "v12_0": true, "v13_0": true,
- "v14_0": true
+ "v14_0": true,
+ "v15_0": 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: 1218
+Content-Length: 1238
{ "@odata.type": "#microsoft.graph.iosStoreApp",
Content-Length: 1218
"v11_0": true, "v12_0": true, "v13_0": true,
- "v14_0": true
+ "v14_0": true,
+ "v15_0": true
} } ```-----
v1.0 Intune Apps Iosstoreapp Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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/v1.0/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)|
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: 1309
+Content-Length: 1331
{ "value": {
Content-Length: 1309
"v11_0": true, "v12_0": true, "v13_0": true,
- "v14_0": true
+ "v14_0": true,
+ "v15_0": true
} } } ```-----
v1.0 Intune Apps Iosstoreapp List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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)|
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: 1395
+Content-Length: 1419
{ "value": [
Content-Length: 1395
"v11_0": true, "v12_0": true, "v13_0": true,
- "v14_0": true
+ "v14_0": true,
+ "v15_0": true
} } ] } ```-----
v1.0 Intune Apps Iosstoreapp Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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)|
Here is an example of the request.
``` http PATCH https://graph.microsoft.com/v1.0/deviceAppManagement/mobileApps/{mobileAppId} Content-type: application/json
-Content-length: 1046
+Content-length: 1066
{ "@odata.type": "#microsoft.graph.iosStoreApp",
Content-length: 1046
"v11_0": true, "v12_0": true, "v13_0": true,
- "v14_0": true
+ "v14_0": true,
+ "v15_0": 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: 1218
+Content-Length: 1238
{ "@odata.type": "#microsoft.graph.iosStoreApp",
Content-Length: 1218
"v11_0": true, "v12_0": true, "v13_0": true,
- "v14_0": true
+ "v14_0": true,
+ "v15_0": true
} } ```-----
v1.0 Intune Apps Iosvppapp Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 1394
"bundleId": "Bundle Id value" } ```-----
v1.0 Intune Apps Iosvppapp Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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/v1.0/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: 1487
} } ```-----
v1.0 Intune Apps Iosvppapp List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 1575
] } ```-----
v1.0 Intune Apps Iosvppapp Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 1394
"bundleId": "Bundle Id value" } ```-----
v1.0 Intune Apps Macoslobapp Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 1695
"installAsManaged": true } ```-----
v1.0 Intune Apps Macoslobapp Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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/v1.0/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: 1822
} } ```-----
v1.0 Intune Apps Macoslobapp List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 1944
] } ```-----
v1.0 Intune Apps Macoslobapp Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 1695
"installAsManaged": true } ```-----
v1.0 Intune Apps Macosmicrosoftedgeapp Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 780
"channel": "beta" } ```-----
v1.0 Intune Apps Macosmicrosoftedgeapp Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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/v1.0/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: 839
} } ```-----
v1.0 Intune Apps Macosmicrosoftedgeapp List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 893
] } ```-----
v1.0 Intune Apps Macosmicrosoftedgeapp Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 780
"channel": "beta" } ```-----
v1.0 Intune Apps Macosofficesuiteapp Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 756
"publishingState": "processing" } ```-----
v1.0 Intune Apps Macosofficesuiteapp Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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/v1.0/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: 813
} } ```-----
v1.0 Intune Apps Macosofficesuiteapp List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 865
] } ```-----
v1.0 Intune Apps Macosofficesuiteapp Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 756
"publishingState": "processing" } ```-----
v1.0 Intune Apps Managedandroidlobapp Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 1479
"versionCode": "Version Code value" } ```-----
v1.0 Intune Apps Managedandroidlobapp Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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/v1.0/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: 1590
} } ```-----
v1.0 Intune Apps Managedandroidlobapp List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 1696
] } ```-----
v1.0 Intune Apps Managedandroidlobapp Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 1479
"versionCode": "Version Code value" } ```-----
v1.0 Intune Apps Managedandroidstoreapp Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 1342
} } ```-----
v1.0 Intune Apps Managedandroidstoreapp Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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/v1.0/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: 1445
} } ```-----
v1.0 Intune Apps Managedandroidstoreapp List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 1543
] } ```-----
v1.0 Intune Apps Managedandroidstoreapp Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 1342
} } ```-----
v1.0 Intune Apps Managedapp Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 879
} } ```-----
v1.0 Intune Apps Managedapp List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 935
] } ```-----
v1.0 Intune Apps Manageddevicemobileappconfiguration Assign https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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/v1.0/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: 451
} } ```-----
v1.0 Intune Apps Manageddevicemobileappconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 485
] } ```-----
v1.0 Intune Apps Manageddevicemobileappconfigurationassignment Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 228
} } ```-----
v1.0 Intune Apps Manageddevicemobileappconfigurationassignment Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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/v1.0/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: 257
} } ```-----
v1.0 Intune Apps Manageddevicemobileappconfigurationassignment List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 281
] } ```-----
v1.0 Intune Apps Manageddevicemobileappconfigurationassignment Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 228
} } ```-----
v1.0 Intune Apps Manageddevicemobileappconfigurationdevicestatus Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 494
"userPrincipalName": "User Principal Name value" } ```-----
v1.0 Intune Apps Manageddevicemobileappconfigurationdevicestatus Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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/v1.0/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: 531
} } ```-----
v1.0 Intune Apps Manageddevicemobileappconfigurationdevicestatus List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 563
] } ```-----
v1.0 Intune Apps Manageddevicemobileappconfigurationdevicestatus Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 494
"userPrincipalName": "User Principal Name value" } ```-----
v1.0 Intune Apps Manageddevicemobileappconfigurationdevicesummary Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 385
} } ```-----
v1.0 Intune Apps Manageddevicemobileappconfigurationdevicesummary Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 348
"configurationVersion": 4 } ```-----
v1.0 Intune Apps Manageddevicemobileappconfigurationuserstatus Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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/v1.0/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/v1.0/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/v1.0/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/v1.0/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/v1.0/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: 383
} } ```-----
v1.0 Intune Apps Manageddevicemobileappconfigurationusersummary Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 346
"configurationVersion": 4 } ```-----
v1.0 Intune Apps Managedioslobapp Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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)|
Here is an example of the request.
``` http POST https://graph.microsoft.com/v1.0/deviceAppManagement/mobileApps Content-type: application/json
-Content-length: 1327
+Content-length: 1347
{ "@odata.type": "#microsoft.graph.managedIOSLobApp",
Content-length: 1327
"v11_0": true, "v12_0": true, "v13_0": true,
- "v14_0": true
+ "v14_0": true,
+ "v15_0": true
}, "expirationDateTime": "2016-12-31T23:57:57.2481234-08:00", "versionNumber": "Version 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: 1499
+Content-Length: 1519
{ "@odata.type": "#microsoft.graph.managedIOSLobApp",
Content-Length: 1499
"v11_0": true, "v12_0": true, "v13_0": true,
- "v14_0": true
+ "v14_0": true,
+ "v15_0": true
}, "expirationDateTime": "2016-12-31T23:57:57.2481234-08:00", "versionNumber": "Version Number value", "buildNumber": "Build Number value" } ```-----
v1.0 Intune Apps Managedioslobapp Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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/v1.0/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)|
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: 1604
+Content-Length: 1626
{ "value": {
Content-Length: 1604
"v11_0": true, "v12_0": true, "v13_0": true,
- "v14_0": true
+ "v14_0": true,
+ "v15_0": true
}, "expirationDateTime": "2016-12-31T23:57:57.2481234-08:00", "versionNumber": "Version Number value",
Content-Length: 1604
} } ```-----
v1.0 Intune Apps Managedioslobapp List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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)|
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: 1704
+Content-Length: 1728
{ "value": [
Content-Length: 1704
"v11_0": true, "v12_0": true, "v13_0": true,
- "v14_0": true
+ "v14_0": true,
+ "v15_0": true
}, "expirationDateTime": "2016-12-31T23:57:57.2481234-08:00", "versionNumber": "Version Number value",
Content-Length: 1704
] } ```-----
v1.0 Intune Apps Managedioslobapp Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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)|
Here is an example of the request.
``` http PATCH https://graph.microsoft.com/v1.0/deviceAppManagement/mobileApps/{mobileAppId} Content-type: application/json
-Content-length: 1327
+Content-length: 1347
{ "@odata.type": "#microsoft.graph.managedIOSLobApp",
Content-length: 1327
"v11_0": true, "v12_0": true, "v13_0": true,
- "v14_0": true
+ "v14_0": true,
+ "v15_0": true
}, "expirationDateTime": "2016-12-31T23:57:57.2481234-08:00", "versionNumber": "Version 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: 1499
+Content-Length: 1519
{ "@odata.type": "#microsoft.graph.managedIOSLobApp",
Content-Length: 1499
"v11_0": true, "v12_0": true, "v13_0": true,
- "v14_0": true
+ "v14_0": true,
+ "v15_0": true
}, "expirationDateTime": "2016-12-31T23:57:57.2481234-08:00", "versionNumber": "Version Number value", "buildNumber": "Build Number value" } ```-----
v1.0 Intune Apps Managediosstoreapp Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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)|
Here is an example of the request.
``` http POST https://graph.microsoft.com/v1.0/deviceAppManagement/mobileApps Content-type: application/json
-Content-length: 1124
+Content-length: 1144
{ "@odata.type": "#microsoft.graph.managedIOSStoreApp",
Content-length: 1124
"v11_0": true, "v12_0": true, "v13_0": true,
- "v14_0": true
+ "v14_0": true,
+ "v15_0": 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: 1296
+Content-Length: 1316
{ "@odata.type": "#microsoft.graph.managedIOSStoreApp",
Content-Length: 1296
"v11_0": true, "v12_0": true, "v13_0": true,
- "v14_0": true
+ "v14_0": true,
+ "v15_0": true
} } ```-----
v1.0 Intune Apps Managediosstoreapp Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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/v1.0/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)|
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: 1391
+Content-Length: 1413
{ "value": {
Content-Length: 1391
"v11_0": true, "v12_0": true, "v13_0": true,
- "v14_0": true
+ "v14_0": true,
+ "v15_0": true
} } } ```-----
v1.0 Intune Apps Managediosstoreapp List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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)|
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: 1481
+Content-Length: 1505
{ "value": [
Content-Length: 1481
"v11_0": true, "v12_0": true, "v13_0": true,
- "v14_0": true
+ "v14_0": true,
+ "v15_0": true
} } ] } ```-----
v1.0 Intune Apps Managediosstoreapp Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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)|
Here is an example of the request.
``` http PATCH https://graph.microsoft.com/v1.0/deviceAppManagement/mobileApps/{mobileAppId} Content-type: application/json
-Content-length: 1124
+Content-length: 1144
{ "@odata.type": "#microsoft.graph.managedIOSStoreApp",
Content-length: 1124
"v11_0": true, "v12_0": true, "v13_0": true,
- "v14_0": true
+ "v14_0": true,
+ "v15_0": 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: 1296
+Content-Length: 1316
{ "@odata.type": "#microsoft.graph.managedIOSStoreApp",
Content-Length: 1296
"v11_0": true, "v12_0": true, "v13_0": true,
- "v14_0": true
+ "v14_0": true,
+ "v15_0": true
} } ```-----
v1.0 Intune Apps Managedmobilelobapp Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 1007
} } ```-----
v1.0 Intune Apps Managedmobilelobapp List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 1069
] } ```-----
v1.0 Intune Apps Microsoftstoreforbusinessapp Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 941
"packageIdentityName": "Package Identity Name value" } ```-----
v1.0 Intune Apps Microsoftstoreforbusinessapp Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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/v1.0/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: 1008
} } ```-----
v1.0 Intune Apps Microsoftstoreforbusinessapp List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 1070
] } ```-----
v1.0 Intune Apps Microsoftstoreforbusinessapp Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 941
"packageIdentityName": "Package Identity Name value" } ```-----
v1.0 Intune Apps Mobileapp Assign https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-apps-mobileapp-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 Mobileapp Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-apps-mobileapp-get.md
Title: "Get mobileApp" description: "Read properties and relationships of the mobileApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [mobileApp](../resources/intune-apps-mobileapp.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: 803
} } ```-----
v1.0 Intune Apps Mobileapp List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-apps-mobileapp-list.md
Title: "List mobileApps" description: "List properties and relationships of the mobileApp objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [mobileApp](../resources/intune-apps-mobileapp.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: 855
] } ```-----
v1.0 Intune Apps Mobileappassignment Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 910
} } ```-----
v1.0 Intune Apps Mobileappassignment Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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/v1.0/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: 975
} } ```-----
v1.0 Intune Apps Mobileappassignment List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 1035
] } ```-----
v1.0 Intune Apps Mobileappassignment Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 910
} } ```-----
v1.0 Intune Apps Mobileappcategory Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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/v1.0/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/v1.0/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/v1.0/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/v1.0/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/v1.0/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/v1.0/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/v1.0/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/v1.0/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/v1.0/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/v1.0/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/v1.0/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: 450
"uploadState": "transientError" } ```-----
v1.0 Intune Apps Mobileappcontentfile Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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/v1.0/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: 491
} } ```-----
v1.0 Intune Apps Mobileappcontentfile List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 527
] } ```-----
v1.0 Intune Apps Mobileappcontentfile Renewupload https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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/v1.0/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: 450
"uploadState": "transientError" } ```-----
v1.0 Intune Apps Mobilecontainedapp Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-apps-mobilecontainedapp-get.md
+
+ Title: "Get mobileContainedApp"
+description: "Read properties and relationships of the mobileContainedApp object."
+
+localization_priority: Normal
++
+# Get mobileContainedApp
+
+Namespace: microsoft.graph
+
+> **Note:** The Microsoft Graph API for Intune requires an [active Intune license](https://go.microsoft.com/fwlink/?linkid=839381) for the tenant.
+
+Read properties and relationships of the [mobileContainedApp](../resources/intune-apps-mobilecontainedapp.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)|DeviceManagementApps.Read.All, DeviceManagementApps.ReadWrite.All|
+|Delegated (personal Microsoft account)|Not supported.|
+|Application|DeviceManagementApps.Read.All, DeviceManagementApps.ReadWrite.All|
+
+## HTTP Request
+<!-- {
+ "blockType": "ignored"
+}
+-->
+``` http
+GET /deviceAppManagement/mobileApps/{mobileAppId}/contentVersions/{mobileAppContentId}/containedApps/{mobileContainedAppId}
+GET /deviceAppManagement/mobileApps/{mobileAppId}/microsoft.graph.windowsUniversalAppX/committedContainedApps/{mobileContainedAppId}
+```
+
+## Optional query parameters
+This method supports the [OData Query Parameters](/graph/query-parameters) to help customize the response.
+
+## Request headers
+|Header|Value|
+|:|:|
+|Authorization|Bearer &lt;token&gt; Required.|
+|Accept|application/json|
+
+## Request body
+Do not supply a request body for this method.
+
+## Response
+If successful, this method returns a `200 OK` response code and [mobileContainedApp](../resources/intune-apps-mobilecontainedapp.md) object in the response body.
+
+## Example
+
+### Request
+Here is an example of the request.
+``` http
+GET https://graph.microsoft.com/v1.0/deviceAppManagement/mobileApps/{mobileAppId}/contentVersions/{mobileAppContentId}/containedApps/{mobileContainedAppId}
+```
+
+### Response
+Here is an example of the response. Note: The response object shown here may be truncated for brevity. All of the properties will be returned from an actual call.
+``` http
+HTTP/1.1 200 OK
+Content-Type: application/json
+Content-Length: 132
+
+{
+ "value": {
+ "@odata.type": "#microsoft.graph.mobileContainedApp",
+ "id": "3c02d875-d875-3c02-75d8-023c75d8023c"
+ }
+}
+```
v1.0 Intune Apps Mobilecontainedapp List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-apps-mobilecontainedapp-list.md
+
+ Title: "List mobileContainedApps"
+description: "List properties and relationships of the mobileContainedApp objects."
+
+localization_priority: Normal
++
+# List mobileContainedApps
+
+Namespace: microsoft.graph
+
+> **Note:** The Microsoft Graph API for Intune requires an [active Intune license](https://go.microsoft.com/fwlink/?linkid=839381) for the tenant.
+
+List properties and relationships of the [mobileContainedApp](../resources/intune-apps-mobilecontainedapp.md) objects.
+
+## Permissions
+One of the following permissions is required to 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)|DeviceManagementApps.Read.All, DeviceManagementApps.ReadWrite.All|
+|Delegated (personal Microsoft account)|Not supported.|
+|Application|DeviceManagementApps.Read.All, DeviceManagementApps.ReadWrite.All|
+
+## HTTP Request
+<!-- {
+ "blockType": "ignored"
+}
+-->
+``` http
+GET /deviceAppManagement/mobileApps/{mobileAppId}/contentVersions/{mobileAppContentId}/containedApps
+GET /deviceAppManagement/mobileApps/{mobileAppId}/microsoft.graph.windowsUniversalAppX/committedContainedApps
+```
+
+## Request headers
+|Header|Value|
+|:|:|
+|Authorization|Bearer &lt;token&gt; Required.|
+|Accept|application/json|
+
+## 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 [mobileContainedApp](../resources/intune-apps-mobilecontainedapp.md) objects in the response body.
+
+## Example
+
+### Request
+Here is an example of the request.
+``` http
+GET https://graph.microsoft.com/v1.0/deviceAppManagement/mobileApps/{mobileAppId}/contentVersions/{mobileAppContentId}/containedApps
+```
+
+### Response
+Here is an example of the response. Note: The response object shown here may be truncated for brevity. All of the properties will be returned from an actual call.
+``` http
+HTTP/1.1 200 OK
+Content-Type: application/json
+Content-Length: 150
+
+{
+ "value": [
+ {
+ "@odata.type": "#microsoft.graph.mobileContainedApp",
+ "id": "3c02d875-d875-3c02-75d8-023c75d8023c"
+ }
+ ]
+}
+```
v1.0 Intune Apps Mobilelobapp Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 925
} } ```-----
v1.0 Intune Apps Mobilelobapp List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 983
] } ```-----
v1.0 Intune Apps Webapp Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 817
"useManagedBrowser": true } ```-----
v1.0 Intune Apps Webapp Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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/v1.0/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: 878
} } ```-----
v1.0 Intune Apps Webapp List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 934
] } ```-----
v1.0 Intune Apps Webapp Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 817
"useManagedBrowser": true } ```-----
v1.0 Intune Apps Win32lobapp Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 2306
"minimumSupportedWindowsRelease": "Minimum Supported Windows Release value" } ```-----
v1.0 Intune Apps Win32lobapp Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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/v1.0/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: 2455
} } ```-----
v1.0 Intune Apps Win32lobapp List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 2599
] } ```-----
v1.0 Intune Apps Win32lobapp Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 2306
"minimumSupportedWindowsRelease": "Minimum Supported Windows Release value" } ```-----
v1.0 Intune Apps Windowsmicrosoftedgeapp Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-apps-windowsmicrosoftedgeapp-create.md
+
+ Title: "Create windowsMicrosoftEdgeApp"
+description: "Create a new windowsMicrosoftEdgeApp object."
+
+localization_priority: Normal
++
+# Create windowsMicrosoftEdgeApp
+
+Namespace: microsoft.graph
+
+> **Note:** The Microsoft Graph API for Intune requires an [active Intune license](https://go.microsoft.com/fwlink/?linkid=839381) for the tenant.
+
+Create a new [windowsMicrosoftEdgeApp](../resources/intune-apps-windowsmicrosoftedgeapp.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)|DeviceManagementApps.ReadWrite.All|
+|Delegated (personal Microsoft account)|Not supported.|
+|Application|DeviceManagementApps.ReadWrite.All|
+
+## HTTP Request
+<!-- {
+ "blockType": "ignored"
+}
+-->
+``` http
+POST /deviceAppManagement/mobileApps
+```
+
+## Request headers
+|Header|Value|
+|:|:|
+|Authorization|Bearer &lt;token&gt; Required.|
+|Accept|application/json|
+
+## Request body
+In the request body, supply a JSON representation for the windowsMicrosoftEdgeApp object.
+
+The following table shows the properties that are required when you create the windowsMicrosoftEdgeApp.
+
+|Property|Type|Description|
+|:|:|:|
+|id|String|Key of the entity. Inherited from [mobileApp](../resources/intune-apps-mobileapp.md)|
+|displayName|String|The admin provided or imported title of the app. Inherited from [mobileApp](../resources/intune-apps-mobileapp.md)|
+|description|String|The description of the app. Inherited from [mobileApp](../resources/intune-apps-mobileapp.md)|
+|publisher|String|The publisher of the app. Inherited from [mobileApp](../resources/intune-apps-mobileapp.md)|
+|largeIcon|[mimeContent](../resources/intune-shared-mimecontent.md)|The large icon, to be displayed in the app details and used for upload of the icon. Inherited from [mobileApp](../resources/intune-apps-mobileapp.md)|
+|createdDateTime|DateTimeOffset|The date and time the app was created. Inherited from [mobileApp](../resources/intune-apps-mobileapp.md)|
+|lastModifiedDateTime|DateTimeOffset|The date and time the app was last modified. Inherited from [mobileApp](../resources/intune-apps-mobileapp.md)|
+|isFeatured|Boolean|The value indicating whether the app is marked as featured by the admin. Inherited from [mobileApp](../resources/intune-apps-mobileapp.md)|
+|privacyInformationUrl|String|The privacy statement Url. Inherited from [mobileApp](../resources/intune-apps-mobileapp.md)|
+|informationUrl|String|The more information Url. Inherited from [mobileApp](../resources/intune-apps-mobileapp.md)|
+|owner|String|The owner of the app. Inherited from [mobileApp](../resources/intune-apps-mobileapp.md)|
+|developer|String|The developer of the app. Inherited from [mobileApp](../resources/intune-apps-mobileapp.md)|
+|notes|String|Notes for the app. Inherited from [mobileApp](../resources/intune-apps-mobileapp.md)|
+|publishingState|[mobileAppPublishingState](../resources/intune-apps-mobileapppublishingstate.md)|The publishing state for the app. The app cannot be assigned unless the app is published. Inherited from [mobileApp](../resources/intune-apps-mobileapp.md). Possible values are: `notPublished`, `processing`, `published`.|
+|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.|
+++
+## Response
+If successful, this method returns a `201 Created` response code and a [windowsMicrosoftEdgeApp](../resources/intune-apps-windowsmicrosoftedgeapp.md) object in the response body.
+
+## Example
+
+### Request
+Here is an example of the request.
+``` http
+POST https://graph.microsoft.com/v1.0/deviceAppManagement/mobileApps
+Content-type: application/json
+Content-length: 671
+
+{
+ "@odata.type": "#microsoft.graph.windowsMicrosoftEdgeApp",
+ "displayName": "Display Name value",
+ "description": "Description value",
+ "publisher": "Publisher value",
+ "largeIcon": {
+ "@odata.type": "microsoft.graph.mimeContent",
+ "type": "Type value",
+ "value": "dmFsdWU="
+ },
+ "isFeatured": true,
+ "privacyInformationUrl": "https://example.com/privacyInformationUrl/",
+ "informationUrl": "https://example.com/informationUrl/",
+ "owner": "Owner value",
+ "developer": "Developer value",
+ "notes": "Notes value",
+ "publishingState": "processing",
+ "channel": "beta",
+ "displayLanguageLocale": "Display Language Locale value"
+}
+```
+
+### Response
+Here is an example of the response. Note: The response object shown here may be truncated for brevity. All of the properties will be returned from an actual call.
+``` http
+HTTP/1.1 201 Created
+Content-Type: application/json
+Content-Length: 843
+
+{
+ "@odata.type": "#microsoft.graph.windowsMicrosoftEdgeApp",
+ "id": "a4d4a316-a316-a4d4-16a3-d4a416a3d4a4",
+ "displayName": "Display Name value",
+ "description": "Description value",
+ "publisher": "Publisher value",
+ "largeIcon": {
+ "@odata.type": "microsoft.graph.mimeContent",
+ "type": "Type value",
+ "value": "dmFsdWU="
+ },
+ "createdDateTime": "2017-01-01T00:02:43.5775965-08:00",
+ "lastModifiedDateTime": "2017-01-01T00:00:35.1329464-08:00",
+ "isFeatured": true,
+ "privacyInformationUrl": "https://example.com/privacyInformationUrl/",
+ "informationUrl": "https://example.com/informationUrl/",
+ "owner": "Owner value",
+ "developer": "Developer value",
+ "notes": "Notes value",
+ "publishingState": "processing",
+ "channel": "beta",
+ "displayLanguageLocale": "Display Language Locale value"
+}
+```
v1.0 Intune Apps Windowsmicrosoftedgeapp Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-apps-windowsmicrosoftedgeapp-delete.md
+
+ Title: "Delete windowsMicrosoftEdgeApp"
+description: "Deletes a windowsMicrosoftEdgeApp."
+
+localization_priority: Normal
++
+# Delete windowsMicrosoftEdgeApp
+
+Namespace: microsoft.graph
+
+> **Note:** The Microsoft Graph API for Intune requires an [active Intune license](https://go.microsoft.com/fwlink/?linkid=839381) for the tenant.
+
+Deletes a [windowsMicrosoftEdgeApp](../resources/intune-apps-windowsmicrosoftedgeapp.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)|DeviceManagementApps.ReadWrite.All|
+|Delegated (personal Microsoft account)|Not supported.|
+|Application|DeviceManagementApps.ReadWrite.All|
+
+## HTTP Request
+<!-- {
+ "blockType": "ignored"
+}
+-->
+``` http
+DELETE /deviceAppManagement/mobileApps/{mobileAppId}
+```
+
+## Request headers
+|Header|Value|
+|:|:|
+|Authorization|Bearer &lt;token&gt; Required.|
+|Accept|application/json|
+
+## Request body
+Do not supply a request body for this method.
+
+## Response
+If successful, this method returns a `204 No Content` response code.
+
+## Example
+
+### Request
+Here is an example of the request.
+``` http
+DELETE https://graph.microsoft.com/v1.0/deviceAppManagement/mobileApps/{mobileAppId}
+```
+
+### Response
+Here is an example of the response. Note: The response object shown here may be truncated for brevity. All of the properties will be returned from an actual call.
+``` http
+HTTP/1.1 204 No Content
+```
v1.0 Intune Apps Windowsmicrosoftedgeapp Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-apps-windowsmicrosoftedgeapp-get.md
+
+ Title: "Get windowsMicrosoftEdgeApp"
+description: "Read properties and relationships of the windowsMicrosoftEdgeApp object."
+
+localization_priority: Normal
++
+# Get windowsMicrosoftEdgeApp
+
+Namespace: microsoft.graph
+
+> **Note:** The Microsoft Graph API for Intune requires an [active Intune license](https://go.microsoft.com/fwlink/?linkid=839381) for the tenant.
+
+Read properties and relationships of the [windowsMicrosoftEdgeApp](../resources/intune-apps-windowsmicrosoftedgeapp.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)|DeviceManagementApps.Read.All, DeviceManagementApps.ReadWrite.All|
+|Delegated (personal Microsoft account)|Not supported.|
+|Application|DeviceManagementApps.Read.All, DeviceManagementApps.ReadWrite.All|
+
+## HTTP Request
+<!-- {
+ "blockType": "ignored"
+}
+-->
+``` http
+GET /deviceAppManagement/mobileApps/{mobileAppId}
+```
+
+## Optional query parameters
+This method supports the [OData Query Parameters](/graph/query-parameters) to help customize the response.
+
+## Request headers
+|Header|Value|
+|:|:|
+|Authorization|Bearer &lt;token&gt; Required.|
+|Accept|application/json|
+
+## Request body
+Do not supply a request body for this method.
+
+## Response
+If successful, this method returns a `200 OK` response code and [windowsMicrosoftEdgeApp](../resources/intune-apps-windowsmicrosoftedgeapp.md) object in the response body.
+
+## Example
+
+### Request
+Here is an example of the request.
+``` http
+GET https://graph.microsoft.com/v1.0/deviceAppManagement/mobileApps/{mobileAppId}
+```
+
+### Response
+Here is an example of the response. Note: The response object shown here may be truncated for brevity. All of the properties will be returned from an actual call.
+``` http
+HTTP/1.1 200 OK
+Content-Type: application/json
+Content-Length: 904
+
+{
+ "value": {
+ "@odata.type": "#microsoft.graph.windowsMicrosoftEdgeApp",
+ "id": "a4d4a316-a316-a4d4-16a3-d4a416a3d4a4",
+ "displayName": "Display Name value",
+ "description": "Description value",
+ "publisher": "Publisher value",
+ "largeIcon": {
+ "@odata.type": "microsoft.graph.mimeContent",
+ "type": "Type value",
+ "value": "dmFsdWU="
+ },
+ "createdDateTime": "2017-01-01T00:02:43.5775965-08:00",
+ "lastModifiedDateTime": "2017-01-01T00:00:35.1329464-08:00",
+ "isFeatured": true,
+ "privacyInformationUrl": "https://example.com/privacyInformationUrl/",
+ "informationUrl": "https://example.com/informationUrl/",
+ "owner": "Owner value",
+ "developer": "Developer value",
+ "notes": "Notes value",
+ "publishingState": "processing",
+ "channel": "beta",
+ "displayLanguageLocale": "Display Language Locale value"
+ }
+}
+```
v1.0 Intune Apps Windowsmicrosoftedgeapp List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-apps-windowsmicrosoftedgeapp-list.md
+
+ Title: "List windowsMicrosoftEdgeApps"
+description: "List properties and relationships of the windowsMicrosoftEdgeApp objects."
+
+localization_priority: Normal
++
+# List windowsMicrosoftEdgeApps
+
+Namespace: microsoft.graph
+
+> **Note:** The Microsoft Graph API for Intune requires an [active Intune license](https://go.microsoft.com/fwlink/?linkid=839381) for the tenant.
+
+List properties and relationships of the [windowsMicrosoftEdgeApp](../resources/intune-apps-windowsmicrosoftedgeapp.md) objects.
+
+## Permissions
+One of the following permissions is required to 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)|DeviceManagementApps.Read.All, DeviceManagementApps.ReadWrite.All|
+|Delegated (personal Microsoft account)|Not supported.|
+|Application|DeviceManagementApps.Read.All, DeviceManagementApps.ReadWrite.All|
+
+## HTTP Request
+<!-- {
+ "blockType": "ignored"
+}
+-->
+``` http
+GET /deviceAppManagement/mobileApps
+```
+
+## Request headers
+|Header|Value|
+|:|:|
+|Authorization|Bearer &lt;token&gt; Required.|
+|Accept|application/json|
+
+## 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 [windowsMicrosoftEdgeApp](../resources/intune-apps-windowsmicrosoftedgeapp.md) objects in the response body.
+
+## Example
+
+### Request
+Here is an example of the request.
+``` http
+GET https://graph.microsoft.com/v1.0/deviceAppManagement/mobileApps
+```
+
+### Response
+Here is an example of the response. Note: The response object shown here may be truncated for brevity. All of the properties will be returned from an actual call.
+``` http
+HTTP/1.1 200 OK
+Content-Type: application/json
+Content-Length: 960
+
+{
+ "value": [
+ {
+ "@odata.type": "#microsoft.graph.windowsMicrosoftEdgeApp",
+ "id": "a4d4a316-a316-a4d4-16a3-d4a416a3d4a4",
+ "displayName": "Display Name value",
+ "description": "Description value",
+ "publisher": "Publisher value",
+ "largeIcon": {
+ "@odata.type": "microsoft.graph.mimeContent",
+ "type": "Type value",
+ "value": "dmFsdWU="
+ },
+ "createdDateTime": "2017-01-01T00:02:43.5775965-08:00",
+ "lastModifiedDateTime": "2017-01-01T00:00:35.1329464-08:00",
+ "isFeatured": true,
+ "privacyInformationUrl": "https://example.com/privacyInformationUrl/",
+ "informationUrl": "https://example.com/informationUrl/",
+ "owner": "Owner value",
+ "developer": "Developer value",
+ "notes": "Notes value",
+ "publishingState": "processing",
+ "channel": "beta",
+ "displayLanguageLocale": "Display Language Locale value"
+ }
+ ]
+}
+```
v1.0 Intune Apps Windowsmicrosoftedgeapp Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-apps-windowsmicrosoftedgeapp-update.md
+
+ Title: "Update windowsMicrosoftEdgeApp"
+description: "Update the properties of a windowsMicrosoftEdgeApp object."
+
+localization_priority: Normal
++
+# Update windowsMicrosoftEdgeApp
+
+Namespace: microsoft.graph
+
+> **Note:** The Microsoft Graph API for Intune requires an [active Intune license](https://go.microsoft.com/fwlink/?linkid=839381) for the tenant.
+
+Update the properties of a [windowsMicrosoftEdgeApp](../resources/intune-apps-windowsmicrosoftedgeapp.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)|DeviceManagementApps.ReadWrite.All|
+|Delegated (personal Microsoft account)|Not supported.|
+|Application|DeviceManagementApps.ReadWrite.All|
+
+## HTTP Request
+<!-- {
+ "blockType": "ignored"
+}
+-->
+``` http
+PATCH /deviceAppManagement/mobileApps/{mobileAppId}
+```
+
+## Request headers
+|Header|Value|
+|:|:|
+|Authorization|Bearer &lt;token&gt; Required.|
+|Accept|application/json|
+
+## Request body
+In the request body, supply a JSON representation for the [windowsMicrosoftEdgeApp](../resources/intune-apps-windowsmicrosoftedgeapp.md) object.
+
+The following table shows the properties that are required when you create the [windowsMicrosoftEdgeApp](../resources/intune-apps-windowsmicrosoftedgeapp.md).
+
+|Property|Type|Description|
+|:|:|:|
+|id|String|Key of the entity. Inherited from [mobileApp](../resources/intune-apps-mobileapp.md)|
+|displayName|String|The admin provided or imported title of the app. Inherited from [mobileApp](../resources/intune-apps-mobileapp.md)|
+|description|String|The description of the app. Inherited from [mobileApp](../resources/intune-apps-mobileapp.md)|
+|publisher|String|The publisher of the app. Inherited from [mobileApp](../resources/intune-apps-mobileapp.md)|
+|largeIcon|[mimeContent](../resources/intune-shared-mimecontent.md)|The large icon, to be displayed in the app details and used for upload of the icon. Inherited from [mobileApp](../resources/intune-apps-mobileapp.md)|
+|createdDateTime|DateTimeOffset|The date and time the app was created. Inherited from [mobileApp](../resources/intune-apps-mobileapp.md)|
+|lastModifiedDateTime|DateTimeOffset|The date and time the app was last modified. Inherited from [mobileApp](../resources/intune-apps-mobileapp.md)|
+|isFeatured|Boolean|The value indicating whether the app is marked as featured by the admin. Inherited from [mobileApp](../resources/intune-apps-mobileapp.md)|
+|privacyInformationUrl|String|The privacy statement Url. Inherited from [mobileApp](../resources/intune-apps-mobileapp.md)|
+|informationUrl|String|The more information Url. Inherited from [mobileApp](../resources/intune-apps-mobileapp.md)|
+|owner|String|The owner of the app. Inherited from [mobileApp](../resources/intune-apps-mobileapp.md)|
+|developer|String|The developer of the app. Inherited from [mobileApp](../resources/intune-apps-mobileapp.md)|
+|notes|String|Notes for the app. Inherited from [mobileApp](../resources/intune-apps-mobileapp.md)|
+|publishingState|[mobileAppPublishingState](../resources/intune-apps-mobileapppublishingstate.md)|The publishing state for the app. The app cannot be assigned unless the app is published. Inherited from [mobileApp](../resources/intune-apps-mobileapp.md). Possible values are: `notPublished`, `processing`, `published`.|
+|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.|
+++
+## Response
+If successful, this method returns a `200 OK` response code and an updated [windowsMicrosoftEdgeApp](../resources/intune-apps-windowsmicrosoftedgeapp.md) object in the response body.
+
+## Example
+
+### Request
+Here is an example of the request.
+``` http
+PATCH https://graph.microsoft.com/v1.0/deviceAppManagement/mobileApps/{mobileAppId}
+Content-type: application/json
+Content-length: 671
+
+{
+ "@odata.type": "#microsoft.graph.windowsMicrosoftEdgeApp",
+ "displayName": "Display Name value",
+ "description": "Description value",
+ "publisher": "Publisher value",
+ "largeIcon": {
+ "@odata.type": "microsoft.graph.mimeContent",
+ "type": "Type value",
+ "value": "dmFsdWU="
+ },
+ "isFeatured": true,
+ "privacyInformationUrl": "https://example.com/privacyInformationUrl/",
+ "informationUrl": "https://example.com/informationUrl/",
+ "owner": "Owner value",
+ "developer": "Developer value",
+ "notes": "Notes value",
+ "publishingState": "processing",
+ "channel": "beta",
+ "displayLanguageLocale": "Display Language Locale value"
+}
+```
+
+### Response
+Here is an example of the response. Note: The response object shown here may be truncated for brevity. All of the properties will be returned from an actual call.
+``` http
+HTTP/1.1 200 OK
+Content-Type: application/json
+Content-Length: 843
+
+{
+ "@odata.type": "#microsoft.graph.windowsMicrosoftEdgeApp",
+ "id": "a4d4a316-a316-a4d4-16a3-d4a416a3d4a4",
+ "displayName": "Display Name value",
+ "description": "Description value",
+ "publisher": "Publisher value",
+ "largeIcon": {
+ "@odata.type": "microsoft.graph.mimeContent",
+ "type": "Type value",
+ "value": "dmFsdWU="
+ },
+ "createdDateTime": "2017-01-01T00:02:43.5775965-08:00",
+ "lastModifiedDateTime": "2017-01-01T00:00:35.1329464-08:00",
+ "isFeatured": true,
+ "privacyInformationUrl": "https://example.com/privacyInformationUrl/",
+ "informationUrl": "https://example.com/informationUrl/",
+ "owner": "Owner value",
+ "developer": "Developer value",
+ "notes": "Notes value",
+ "publishingState": "processing",
+ "channel": "beta",
+ "displayLanguageLocale": "Display Language Locale value"
+}
+```
v1.0 Intune Apps Windowsmobilemsi Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 1027
"ignoreVersionDetection": true } ```-----
v1.0 Intune Apps Windowsmobilemsi Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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/v1.0/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: 1098
} } ```-----
v1.0 Intune Apps Windowsmobilemsi List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 1164
] } ```-----
v1.0 Intune Apps Windowsmobilemsi Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 1027
"ignoreVersionDetection": true } ```-----
v1.0 Intune Apps Windowsuniversalappx Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 1361
"identityVersion": "Identity Version value" } ```-----
v1.0 Intune Apps Windowsuniversalappx Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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/v1.0/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: 1450
} } ```-----
v1.0 Intune Apps Windowsuniversalappx List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 1534
] } ```-----
v1.0 Intune Apps Windowsuniversalappx Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 1361
"identityVersion": "Identity Version value" } ```-----
v1.0 Intune Apps Windowsuniversalappxcontainedapp Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-apps-windowsuniversalappxcontainedapp-create.md
+
+ Title: "Create windowsUniversalAppXContainedApp"
+description: "Create a new windowsUniversalAppXContainedApp object."
+
+localization_priority: Normal
++
+# Create windowsUniversalAppXContainedApp
+
+Namespace: microsoft.graph
+
+> **Note:** The Microsoft Graph API for Intune requires an [active Intune license](https://go.microsoft.com/fwlink/?linkid=839381) for the tenant.
+
+Create a new [windowsUniversalAppXContainedApp](../resources/intune-apps-windowsuniversalappxcontainedapp.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)|DeviceManagementApps.ReadWrite.All|
+|Delegated (personal Microsoft account)|Not supported.|
+|Application|DeviceManagementApps.ReadWrite.All|
+
+## HTTP Request
+<!-- {
+ "blockType": "ignored"
+}
+-->
+``` http
+POST /deviceAppManagement/mobileApps/{mobileAppId}/contentVersions/{mobileAppContentId}/containedApps
+POST /deviceAppManagement/mobileApps/{mobileAppId}/microsoft.graph.windowsUniversalAppX/committedContainedApps
+```
+
+## Request headers
+|Header|Value|
+|:|:|
+|Authorization|Bearer &lt;token&gt; Required.|
+|Accept|application/json|
+
+## Request body
+In the request body, supply a JSON representation for the windowsUniversalAppXContainedApp object.
+
+The following table shows the properties that are required when you create the windowsUniversalAppXContainedApp.
+
+|Property|Type|Description|
+|:|:|:|
+|id|String|Key of the entity. Inherited from [mobileContainedApp](../resources/intune-apps-mobilecontainedapp.md)|
+|appUserModelId|String|The app user model ID of the contained app of a WindowsUniversalAppX app.|
+++
+## Response
+If successful, this method returns a `201 Created` response code and a [windowsUniversalAppXContainedApp](../resources/intune-apps-windowsuniversalappxcontainedapp.md) object in the response body.
+
+## Example
+
+### Request
+Here is an example of the request.
+``` http
+POST https://graph.microsoft.com/v1.0/deviceAppManagement/mobileApps/{mobileAppId}/contentVersions/{mobileAppContentId}/containedApps
+Content-type: application/json
+Content-length: 122
+
+{
+ "@odata.type": "#microsoft.graph.windowsUniversalAppXContainedApp",
+ "appUserModelId": "App User Model Id value"
+}
+```
+
+### Response
+Here is an example of the response. Note: The response object shown here may be truncated for brevity. All of the properties will be returned from an actual call.
+``` http
+HTTP/1.1 201 Created
+Content-Type: application/json
+Content-Length: 171
+
+{
+ "@odata.type": "#microsoft.graph.windowsUniversalAppXContainedApp",
+ "id": "2d03284a-284a-2d03-4a28-032d4a28032d",
+ "appUserModelId": "App User Model Id value"
+}
+```
v1.0 Intune Apps Windowsuniversalappxcontainedapp Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-apps-windowsuniversalappxcontainedapp-delete.md
+
+ Title: "Delete windowsUniversalAppXContainedApp"
+description: "Deletes a windowsUniversalAppXContainedApp."
+
+localization_priority: Normal
++
+# Delete windowsUniversalAppXContainedApp
+
+Namespace: microsoft.graph
+
+> **Note:** The Microsoft Graph API for Intune requires an [active Intune license](https://go.microsoft.com/fwlink/?linkid=839381) for the tenant.
+
+Deletes a [windowsUniversalAppXContainedApp](../resources/intune-apps-windowsuniversalappxcontainedapp.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)|DeviceManagementApps.ReadWrite.All|
+|Delegated (personal Microsoft account)|Not supported.|
+|Application|DeviceManagementApps.ReadWrite.All|
+
+## HTTP Request
+<!-- {
+ "blockType": "ignored"
+}
+-->
+``` http
+DELETE /deviceAppManagement/mobileApps/{mobileAppId}/contentVersions/{mobileAppContentId}/containedApps/{mobileContainedAppId}
+DELETE /deviceAppManagement/mobileApps/{mobileAppId}/microsoft.graph.windowsUniversalAppX/committedContainedApps/{mobileContainedAppId}
+```
+
+## Request headers
+|Header|Value|
+|:|:|
+|Authorization|Bearer &lt;token&gt; Required.|
+|Accept|application/json|
+
+## Request body
+Do not supply a request body for this method.
+
+## Response
+If successful, this method returns a `204 No Content` response code.
+
+## Example
+
+### Request
+Here is an example of the request.
+``` http
+DELETE https://graph.microsoft.com/v1.0/deviceAppManagement/mobileApps/{mobileAppId}/contentVersions/{mobileAppContentId}/containedApps/{mobileContainedAppId}
+```
+
+### Response
+Here is an example of the response. Note: The response object shown here may be truncated for brevity. All of the properties will be returned from an actual call.
+``` http
+HTTP/1.1 204 No Content
+```
v1.0 Intune Apps Windowsuniversalappxcontainedapp Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-apps-windowsuniversalappxcontainedapp-get.md
+
+ Title: "Get windowsUniversalAppXContainedApp"
+description: "Read properties and relationships of the windowsUniversalAppXContainedApp object."
+
+localization_priority: Normal
++
+# Get windowsUniversalAppXContainedApp
+
+Namespace: microsoft.graph
+
+> **Note:** The Microsoft Graph API for Intune requires an [active Intune license](https://go.microsoft.com/fwlink/?linkid=839381) for the tenant.
+
+Read properties and relationships of the [windowsUniversalAppXContainedApp](../resources/intune-apps-windowsuniversalappxcontainedapp.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)|DeviceManagementApps.Read.All, DeviceManagementApps.ReadWrite.All|
+|Delegated (personal Microsoft account)|Not supported.|
+|Application|DeviceManagementApps.Read.All, DeviceManagementApps.ReadWrite.All|
+
+## HTTP Request
+<!-- {
+ "blockType": "ignored"
+}
+-->
+``` http
+GET /deviceAppManagement/mobileApps/{mobileAppId}/contentVersions/{mobileAppContentId}/containedApps/{mobileContainedAppId}
+GET /deviceAppManagement/mobileApps/{mobileAppId}/microsoft.graph.windowsUniversalAppX/committedContainedApps/{mobileContainedAppId}
+```
+
+## Optional query parameters
+This method supports the [OData Query Parameters](/graph/query-parameters) to help customize the response.
+
+## Request headers
+|Header|Value|
+|:|:|
+|Authorization|Bearer &lt;token&gt; Required.|
+|Accept|application/json|
+
+## Request body
+Do not supply a request body for this method.
+
+## Response
+If successful, this method returns a `200 OK` response code and [windowsUniversalAppXContainedApp](../resources/intune-apps-windowsuniversalappxcontainedapp.md) object in the response body.
+
+## Example
+
+### Request
+Here is an example of the request.
+``` http
+GET https://graph.microsoft.com/v1.0/deviceAppManagement/mobileApps/{mobileAppId}/contentVersions/{mobileAppContentId}/containedApps/{mobileContainedAppId}
+```
+
+### Response
+Here is an example of the response. Note: The response object shown here may be truncated for brevity. All of the properties will be returned from an actual call.
+``` http
+HTTP/1.1 200 OK
+Content-Type: application/json
+Content-Length: 196
+
+{
+ "value": {
+ "@odata.type": "#microsoft.graph.windowsUniversalAppXContainedApp",
+ "id": "2d03284a-284a-2d03-4a28-032d4a28032d",
+ "appUserModelId": "App User Model Id value"
+ }
+}
+```
v1.0 Intune Apps Windowsuniversalappxcontainedapp List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-apps-windowsuniversalappxcontainedapp-list.md
+
+ Title: "List windowsUniversalAppXContainedApps"
+description: "List properties and relationships of the windowsUniversalAppXContainedApp objects."
+
+localization_priority: Normal
++
+# List windowsUniversalAppXContainedApps
+
+Namespace: microsoft.graph
+
+> **Note:** The Microsoft Graph API for Intune requires an [active Intune license](https://go.microsoft.com/fwlink/?linkid=839381) for the tenant.
+
+List properties and relationships of the [windowsUniversalAppXContainedApp](../resources/intune-apps-windowsuniversalappxcontainedapp.md) objects.
+
+## Permissions
+One of the following permissions is required to 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)|DeviceManagementApps.Read.All, DeviceManagementApps.ReadWrite.All|
+|Delegated (personal Microsoft account)|Not supported.|
+|Application|DeviceManagementApps.Read.All, DeviceManagementApps.ReadWrite.All|
+
+## HTTP Request
+<!-- {
+ "blockType": "ignored"
+}
+-->
+``` http
+GET /deviceAppManagement/mobileApps/{mobileAppId}/contentVersions/{mobileAppContentId}/containedApps
+GET /deviceAppManagement/mobileApps/{mobileAppId}/microsoft.graph.windowsUniversalAppX/committedContainedApps
+```
+
+## Request headers
+|Header|Value|
+|:|:|
+|Authorization|Bearer &lt;token&gt; Required.|
+|Accept|application/json|
+
+## 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 [windowsUniversalAppXContainedApp](../resources/intune-apps-windowsuniversalappxcontainedapp.md) objects in the response body.
+
+## Example
+
+### Request
+Here is an example of the request.
+``` http
+GET https://graph.microsoft.com/v1.0/deviceAppManagement/mobileApps/{mobileAppId}/contentVersions/{mobileAppContentId}/containedApps
+```
+
+### Response
+Here is an example of the response. Note: The response object shown here may be truncated for brevity. All of the properties will be returned from an actual call.
+``` http
+HTTP/1.1 200 OK
+Content-Type: application/json
+Content-Length: 216
+
+{
+ "value": [
+ {
+ "@odata.type": "#microsoft.graph.windowsUniversalAppXContainedApp",
+ "id": "2d03284a-284a-2d03-4a28-032d4a28032d",
+ "appUserModelId": "App User Model Id value"
+ }
+ ]
+}
+```
v1.0 Intune Apps Windowsuniversalappxcontainedapp Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-apps-windowsuniversalappxcontainedapp-update.md
+
+ Title: "Update windowsUniversalAppXContainedApp"
+description: "Update the properties of a windowsUniversalAppXContainedApp object."
+
+localization_priority: Normal
++
+# Update windowsUniversalAppXContainedApp
+
+Namespace: microsoft.graph
+
+> **Note:** The Microsoft Graph API for Intune requires an [active Intune license](https://go.microsoft.com/fwlink/?linkid=839381) for the tenant.
+
+Update the properties of a [windowsUniversalAppXContainedApp](../resources/intune-apps-windowsuniversalappxcontainedapp.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)|DeviceManagementApps.ReadWrite.All|
+|Delegated (personal Microsoft account)|Not supported.|
+|Application|DeviceManagementApps.ReadWrite.All|
+
+## HTTP Request
+<!-- {
+ "blockType": "ignored"
+}
+-->
+``` http
+PATCH /deviceAppManagement/mobileApps/{mobileAppId}/contentVersions/{mobileAppContentId}/containedApps/{mobileContainedAppId}
+PATCH /deviceAppManagement/mobileApps/{mobileAppId}/microsoft.graph.windowsUniversalAppX/committedContainedApps/{mobileContainedAppId}
+```
+
+## Request headers
+|Header|Value|
+|:|:|
+|Authorization|Bearer &lt;token&gt; Required.|
+|Accept|application/json|
+
+## Request body
+In the request body, supply a JSON representation for the [windowsUniversalAppXContainedApp](../resources/intune-apps-windowsuniversalappxcontainedapp.md) object.
+
+The following table shows the properties that are required when you create the [windowsUniversalAppXContainedApp](../resources/intune-apps-windowsuniversalappxcontainedapp.md).
+
+|Property|Type|Description|
+|:|:|:|
+|id|String|Key of the entity. Inherited from [mobileContainedApp](../resources/intune-apps-mobilecontainedapp.md)|
+|appUserModelId|String|The app user model ID of the contained app of a WindowsUniversalAppX app.|
+++
+## Response
+If successful, this method returns a `200 OK` response code and an updated [windowsUniversalAppXContainedApp](../resources/intune-apps-windowsuniversalappxcontainedapp.md) object in the response body.
+
+## Example
+
+### Request
+Here is an example of the request.
+``` http
+PATCH https://graph.microsoft.com/v1.0/deviceAppManagement/mobileApps/{mobileAppId}/contentVersions/{mobileAppContentId}/containedApps/{mobileContainedAppId}
+Content-type: application/json
+Content-length: 122
+
+{
+ "@odata.type": "#microsoft.graph.windowsUniversalAppXContainedApp",
+ "appUserModelId": "App User Model Id value"
+}
+```
+
+### Response
+Here is an example of the response. Note: The response object shown here may be truncated for brevity. All of the properties will be returned from an actual call.
+``` http
+HTTP/1.1 200 OK
+Content-Type: application/json
+Content-Length: 171
+
+{
+ "@odata.type": "#microsoft.graph.windowsUniversalAppXContainedApp",
+ "id": "2d03284a-284a-2d03-4a28-032d4a28032d",
+ "appUserModelId": "App User Model Id value"
+}
+```
v1.0 Intune Auditing Auditevent Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 1545
"category": "Category value" } ```-----
v1.0 Intune Auditing Auditevent Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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/v1.0/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: 1648
} } ```-----
v1.0 Intune Auditing Auditevent Getauditactivitytypes https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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/v1.0/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/v1.0/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: 1746
] } ```-----
v1.0 Intune Auditing Auditevent Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 1545
"category": "Category value" } ```-----
v1.0 Intune Auditing Devicemanagement Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-auditing-devicemanagement-get.md
Title: "Get deviceManagement" description: "Read properties and relationships of the deviceManagement object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagement](../resources/intune-auditing-devicemanagement.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 Auditing Devicemanagement Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-auditing-devicemanagement-update.md
Title: "Update deviceManagement" description: "Update the properties of a deviceManagement object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagement](../resources/intune-auditing-devicemanagement.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": "0b283420-3420-0b28-2034-280b2034280b" } ```-----
v1.0 Intune Books Deviceappmanagement Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-books-deviceappmanagement-get.md
Title: "Get deviceAppManagement" description: "Read properties and relationships of the deviceAppManagement object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceAppManagement](../resources/intune-books-deviceappmanagement.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: 133
} } ```-----
v1.0 Intune Books Deviceappmanagement Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-books-deviceappmanagement-update.md
Title: "Update deviceAppManagement" description: "Update the properties of a deviceAppManagement object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceAppManagement](../resources/intune-books-deviceappmanagement.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: 110
"id": "bbb801a3-01a3-bbb8-a301-b8bba301b8bb" } ```-----
v1.0 Intune Books Deviceinstallstate Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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/v1.0/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/v1.0/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/v1.0/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/v1.0/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/v1.0/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/v1.0/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/v1.0/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: 964
"usedLicenseCount": 0 } ```-----
v1.0 Intune Books Iosvppebook Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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/v1.0/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: 1033
} } ```-----
v1.0 Intune Books Iosvppebook List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 1097
] } ```-----
v1.0 Intune Books Iosvppebook Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 964
"usedLicenseCount": 0 } ```-----
v1.0 Intune Books Iosvppebookassignment Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 242
"installIntent": "required" } ```-----
v1.0 Intune Books Iosvppebookassignment Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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/v1.0/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: 273
} } ```-----
v1.0 Intune Books Iosvppebookassignment List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 299
] } ```-----
v1.0 Intune Books Iosvppebookassignment Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 242
"installIntent": "required" } ```-----
v1.0 Intune Books Managedebook Assign https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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/v1.0/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/v1.0/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/v1.0/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: 237
"installIntent": "required" } ```-----
v1.0 Intune Books Managedebookassignment Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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/v1.0/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: 268
} } ```-----
v1.0 Intune Books Managedebookassignment List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 294
] } ```-----
v1.0 Intune Books Managedebookassignment Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 237
"installIntent": "required" } ```-----
v1.0 Intune Books Userinstallstatesummary Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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/v1.0/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/v1.0/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/v1.0/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/v1.0/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 Companyterms Devicemanagement Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-companyterms-devicemanagement-get.md
Title: "Get deviceManagement" description: "Read properties and relationships of the deviceManagement object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagement](../resources/intune-companyterms-devicemanagement.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 Companyterms Devicemanagement Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-companyterms-devicemanagement-update.md
Title: "Update deviceManagement" description: "Update the properties of a deviceManagement object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagement](../resources/intune-companyterms-devicemanagement.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": "0b283420-3420-0b28-2034-280b2034280b" } ```-----
v1.0 Intune Companyterms Termsandconditions Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 445
"version": 7 } ```-----
v1.0 Intune Companyterms Termsandconditions Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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/v1.0/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: 484
} } ```-----
v1.0 Intune Companyterms Termsandconditions List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 518
] } ```-----
v1.0 Intune Companyterms Termsandconditions Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 445
"version": 7 } ```-----
v1.0 Intune Companyterms Termsandconditionsacceptancestatus Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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/v1.0/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/v1.0/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/v1.0/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/v1.0/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/v1.0/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: 269
} } ```-----
v1.0 Intune Companyterms Termsandconditionsassignment Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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/v1.0/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: 300
} } ```-----
v1.0 Intune Companyterms Termsandconditionsassignment List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 326
] } ```-----
v1.0 Intune Companyterms Termsandconditionsassignment Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/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: 269
} } ```-----
v1.0 Intune Deviceconfig Androidcompliancepolicy Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-androidcompliancepolicy-create.md
Title: "Create androidCompliancePolicy" description: "Create a new androidCompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [androidCompliancePolicy](../resources/intune-deviceconfig-androidcompliancepolicy.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: 1331
"securityRequireCompanyPortalAppIntegrity": true } ```-----
v1.0 Intune Deviceconfig Androidcompliancepolicy Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-androidcompliancepolicy-delete.md
Title: "Delete androidCompliancePolicy" description: "Deletes a androidCompliancePolicy."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [androidCompliancePolicy](../resources/intune-deviceconfig-androidcompliancepolicy.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 Deviceconfig Androidcompliancepolicy Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-androidcompliancepolicy-get.md
Title: "Get androidCompliancePolicy" description: "Read properties and relationships of the androidCompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidCompliancePolicy](../resources/intune-deviceconfig-androidcompliancepolicy.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: 1406
} } ```-----
v1.0 Intune Deviceconfig Androidcompliancepolicy List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-androidcompliancepolicy-list.md
Title: "List androidCompliancePolicies" description: "List properties and relationships of the androidCompliancePolicy objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidCompliancePolicy](../resources/intune-deviceconfig-androidcompliancepolicy.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: 1476
] } ```-----
v1.0 Intune Deviceconfig Androidcompliancepolicy Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-androidcompliancepolicy-update.md
Title: "Update androidCompliancePolicy" description: "Update the properties of a androidCompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [androidCompliancePolicy](../resources/intune-deviceconfig-androidcompliancepolicy.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: 1331
"securityRequireCompanyPortalAppIntegrity": true } ```-----
v1.0 Intune Deviceconfig Androidcustomconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-androidcustomconfiguration-create.md
Title: "Create androidCustomConfiguration" description: "Create a new androidCustomConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [androidCustomConfiguration](../resources/intune-deviceconfig-androidcustomconfiguration.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 Deviceconfig Androidcustomconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-androidcustomconfiguration-delete.md
Title: "Delete androidCustomConfiguration" description: "Deletes a androidCustomConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [androidCustomConfiguration](../resources/intune-deviceconfig-androidcustomconfiguration.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 Deviceconfig Androidcustomconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-androidcustomconfiguration-get.md
Title: "Get androidCustomConfiguration" description: "Read properties and relationships of the androidCustomConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidCustomConfiguration](../resources/intune-deviceconfig-androidcustomconfiguration.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: 597
} } ```-----
v1.0 Intune Deviceconfig Androidcustomconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-androidcustomconfiguration-list.md
Title: "List androidCustomConfigurations" description: "List properties and relationships of the androidCustomConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidCustomConfiguration](../resources/intune-deviceconfig-androidcustomconfiguration.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: 641
] } ```-----
v1.0 Intune Deviceconfig Androidcustomconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-androidcustomconfiguration-update.md
Title: "Update androidCustomConfiguration" description: "Update the properties of a androidCustomConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [androidCustomConfiguration](../resources/intune-deviceconfig-androidcustomconfiguration.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 Deviceconfig Androidgeneraldeviceconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-androidgeneraldeviceconfiguration-create.md
Title: "Create androidGeneralDeviceConfiguration" description: "Create a new androidGeneralDeviceConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [androidGeneralDeviceConfiguration](../resources/intune-deviceconfig-androidgeneraldeviceconfiguration.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: 3205
"securityRequireVerifyApps": true } ```-----
v1.0 Intune Deviceconfig Androidgeneraldeviceconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-androidgeneraldeviceconfiguration-delete.md
Title: "Delete androidGeneralDeviceConfiguration" description: "Deletes a androidGeneralDeviceConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [androidGeneralDeviceConfiguration](../resources/intune-deviceconfig-androidgeneraldeviceconfiguration.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 Deviceconfig Androidgeneraldeviceconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-androidgeneraldeviceconfiguration-get.md
Title: "Get androidGeneralDeviceConfiguration" description: "Read properties and relationships of the androidGeneralDeviceConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidGeneralDeviceConfiguration](../resources/intune-deviceconfig-androidgeneraldeviceconfiguration.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: 3414
} } ```-----
v1.0 Intune Deviceconfig Androidgeneraldeviceconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-androidgeneraldeviceconfiguration-list.md
Title: "List androidGeneralDeviceConfigurations" description: "List properties and relationships of the androidGeneralDeviceConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidGeneralDeviceConfiguration](../resources/intune-deviceconfig-androidgeneraldeviceconfiguration.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: 3618
] } ```-----
v1.0 Intune Deviceconfig Androidgeneraldeviceconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-androidgeneraldeviceconfiguration-update.md
Title: "Update androidGeneralDeviceConfiguration" description: "Update the properties of a androidGeneralDeviceConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [androidGeneralDeviceConfiguration](../resources/intune-deviceconfig-androidgeneraldeviceconfiguration.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: 3205
"securityRequireVerifyApps": true } ```-----
v1.0 Intune Deviceconfig Androidworkprofilecompliancepolicy Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-androidworkprofilecompliancepolicy-create.md
Title: "Create androidWorkProfileCompliancePolicy" description: "Create a new androidWorkProfileCompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [androidWorkProfileCompliancePolicy](../resources/intune-deviceconfig-androidworkprofilecompliancepolicy.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: 1342
"securityRequireCompanyPortalAppIntegrity": true } ```-----
v1.0 Intune Deviceconfig Androidworkprofilecompliancepolicy Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-androidworkprofilecompliancepolicy-delete.md
Title: "Delete androidWorkProfileCompliancePolicy" description: "Deletes a androidWorkProfileCompliancePolicy."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [androidWorkProfileCompliancePolicy](../resources/intune-deviceconfig-androidworkprofilecompliancepolicy.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 Deviceconfig Androidworkprofilecompliancepolicy Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-androidworkprofilecompliancepolicy-get.md
Title: "Get androidWorkProfileCompliancePolicy" description: "Read properties and relationships of the androidWorkProfileCompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidWorkProfileCompliancePolicy](../resources/intune-deviceconfig-androidworkprofilecompliancepolicy.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: 1417
} } ```-----
v1.0 Intune Deviceconfig Androidworkprofilecompliancepolicy List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-androidworkprofilecompliancepolicy-list.md
Title: "List androidWorkProfileCompliancePolicies" description: "List properties and relationships of the androidWorkProfileCompliancePolicy objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidWorkProfileCompliancePolicy](../resources/intune-deviceconfig-androidworkprofilecompliancepolicy.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: 1487
] } ```-----
v1.0 Intune Deviceconfig Androidworkprofilecompliancepolicy Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-androidworkprofilecompliancepolicy-update.md
Title: "Update androidWorkProfileCompliancePolicy" description: "Update the properties of a androidWorkProfileCompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [androidWorkProfileCompliancePolicy](../resources/intune-deviceconfig-androidworkprofilecompliancepolicy.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: 1342
"securityRequireCompanyPortalAppIntegrity": true } ```-----
v1.0 Intune Deviceconfig Androidworkprofilecustomconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-androidworkprofilecustomconfiguration-create.md
Title: "Create androidWorkProfileCustomConfiguration" description: "Create a new androidWorkProfileCustomConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [androidWorkProfileCustomConfiguration](../resources/intune-deviceconfig-androidworkprofilecustomconfiguration.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: 559
] } ```-----
v1.0 Intune Deviceconfig Androidworkprofilecustomconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-androidworkprofilecustomconfiguration-delete.md
Title: "Delete androidWorkProfileCustomConfiguration" description: "Deletes a androidWorkProfileCustomConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [androidWorkProfileCustomConfiguration](../resources/intune-deviceconfig-androidworkprofilecustomconfiguration.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 Deviceconfig Androidworkprofilecustomconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-androidworkprofilecustomconfiguration-get.md
Title: "Get androidWorkProfileCustomConfiguration" description: "Read properties and relationships of the androidWorkProfileCustomConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidWorkProfileCustomConfiguration](../resources/intune-deviceconfig-androidworkprofilecustomconfiguration.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: 608
} } ```-----
v1.0 Intune Deviceconfig Androidworkprofilecustomconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-androidworkprofilecustomconfiguration-list.md
Title: "List androidWorkProfileCustomConfigurations" description: "List properties and relationships of the androidWorkProfileCustomConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidWorkProfileCustomConfiguration](../resources/intune-deviceconfig-androidworkprofilecustomconfiguration.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: 652
] } ```-----
v1.0 Intune Deviceconfig Androidworkprofilecustomconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-androidworkprofilecustomconfiguration-update.md
Title: "Update androidWorkProfileCustomConfiguration" description: "Update the properties of a androidWorkProfileCustomConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [androidWorkProfileCustomConfiguration](../resources/intune-deviceconfig-androidworkprofilecustomconfiguration.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: 559
] } ```-----
v1.0 Intune Deviceconfig Androidworkprofilegeneraldeviceconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-androidworkprofilegeneraldeviceconfiguration-create.md
Title: "Create androidWorkProfileGeneralDeviceConfiguration" description: "Create a new androidWorkProfileGeneralDeviceConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [androidWorkProfileGeneralDeviceConfiguration](../resources/intune-deviceconfig-androidworkprofilegeneraldeviceconfiguration.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: 2003
"securityRequireVerifyApps": true } ```-----
v1.0 Intune Deviceconfig Androidworkprofilegeneraldeviceconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-androidworkprofilegeneraldeviceconfiguration-delete.md
Title: "Delete androidWorkProfileGeneralDeviceConfiguration" description: "Deletes a androidWorkProfileGeneralDeviceConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [androidWorkProfileGeneralDeviceConfiguration](../resources/intune-deviceconfig-androidworkprofilegeneraldeviceconfiguration.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 Deviceconfig Androidworkprofilegeneraldeviceconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-androidworkprofilegeneraldeviceconfiguration-get.md
Title: "Get androidWorkProfileGeneralDeviceConfiguration" description: "Read properties and relationships of the androidWorkProfileGeneralDeviceConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidWorkProfileGeneralDeviceConfiguration](../resources/intune-deviceconfig-androidworkprofilegeneraldeviceconfiguration.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: 2104
} } ```-----
v1.0 Intune Deviceconfig Androidworkprofilegeneraldeviceconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-androidworkprofilegeneraldeviceconfiguration-list.md
Title: "List androidWorkProfileGeneralDeviceConfigurations" description: "List properties and relationships of the androidWorkProfileGeneralDeviceConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidWorkProfileGeneralDeviceConfiguration](../resources/intune-deviceconfig-androidworkprofilegeneraldeviceconfiguration.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: 2200
] } ```-----
v1.0 Intune Deviceconfig Androidworkprofilegeneraldeviceconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-androidworkprofilegeneraldeviceconfiguration-update.md
Title: "Update androidWorkProfileGeneralDeviceConfiguration" description: "Update the properties of a androidWorkProfileGeneralDeviceConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [androidWorkProfileGeneralDeviceConfiguration](../resources/intune-deviceconfig-androidworkprofilegeneraldeviceconfiguration.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: 2003
"securityRequireVerifyApps": true } ```-----
v1.0 Intune Deviceconfig Appledevicefeaturesconfigurationbase Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-appledevicefeaturesconfigurationbase-get.md
Title: "Get appleDeviceFeaturesConfigurationBase" description: "Read properties and relationships of the appleDeviceFeaturesConfigurationBase object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [appleDeviceFeaturesConfigurationBase](../resources/intune-deviceconfig-appledevicefeaturesconfigurationbase.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: 379
} } ```-----
v1.0 Intune Deviceconfig Appledevicefeaturesconfigurationbase List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-appledevicefeaturesconfigurationbase-list.md
Title: "List appleDeviceFeaturesConfigurationBases" description: "List properties and relationships of the appleDeviceFeaturesConfigurationBase objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [appleDeviceFeaturesConfigurationBase](../resources/intune-deviceconfig-appledevicefeaturesconfigurationbase.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: 407
] } ```-----
v1.0 Intune Deviceconfig Devicecomplianceactionitem Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-devicecomplianceactionitem-create.md
Title: "Create deviceComplianceActionItem" description: "Create a new deviceComplianceActionItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceComplianceActionItem](../resources/intune-deviceconfig-devicecomplianceactionitem.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 Deviceconfig Devicecomplianceactionitem Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-devicecomplianceactionitem-delete.md
Title: "Delete deviceComplianceActionItem" description: "Deletes a deviceComplianceActionItem."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceComplianceActionItem](../resources/intune-deviceconfig-devicecomplianceactionitem.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 Deviceconfig Devicecomplianceactionitem Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-devicecomplianceactionitem-get.md
Title: "Get deviceComplianceActionItem" description: "Read properties and relationships of the deviceComplianceActionItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceComplianceActionItem](../resources/intune-deviceconfig-devicecomplianceactionitem.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
} } ```-----
v1.0 Intune Deviceconfig Devicecomplianceactionitem List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-devicecomplianceactionitem-list.md
Title: "List deviceComplianceActionItems" description: "List properties and relationships of the deviceComplianceActionItem objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceComplianceActionItem](../resources/intune-deviceconfig-devicecomplianceactionitem.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: 385
] } ```-----
v1.0 Intune Deviceconfig Devicecomplianceactionitem Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-devicecomplianceactionitem-update.md
Title: "Update deviceComplianceActionItem" description: "Update the properties of a deviceComplianceActionItem object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceComplianceActionItem](../resources/intune-deviceconfig-devicecomplianceactionitem.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 Deviceconfig Devicecompliancedeviceoverview Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-devicecompliancedeviceoverview-get.md
Title: "Get deviceComplianceDeviceOverview" description: "Read properties and relationships of the deviceComplianceDeviceOverview object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceComplianceDeviceOverview](../resources/intune-deviceconfig-devicecompliancedeviceoverview.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: 367
} } ```-----
v1.0 Intune Deviceconfig Devicecompliancedeviceoverview Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-devicecompliancedeviceoverview-update.md
Title: "Update deviceComplianceDeviceOverview" description: "Update the properties of a deviceComplianceDeviceOverview object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceComplianceDeviceOverview](../resources/intune-deviceconfig-devicecompliancedeviceoverview.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: 330
"configurationVersion": 4 } ```-----
v1.0 Intune Deviceconfig Devicecompliancedevicestatus Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-devicecompliancedevicestatus-create.md
Title: "Create deviceComplianceDeviceStatus" description: "Create a new deviceComplianceDeviceStatus object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceComplianceDeviceStatus](../resources/intune-deviceconfig-devicecompliancedevicestatus.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: 475
"userPrincipalName": "User Principal Name value" } ```-----
v1.0 Intune Deviceconfig Devicecompliancedevicestatus Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-devicecompliancedevicestatus-delete.md
Title: "Delete deviceComplianceDeviceStatus" description: "Deletes a deviceComplianceDeviceStatus."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceComplianceDeviceStatus](../resources/intune-deviceconfig-devicecompliancedevicestatus.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 Deviceconfig Devicecompliancedevicestatus Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-devicecompliancedevicestatus-get.md
Title: "Get deviceComplianceDeviceStatus" description: "Read properties and relationships of the deviceComplianceDeviceStatus object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceComplianceDeviceStatus](../resources/intune-deviceconfig-devicecompliancedevicestatus.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
} } ```-----
v1.0 Intune Deviceconfig Devicecompliancedevicestatus List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-devicecompliancedevicestatus-list.md
Title: "List deviceComplianceDeviceStatuses" description: "List properties and relationships of the deviceComplianceDeviceStatus objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceComplianceDeviceStatus](../resources/intune-deviceconfig-devicecompliancedevicestatus.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: 544
] } ```-----
v1.0 Intune Deviceconfig Devicecompliancedevicestatus Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-devicecompliancedevicestatus-update.md
Title: "Update deviceComplianceDeviceStatus" description: "Update the properties of a deviceComplianceDeviceStatus object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceComplianceDeviceStatus](../resources/intune-deviceconfig-devicecompliancedevicestatus.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: 475
"userPrincipalName": "User Principal Name value" } ```-----
v1.0 Intune Deviceconfig Devicecompliancepolicy Assign https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-devicecompliancepolicy-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)|
Content-Length: 330
] } ```-----
v1.0 Intune Deviceconfig Devicecompliancepolicy Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-devicecompliancepolicy-get.md
Title: "Get deviceCompliancePolicy" description: "Read properties and relationships of the deviceCompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceCompliancePolicy](../resources/intune-deviceconfig-devicecompliancepolicy.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: 365
} } ```-----
v1.0 Intune Deviceconfig Devicecompliancepolicy List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-devicecompliancepolicy-list.md
Title: "List deviceCompliancePolicies" description: "List properties and relationships of the deviceCompliancePolicy objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceCompliancePolicy](../resources/intune-deviceconfig-devicecompliancepolicy.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: 393
] } ```-----
v1.0 Intune Deviceconfig Devicecompliancepolicy Scheduleactionsforrules https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-devicecompliancepolicy-scheduleactionsforrules.md
Title: "scheduleActionsForRules 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 Deviceconfig Devicecompliancepolicyassignment Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-devicecompliancepolicyassignment-create.md
Title: "Create deviceCompliancePolicyAssignment" description: "Create a new deviceCompliancePolicyAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceCompliancePolicyAssignment](../resources/intune-deviceconfig-devicecompliancepolicyassignment.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: 273
} } ```-----
v1.0 Intune Deviceconfig Devicecompliancepolicyassignment Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-devicecompliancepolicyassignment-delete.md
Title: "Delete deviceCompliancePolicyAssignment" description: "Deletes a deviceCompliancePolicyAssignment."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceCompliancePolicyAssignment](../resources/intune-deviceconfig-devicecompliancepolicyassignment.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 Deviceconfig Devicecompliancepolicyassignment Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-devicecompliancepolicyassignment-get.md
Title: "Get deviceCompliancePolicyAssignment" description: "Read properties and relationships of the deviceCompliancePolicyAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceCompliancePolicyAssignment](../resources/intune-deviceconfig-devicecompliancepolicyassignment.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: 304
} } ```-----
v1.0 Intune Deviceconfig Devicecompliancepolicyassignment List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-devicecompliancepolicyassignment-list.md
Title: "List deviceCompliancePolicyAssignments" description: "List properties and relationships of the deviceCompliancePolicyAssignment objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceCompliancePolicyAssignment](../resources/intune-deviceconfig-devicecompliancepolicyassignment.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: 330
] } ```-----
v1.0 Intune Deviceconfig Devicecompliancepolicyassignment Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-devicecompliancepolicyassignment-update.md
Title: "Update deviceCompliancePolicyAssignment" description: "Update the properties of a deviceCompliancePolicyAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceCompliancePolicyAssignment](../resources/intune-deviceconfig-devicecompliancepolicyassignment.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: 273
} } ```-----
v1.0 Intune Deviceconfig Devicecompliancepolicydevicestatesummary Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-devicecompliancepolicydevicestatesummary-get.md
Title: "Get deviceCompliancePolicyDeviceStateSummary" description: "Read properties and relationships of the deviceCompliancePolicyDeviceStateSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceCompliancePolicyDeviceStateSummary](../resources/intune-deviceconfig-devicecompliancepolicydevicestatesummary.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 Deviceconfig Devicecompliancepolicydevicestatesummary Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-devicecompliancepolicydevicestatesummary-update.md
Title: "Update deviceCompliancePolicyDeviceStateSummary" description: "Update the properties of a deviceCompliancePolicyDeviceStateSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceCompliancePolicyDeviceStateSummary](../resources/intune-deviceconfig-devicecompliancepolicydevicestatesummary.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: 398
"conflictDeviceCount": 3 } ```-----
v1.0 Intune Deviceconfig Devicecompliancepolicysettingstatesummary Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-devicecompliancepolicysettingstatesummary-create.md
Title: "Create deviceCompliancePolicySettingStateSummary" description: "Create a new deviceCompliancePolicySettingStateSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceCompliancePolicySettingStateSummary](../resources/intune-deviceconfig-devicecompliancepolicysettingstatesummary.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: 440
"conflictDeviceCount": 3 } ```-----
v1.0 Intune Deviceconfig Devicecompliancepolicysettingstatesummary Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-devicecompliancepolicysettingstatesummary-delete.md
Title: "Delete deviceCompliancePolicySettingStateSummary" description: "Deletes a deviceCompliancePolicySettingStateSummary."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceCompliancePolicySettingStateSummary](../resources/intune-deviceconfig-devicecompliancepolicysettingstatesummary.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 Deviceconfig Devicecompliancepolicysettingstatesummary Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-devicecompliancepolicysettingstatesummary-get.md
Title: "Get deviceCompliancePolicySettingStateSummary" description: "Read properties and relationships of the deviceCompliancePolicySettingStateSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceCompliancePolicySettingStateSummary](../resources/intune-deviceconfig-devicecompliancepolicysettingstatesummary.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: 483
} } ```-----
v1.0 Intune Deviceconfig Devicecompliancepolicysettingstatesummary List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-devicecompliancepolicysettingstatesummary-list.md
Title: "List deviceCompliancePolicySettingStateSummaries" description: "List properties and relationships of the deviceCompliancePolicySettingStateSummary objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceCompliancePolicySettingStateSummary](../resources/intune-deviceconfig-devicecompliancepolicysettingstatesummary.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: 521
] } ```-----
v1.0 Intune Deviceconfig Devicecompliancepolicysettingstatesummary Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-devicecompliancepolicysettingstatesummary-update.md
Title: "Update deviceCompliancePolicySettingStateSummary" description: "Update the properties of a deviceCompliancePolicySettingStateSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceCompliancePolicySettingStateSummary](../resources/intune-deviceconfig-devicecompliancepolicysettingstatesummary.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: 440
"conflictDeviceCount": 3 } ```-----
v1.0 Intune Deviceconfig Devicecompliancescheduledactionforrule Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-devicecompliancescheduledactionforrule-create.md
Title: "Create deviceComplianceScheduledActionForRule" description: "Create a new deviceComplianceScheduledActionForRule object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceComplianceScheduledActionForRule](../resources/intune-deviceconfig-devicecompliancescheduledactionforrule.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: 163
"ruleName": "Rule Name value" } ```-----
v1.0 Intune Deviceconfig Devicecompliancescheduledactionforrule Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-devicecompliancescheduledactionforrule-delete.md
Title: "Delete deviceComplianceScheduledActionForRule" description: "Deletes a deviceComplianceScheduledActionForRule."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceComplianceScheduledActionForRule](../resources/intune-deviceconfig-devicecompliancescheduledactionforrule.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 Deviceconfig Devicecompliancescheduledactionforrule Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-devicecompliancescheduledactionforrule-get.md
Title: "Get deviceComplianceScheduledActionForRule" description: "Read properties and relationships of the deviceComplianceScheduledActionForRule object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceComplianceScheduledActionForRule](../resources/intune-deviceconfig-devicecompliancescheduledactionforrule.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: 188
} } ```-----
v1.0 Intune Deviceconfig Devicecompliancescheduledactionforrule List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-devicecompliancescheduledactionforrule-list.md
Title: "List deviceComplianceScheduledActionForRules" description: "List properties and relationships of the deviceComplianceScheduledActionForRule objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceComplianceScheduledActionForRule](../resources/intune-deviceconfig-devicecompliancescheduledactionforrule.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: 208
] } ```-----
v1.0 Intune Deviceconfig Devicecompliancescheduledactionforrule Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-devicecompliancescheduledactionforrule-update.md
Title: "Update deviceComplianceScheduledActionForRule" description: "Update the properties of a deviceComplianceScheduledActionForRule object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceComplianceScheduledActionForRule](../resources/intune-deviceconfig-devicecompliancescheduledactionforrule.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: 163
"ruleName": "Rule Name value" } ```-----
v1.0 Intune Deviceconfig Devicecompliancesettingstate Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-devicecompliancesettingstate-create.md
Title: "Create deviceComplianceSettingState" description: "Create a new deviceComplianceSettingState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceComplianceSettingState](../resources/intune-deviceconfig-devicecompliancesettingstate.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: 566
"complianceGracePeriodExpirationDateTime": "2016-12-31T23:56:44.951111-08:00" } ```-----
v1.0 Intune Deviceconfig Devicecompliancesettingstate Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-devicecompliancesettingstate-delete.md
Title: "Delete deviceComplianceSettingState" description: "Deletes a deviceComplianceSettingState."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceComplianceSettingState](../resources/intune-deviceconfig-devicecompliancesettingstate.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 Deviceconfig Devicecompliancesettingstate Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-devicecompliancesettingstate-get.md
Title: "Get deviceComplianceSettingState" description: "Read properties and relationships of the deviceComplianceSettingState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceComplianceSettingState](../resources/intune-deviceconfig-devicecompliancesettingstate.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: 611
} } ```-----
v1.0 Intune Deviceconfig Devicecompliancesettingstate List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-devicecompliancesettingstate-list.md
Title: "List deviceComplianceSettingStates" description: "List properties and relationships of the deviceComplianceSettingState objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceComplianceSettingState](../resources/intune-deviceconfig-devicecompliancesettingstate.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: 651
] } ```-----
v1.0 Intune Deviceconfig Devicecompliancesettingstate Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-devicecompliancesettingstate-update.md
Title: "Update deviceComplianceSettingState" description: "Update the properties of a deviceComplianceSettingState object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceComplianceSettingState](../resources/intune-deviceconfig-devicecompliancesettingstate.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: 566
"complianceGracePeriodExpirationDateTime": "2016-12-31T23:56:44.951111-08:00" } ```-----
v1.0 Intune Deviceconfig Devicecomplianceuseroverview Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-devicecomplianceuseroverview-get.md
Title: "Get deviceComplianceUserOverview" description: "Read properties and relationships of the deviceComplianceUserOverview object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceComplianceUserOverview](../resources/intune-deviceconfig-devicecomplianceuseroverview.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: 365
} } ```-----
v1.0 Intune Deviceconfig Devicecomplianceuseroverview Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-devicecomplianceuseroverview-update.md
Title: "Update deviceComplianceUserOverview" description: "Update the properties of a deviceComplianceUserOverview object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceComplianceUserOverview](../resources/intune-deviceconfig-devicecomplianceuseroverview.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: 328
"configurationVersion": 4 } ```-----
v1.0 Intune Deviceconfig Devicecomplianceuserstatus Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-devicecomplianceuserstatus-create.md
Title: "Create deviceComplianceUserStatus" description: "Create a new deviceComplianceUserStatus object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceComplianceUserStatus](../resources/intune-deviceconfig-devicecomplianceuserstatus.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: 336
"userPrincipalName": "User Principal Name value" } ```-----
v1.0 Intune Deviceconfig Devicecomplianceuserstatus Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-devicecomplianceuserstatus-delete.md
Title: "Delete deviceComplianceUserStatus" description: "Deletes a deviceComplianceUserStatus."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceComplianceUserStatus](../resources/intune-deviceconfig-devicecomplianceuserstatus.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 Deviceconfig Devicecomplianceuserstatus Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-devicecomplianceuserstatus-get.md
Title: "Get deviceComplianceUserStatus" description: "Read properties and relationships of the deviceComplianceUserStatus object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceComplianceUserStatus](../resources/intune-deviceconfig-devicecomplianceuserstatus.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: 369
} } ```-----
v1.0 Intune Deviceconfig Devicecomplianceuserstatus List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-devicecomplianceuserstatus-list.md
Title: "List deviceComplianceUserStatuses" description: "List properties and relationships of the deviceComplianceUserStatus objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceComplianceUserStatus](../resources/intune-deviceconfig-devicecomplianceuserstatus.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: 397
] } ```-----
v1.0 Intune Deviceconfig Devicecomplianceuserstatus Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-devicecomplianceuserstatus-update.md
Title: "Update deviceComplianceUserStatus" description: "Update the properties of a deviceComplianceUserStatus object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceComplianceUserStatus](../resources/intune-deviceconfig-devicecomplianceuserstatus.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: 336
"userPrincipalName": "User Principal Name value" } ```-----
v1.0 Intune Deviceconfig Deviceconfiguration Assign https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-deviceconfiguration-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)|
Content-Length: 327
] } ```-----
v1.0 Intune Deviceconfig Deviceconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-deviceconfiguration-get.md
Title: "Get deviceConfiguration" description: "Read properties and relationships of the deviceConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceConfiguration](../resources/intune-deviceconfig-deviceconfiguration.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: 362
} } ```-----
v1.0 Intune Deviceconfig Deviceconfiguration Getomasettingplaintextvalue https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-deviceconfiguration-getomasettingplaintextvalue.md
Title: "getOmaSettingPlainTextValue 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
"value": "Get Oma Setting Plain Text Value value" } ```-----
v1.0 Intune Deviceconfig Deviceconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-deviceconfiguration-list.md
Title: "List deviceConfigurations" description: "List properties and relationships of the deviceConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceConfiguration](../resources/intune-deviceconfig-deviceconfiguration.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: 390
] } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationassignment Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-deviceconfigurationassignment-create.md
Title: "Create deviceConfigurationAssignment" description: "Create a new deviceConfigurationAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceConfigurationAssignment](../resources/intune-deviceconfig-deviceconfigurationassignment.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: 270
} } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationassignment Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-deviceconfigurationassignment-delete.md
Title: "Delete deviceConfigurationAssignment" description: "Deletes a deviceConfigurationAssignment."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceConfigurationAssignment](../resources/intune-deviceconfig-deviceconfigurationassignment.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 Deviceconfig Deviceconfigurationassignment Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-deviceconfigurationassignment-get.md
Title: "Get deviceConfigurationAssignment" description: "Read properties and relationships of the deviceConfigurationAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceConfigurationAssignment](../resources/intune-deviceconfig-deviceconfigurationassignment.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: 301
} } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationassignment List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-deviceconfigurationassignment-list.md
Title: "List deviceConfigurationAssignments" description: "List properties and relationships of the deviceConfigurationAssignment objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceConfigurationAssignment](../resources/intune-deviceconfig-deviceconfigurationassignment.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: 327
] } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationassignment Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-deviceconfigurationassignment-update.md
Title: "Update deviceConfigurationAssignment" description: "Update the properties of a deviceConfigurationAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceConfigurationAssignment](../resources/intune-deviceconfig-deviceconfigurationassignment.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: 270
} } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationdeviceoverview Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-deviceconfigurationdeviceoverview-get.md
Title: "Get deviceConfigurationDeviceOverview" description: "Read properties and relationships of the deviceConfigurationDeviceOverview object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceConfigurationDeviceOverview](../resources/intune-deviceconfig-deviceconfigurationdeviceoverview.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
} } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationdeviceoverview Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-deviceconfigurationdeviceoverview-update.md
Title: "Update deviceConfigurationDeviceOverview" description: "Update the properties of a deviceConfigurationDeviceOverview object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceConfigurationDeviceOverview](../resources/intune-deviceconfig-deviceconfigurationdeviceoverview.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: 333
"configurationVersion": 4 } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationdevicestatesummary Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-deviceconfigurationdevicestatesummary-get.md
Title: "Get deviceConfigurationDeviceStateSummary" description: "Read properties and relationships of the deviceConfigurationDeviceStateSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceConfigurationDeviceStateSummary](../resources/intune-deviceconfig-deviceconfigurationdevicestatesummary.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
} } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationdevicestatesummary Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-deviceconfigurationdevicestatesummary-update.md
Title: "Update deviceConfigurationDeviceStateSummary" description: "Update the properties of a deviceConfigurationDeviceStateSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceConfigurationDeviceStateSummary](../resources/intune-deviceconfig-deviceconfigurationdevicestatesummary.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: 339
"conflictDeviceCount": 3 } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationdevicestatus Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-deviceconfigurationdevicestatus-create.md
Title: "Create deviceConfigurationDeviceStatus" description: "Create a new deviceConfigurationDeviceStatus object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceConfigurationDeviceStatus](../resources/intune-deviceconfig-deviceconfigurationdevicestatus.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
"userPrincipalName": "User Principal Name value" } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationdevicestatus Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-deviceconfigurationdevicestatus-delete.md
Title: "Delete deviceConfigurationDeviceStatus" description: "Deletes a deviceConfigurationDeviceStatus."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceConfigurationDeviceStatus](../resources/intune-deviceconfig-deviceconfigurationdevicestatus.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 Deviceconfig Deviceconfigurationdevicestatus Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-deviceconfigurationdevicestatus-get.md
Title: "Get deviceConfigurationDeviceStatus" description: "Read properties and relationships of the deviceConfigurationDeviceStatus object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceConfigurationDeviceStatus](../resources/intune-deviceconfig-deviceconfigurationdevicestatus.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: 515
} } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationdevicestatus List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-deviceconfigurationdevicestatus-list.md
Title: "List deviceConfigurationDeviceStatuses" description: "List properties and relationships of the deviceConfigurationDeviceStatus objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceConfigurationDeviceStatus](../resources/intune-deviceconfig-deviceconfigurationdevicestatus.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: 547
] } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationdevicestatus Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-deviceconfigurationdevicestatus-update.md
Title: "Update deviceConfigurationDeviceStatus" description: "Update the properties of a deviceConfigurationDeviceStatus object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceConfigurationDeviceStatus](../resources/intune-deviceconfig-deviceconfigurationdevicestatus.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
"userPrincipalName": "User Principal Name value" } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationuseroverview Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-deviceconfigurationuseroverview-get.md
Title: "Get deviceConfigurationUserOverview" description: "Read properties and relationships of the deviceConfigurationUserOverview object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceConfigurationUserOverview](../resources/intune-deviceconfig-deviceconfigurationuseroverview.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: 368
} } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationuseroverview Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-deviceconfigurationuseroverview-update.md
Title: "Update deviceConfigurationUserOverview" description: "Update the properties of a deviceConfigurationUserOverview object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceConfigurationUserOverview](../resources/intune-deviceconfig-deviceconfigurationuseroverview.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: 331
"configurationVersion": 4 } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationuserstatus Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-deviceconfigurationuserstatus-create.md
Title: "Create deviceConfigurationUserStatus" description: "Create a new deviceConfigurationUserStatus object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceConfigurationUserStatus](../resources/intune-deviceconfig-deviceconfigurationuserstatus.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: 339
"userPrincipalName": "User Principal Name value" } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationuserstatus Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-deviceconfigurationuserstatus-delete.md
Title: "Delete deviceConfigurationUserStatus" description: "Deletes a deviceConfigurationUserStatus."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceConfigurationUserStatus](../resources/intune-deviceconfig-deviceconfigurationuserstatus.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 Deviceconfig Deviceconfigurationuserstatus Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-deviceconfigurationuserstatus-get.md
Title: "Get deviceConfigurationUserStatus" description: "Read properties and relationships of the deviceConfigurationUserStatus object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceConfigurationUserStatus](../resources/intune-deviceconfig-deviceconfigurationuserstatus.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: 372
} } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationuserstatus List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-deviceconfigurationuserstatus-list.md
Title: "List deviceConfigurationUserStatuses" description: "List properties and relationships of the deviceConfigurationUserStatus objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceConfigurationUserStatus](../resources/intune-deviceconfig-deviceconfigurationuserstatus.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: 400
] } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationuserstatus Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-deviceconfigurationuserstatus-update.md
Title: "Update deviceConfigurationUserStatus" description: "Update the properties of a deviceConfigurationUserStatus object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceConfigurationUserStatus](../resources/intune-deviceconfig-deviceconfigurationuserstatus.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: 339
"userPrincipalName": "User Principal Name value" } ```-----
v1.0 Intune Deviceconfig Devicemanagement Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-devicemanagement-get.md
Title: "Get deviceManagement" description: "Read properties and relationships of the deviceManagement object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagement](../resources/intune-deviceconfig-devicemanagement.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 Deviceconfig Devicemanagement Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-devicemanagement-update.md
Title: "Update deviceManagement" description: "Update the properties of a deviceManagement object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagement](../resources/intune-deviceconfig-devicemanagement.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: 372
"intuneAccountId": "cf1549a1-49a1-cf15-a149-15cfa14915cf" } ```-----
v1.0 Intune Deviceconfig Editionupgradeconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-editionupgradeconfiguration-create.md
Title: "Create editionUpgradeConfiguration" description: "Create a new editionUpgradeConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [editionUpgradeConfiguration](../resources/intune-deviceconfig-editionupgradeconfiguration.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: 483
"productKey": "Product Key value" } ```-----
v1.0 Intune Deviceconfig Editionupgradeconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-editionupgradeconfiguration-delete.md
Title: "Delete editionUpgradeConfiguration" description: "Deletes a editionUpgradeConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [editionUpgradeConfiguration](../resources/intune-deviceconfig-editionupgradeconfiguration.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 Deviceconfig Editionupgradeconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-editionupgradeconfiguration-get.md
Title: "Get editionUpgradeConfiguration" description: "Read properties and relationships of the editionUpgradeConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [editionUpgradeConfiguration](../resources/intune-deviceconfig-editionupgradeconfiguration.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: 524
} } ```-----
v1.0 Intune Deviceconfig Editionupgradeconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-editionupgradeconfiguration-list.md
Title: "List editionUpgradeConfigurations" description: "List properties and relationships of the editionUpgradeConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [editionUpgradeConfiguration](../resources/intune-deviceconfig-editionupgradeconfiguration.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: 560
] } ```-----
v1.0 Intune Deviceconfig Editionupgradeconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-editionupgradeconfiguration-update.md
Title: "Update editionUpgradeConfiguration" description: "Update the properties of a editionUpgradeConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [editionUpgradeConfiguration](../resources/intune-deviceconfig-editionupgradeconfiguration.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: 483
"productKey": "Product Key value" } ```-----
v1.0 Intune Deviceconfig Ioscertificateprofile Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-ioscertificateprofile-get.md
Title: "Get iosCertificateProfile" description: "Read properties and relationships of the iosCertificateProfile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [iosCertificateProfile](../resources/intune-deviceconfig-ioscertificateprofile.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: 364
} } ```-----
v1.0 Intune Deviceconfig Ioscertificateprofile List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-ioscertificateprofile-list.md
Title: "List iosCertificateProfiles" description: "List properties and relationships of the iosCertificateProfile objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [iosCertificateProfile](../resources/intune-deviceconfig-ioscertificateprofile.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: 392
] } ```-----
v1.0 Intune Deviceconfig Ioscompliancepolicy Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-ioscompliancepolicy-create.md
Title: "Create iosCompliancePolicy" description: "Create a new iosCompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [iosCompliancePolicy](../resources/intune-deviceconfig-ioscompliancepolicy.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: 917
"managedEmailProfileRequired": true } ```-----
v1.0 Intune Deviceconfig Ioscompliancepolicy Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-ioscompliancepolicy-delete.md
Title: "Delete iosCompliancePolicy" description: "Deletes a iosCompliancePolicy."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [iosCompliancePolicy](../resources/intune-deviceconfig-ioscompliancepolicy.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 Deviceconfig Ioscompliancepolicy Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-ioscompliancepolicy-get.md
Title: "Get iosCompliancePolicy" description: "Read properties and relationships of the iosCompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [iosCompliancePolicy](../resources/intune-deviceconfig-ioscompliancepolicy.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: 978
} } ```-----
v1.0 Intune Deviceconfig Ioscompliancepolicy List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-ioscompliancepolicy-list.md
Title: "List iosCompliancePolicies" description: "List properties and relationships of the iosCompliancePolicy objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [iosCompliancePolicy](../resources/intune-deviceconfig-ioscompliancepolicy.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: 1034
] } ```-----
v1.0 Intune Deviceconfig Ioscompliancepolicy Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-ioscompliancepolicy-update.md
Title: "Update iosCompliancePolicy" description: "Update the properties of a iosCompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [iosCompliancePolicy](../resources/intune-deviceconfig-ioscompliancepolicy.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: 917
"managedEmailProfileRequired": true } ```-----
v1.0 Intune Deviceconfig Ioscustomconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-ioscustomconfiguration-create.md
Title: "Create iosCustomConfiguration" description: "Create a new iosCustomConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [iosCustomConfiguration](../resources/intune-deviceconfig-ioscustomconfiguration.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: 451
"payload": "cGF5bG9hZA==" } ```-----
v1.0 Intune Deviceconfig Ioscustomconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-ioscustomconfiguration-delete.md
Title: "Delete iosCustomConfiguration" description: "Deletes a iosCustomConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [iosCustomConfiguration](../resources/intune-deviceconfig-ioscustomconfiguration.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 Deviceconfig Ioscustomconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-ioscustomconfiguration-get.md
Title: "Get iosCustomConfiguration" description: "Read properties and relationships of the iosCustomConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [iosCustomConfiguration](../resources/intune-deviceconfig-ioscustomconfiguration.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: 490
} } ```-----
v1.0 Intune Deviceconfig Ioscustomconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-ioscustomconfiguration-list.md
Title: "List iosCustomConfigurations" description: "List properties and relationships of the iosCustomConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [iosCustomConfiguration](../resources/intune-deviceconfig-ioscustomconfiguration.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: 524
] } ```-----
v1.0 Intune Deviceconfig Ioscustomconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-ioscustomconfiguration-update.md
Title: "Update iosCustomConfiguration" description: "Update the properties of a iosCustomConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [iosCustomConfiguration](../resources/intune-deviceconfig-ioscustomconfiguration.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: 451
"payload": "cGF5bG9hZA==" } ```-----
v1.0 Intune Deviceconfig Iosdevicefeaturesconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-iosdevicefeaturesconfiguration-create.md
Title: "Create iosDeviceFeaturesConfiguration" description: "Create a new iosDeviceFeaturesConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [iosDeviceFeaturesConfiguration](../resources/intune-deviceconfig-iosdevicefeaturesconfiguration.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: 2160
] } ```-----
v1.0 Intune Deviceconfig Iosdevicefeaturesconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-iosdevicefeaturesconfiguration-delete.md
Title: "Delete iosDeviceFeaturesConfiguration" description: "Deletes a iosDeviceFeaturesConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [iosDeviceFeaturesConfiguration](../resources/intune-deviceconfig-iosdevicefeaturesconfiguration.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 Deviceconfig Iosdevicefeaturesconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-iosdevicefeaturesconfiguration-get.md
Title: "Get iosDeviceFeaturesConfiguration" description: "Read properties and relationships of the iosDeviceFeaturesConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [iosDeviceFeaturesConfiguration](../resources/intune-deviceconfig-iosdevicefeaturesconfiguration.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: 2313
} } ```-----
v1.0 Intune Deviceconfig Iosdevicefeaturesconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-iosdevicefeaturesconfiguration-list.md
Title: "List iosDeviceFeaturesConfigurations" description: "List properties and relationships of the iosDeviceFeaturesConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [iosDeviceFeaturesConfiguration](../resources/intune-deviceconfig-iosdevicefeaturesconfiguration.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: 2461
] } ```-----
v1.0 Intune Deviceconfig Iosdevicefeaturesconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-iosdevicefeaturesconfiguration-update.md
Title: "Update iosDeviceFeaturesConfiguration" description: "Update the properties of a iosDeviceFeaturesConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [iosDeviceFeaturesConfiguration](../resources/intune-deviceconfig-iosdevicefeaturesconfiguration.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: 2160
] } ```-----
v1.0 Intune Deviceconfig Iosgeneraldeviceconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-iosgeneraldeviceconfiguration-create.md
Title: "Create iosGeneralDeviceConfiguration" description: "Create a new iosGeneralDeviceConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [iosGeneralDeviceConfiguration](../resources/intune-deviceconfig-iosgeneraldeviceconfiguration.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: 8013
"wiFiConnectOnlyToConfiguredNetworks": true } ```-----
v1.0 Intune Deviceconfig Iosgeneraldeviceconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-iosgeneraldeviceconfiguration-delete.md
Title: "Delete iosGeneralDeviceConfiguration" description: "Deletes a iosGeneralDeviceConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [iosGeneralDeviceConfiguration](../resources/intune-deviceconfig-iosgeneraldeviceconfiguration.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 Deviceconfig Iosgeneraldeviceconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-iosgeneraldeviceconfiguration-get.md
Title: "Get iosGeneralDeviceConfiguration" description: "Read properties and relationships of the iosGeneralDeviceConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [iosGeneralDeviceConfiguration](../resources/intune-deviceconfig-iosgeneraldeviceconfiguration.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: 8470
} } ```-----
v1.0 Intune Deviceconfig Iosgeneraldeviceconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-iosgeneraldeviceconfiguration-list.md
Title: "List iosGeneralDeviceConfigurations" description: "List properties and relationships of the iosGeneralDeviceConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [iosGeneralDeviceConfiguration](../resources/intune-deviceconfig-iosgeneraldeviceconfiguration.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: 8922
] } ```-----
v1.0 Intune Deviceconfig Iosgeneraldeviceconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-iosgeneraldeviceconfiguration-update.md
Title: "Update iosGeneralDeviceConfiguration" description: "Update the properties of a iosGeneralDeviceConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [iosGeneralDeviceConfiguration](../resources/intune-deviceconfig-iosgeneraldeviceconfiguration.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: 8013
"wiFiConnectOnlyToConfiguredNetworks": true } ```-----
v1.0 Intune Deviceconfig Iosupdateconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-iosupdateconfiguration-create.md
Title: "Create iosUpdateConfiguration" description: "Create a new iosUpdateConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [iosUpdateConfiguration](../resources/intune-deviceconfig-iosupdateconfiguration.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: 497
"utcTimeOffsetInMinutes": 6 } ```-----
v1.0 Intune Deviceconfig Iosupdateconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-iosupdateconfiguration-delete.md
Title: "Delete iosUpdateConfiguration" description: "Deletes a iosUpdateConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [iosUpdateConfiguration](../resources/intune-deviceconfig-iosupdateconfiguration.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 Deviceconfig Iosupdateconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-iosupdateconfiguration-get.md
Title: "Get iosUpdateConfiguration" description: "Read properties and relationships of the iosUpdateConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [iosUpdateConfiguration](../resources/intune-deviceconfig-iosupdateconfiguration.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: 542
} } ```-----
v1.0 Intune Deviceconfig Iosupdateconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-iosupdateconfiguration-list.md
Title: "List iosUpdateConfigurations" description: "List properties and relationships of the iosUpdateConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [iosUpdateConfiguration](../resources/intune-deviceconfig-iosupdateconfiguration.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: 582
] } ```-----
v1.0 Intune Deviceconfig Iosupdateconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-iosupdateconfiguration-update.md
Title: "Update iosUpdateConfiguration" description: "Update the properties of a iosUpdateConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [iosUpdateConfiguration](../resources/intune-deviceconfig-iosupdateconfiguration.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: 497
"utcTimeOffsetInMinutes": 6 } ```-----
v1.0 Intune Deviceconfig Iosupdatedevicestatus Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-iosupdatedevicestatus-create.md
Title: "Create iosUpdateDeviceStatus" description: "Create a new iosUpdateDeviceStatus object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [iosUpdateDeviceStatus](../resources/intune-deviceconfig-iosupdatedevicestatus.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: 601
"userPrincipalName": "User Principal Name value" } ```-----
v1.0 Intune Deviceconfig Iosupdatedevicestatus Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-iosupdatedevicestatus-delete.md
Title: "Delete iosUpdateDeviceStatus" description: "Deletes a iosUpdateDeviceStatus."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [iosUpdateDeviceStatus](../resources/intune-deviceconfig-iosupdatedevicestatus.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 Deviceconfig Iosupdatedevicestatus Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-iosupdatedevicestatus-get.md
Title: "Get iosUpdateDeviceStatus" description: "Read properties and relationships of the iosUpdateDeviceStatus object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [iosUpdateDeviceStatus](../resources/intune-deviceconfig-iosupdatedevicestatus.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: 646
} } ```-----
v1.0 Intune Deviceconfig Iosupdatedevicestatus List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-iosupdatedevicestatus-list.md
Title: "List iosUpdateDeviceStatuses" description: "List properties and relationships of the iosUpdateDeviceStatus objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [iosUpdateDeviceStatus](../resources/intune-deviceconfig-iosupdatedevicestatus.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: 686
] } ```-----
v1.0 Intune Deviceconfig Iosupdatedevicestatus Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-iosupdatedevicestatus-update.md
Title: "Update iosUpdateDeviceStatus" description: "Update the properties of a iosUpdateDeviceStatus object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [iosUpdateDeviceStatus](../resources/intune-deviceconfig-iosupdatedevicestatus.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: 601
"userPrincipalName": "User Principal Name value" } ```-----
v1.0 Intune Deviceconfig Macoscompliancepolicy Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-macoscompliancepolicy-create.md
Title: "Create macOSCompliancePolicy" description: "Create a new macOSCompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [macOSCompliancePolicy](../resources/intune-deviceconfig-macoscompliancepolicy.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: 1021
"firewallEnableStealthMode": true } ```-----
v1.0 Intune Deviceconfig Macoscompliancepolicy Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-macoscompliancepolicy-delete.md
Title: "Delete macOSCompliancePolicy" description: "Deletes a macOSCompliancePolicy."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [macOSCompliancePolicy](../resources/intune-deviceconfig-macoscompliancepolicy.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 Deviceconfig Macoscompliancepolicy Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-macoscompliancepolicy-get.md
Title: "Get macOSCompliancePolicy" description: "Read properties and relationships of the macOSCompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [macOSCompliancePolicy](../resources/intune-deviceconfig-macoscompliancepolicy.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: 1088
} } ```-----
v1.0 Intune Deviceconfig Macoscompliancepolicy List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-macoscompliancepolicy-list.md
Title: "List macOSCompliancePolicies" description: "List properties and relationships of the macOSCompliancePolicy objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [macOSCompliancePolicy](../resources/intune-deviceconfig-macoscompliancepolicy.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: 1150
] } ```-----
v1.0 Intune Deviceconfig Macoscompliancepolicy Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-macoscompliancepolicy-update.md
Title: "Update macOSCompliancePolicy" description: "Update the properties of a macOSCompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [macOSCompliancePolicy](../resources/intune-deviceconfig-macoscompliancepolicy.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: 1021
"firewallEnableStealthMode": true } ```-----
v1.0 Intune Deviceconfig Macoscustomconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-macoscustomconfiguration-create.md
Title: "Create macOSCustomConfiguration" description: "Create a new macOSCustomConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [macOSCustomConfiguration](../resources/intune-deviceconfig-macoscustomconfiguration.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: 453
"payload": "cGF5bG9hZA==" } ```-----
v1.0 Intune Deviceconfig Macoscustomconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-macoscustomconfiguration-delete.md
Title: "Delete macOSCustomConfiguration" description: "Deletes a macOSCustomConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [macOSCustomConfiguration](../resources/intune-deviceconfig-macoscustomconfiguration.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 Deviceconfig Macoscustomconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-macoscustomconfiguration-get.md
Title: "Get macOSCustomConfiguration" description: "Read properties and relationships of the macOSCustomConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [macOSCustomConfiguration](../resources/intune-deviceconfig-macoscustomconfiguration.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: 492
} } ```-----
v1.0 Intune Deviceconfig Macoscustomconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-macoscustomconfiguration-list.md
Title: "List macOSCustomConfigurations" description: "List properties and relationships of the macOSCustomConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [macOSCustomConfiguration](../resources/intune-deviceconfig-macoscustomconfiguration.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: 526
] } ```-----
v1.0 Intune Deviceconfig Macoscustomconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-macoscustomconfiguration-update.md
Title: "Update macOSCustomConfiguration" description: "Update the properties of a macOSCustomConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [macOSCustomConfiguration](../resources/intune-deviceconfig-macoscustomconfiguration.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: 453
"payload": "cGF5bG9hZA==" } ```-----
v1.0 Intune Deviceconfig Macosdevicefeaturesconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-macosdevicefeaturesconfiguration-create.md
Title: "Create macOSDeviceFeaturesConfiguration" description: "Create a new macOSDeviceFeaturesConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [macOSDeviceFeaturesConfiguration](../resources/intune-deviceconfig-macosdevicefeaturesconfiguration.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: 342
"version": 7 } ```-----
v1.0 Intune Deviceconfig Macosdevicefeaturesconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-macosdevicefeaturesconfiguration-delete.md
Title: "Delete macOSDeviceFeaturesConfiguration" description: "Deletes a macOSDeviceFeaturesConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [macOSDeviceFeaturesConfiguration](../resources/intune-deviceconfig-macosdevicefeaturesconfiguration.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 Deviceconfig Macosdevicefeaturesconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-macosdevicefeaturesconfiguration-get.md
Title: "Get macOSDeviceFeaturesConfiguration" description: "Read properties and relationships of the macOSDeviceFeaturesConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [macOSDeviceFeaturesConfiguration](../resources/intune-deviceconfig-macosdevicefeaturesconfiguration.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: 375
} } ```-----
v1.0 Intune Deviceconfig Macosdevicefeaturesconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-macosdevicefeaturesconfiguration-list.md
Title: "List macOSDeviceFeaturesConfigurations" description: "List properties and relationships of the macOSDeviceFeaturesConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [macOSDeviceFeaturesConfiguration](../resources/intune-deviceconfig-macosdevicefeaturesconfiguration.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: 403
] } ```-----
v1.0 Intune Deviceconfig Macosdevicefeaturesconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-macosdevicefeaturesconfiguration-update.md
Title: "Update macOSDeviceFeaturesConfiguration" description: "Update the properties of a macOSDeviceFeaturesConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [macOSDeviceFeaturesConfiguration](../resources/intune-deviceconfig-macosdevicefeaturesconfiguration.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: 342
"version": 7 } ```-----
v1.0 Intune Deviceconfig Macosgeneraldeviceconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-macosgeneraldeviceconfiguration-create.md
Title: "Create macOSGeneralDeviceConfiguration" description: "Create a new macOSGeneralDeviceConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [macOSGeneralDeviceConfiguration](../resources/intune-deviceconfig-macosgeneraldeviceconfiguration.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: 1078
"passwordRequired": true } ```-----
v1.0 Intune Deviceconfig Macosgeneraldeviceconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-macosgeneraldeviceconfiguration-delete.md
Title: "Delete macOSGeneralDeviceConfiguration" description: "Deletes a macOSGeneralDeviceConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [macOSGeneralDeviceConfiguration](../resources/intune-deviceconfig-macosgeneraldeviceconfiguration.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 Deviceconfig Macosgeneraldeviceconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-macosgeneraldeviceconfiguration-get.md
Title: "Get macOSGeneralDeviceConfiguration" description: "Read properties and relationships of the macOSGeneralDeviceConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [macOSGeneralDeviceConfiguration](../resources/intune-deviceconfig-macosgeneraldeviceconfiguration.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: 1155
} } ```-----
v1.0 Intune Deviceconfig Macosgeneraldeviceconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-macosgeneraldeviceconfiguration-list.md
Title: "List macOSGeneralDeviceConfigurations" description: "List properties and relationships of the macOSGeneralDeviceConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [macOSGeneralDeviceConfiguration](../resources/intune-deviceconfig-macosgeneraldeviceconfiguration.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: 1227
] } ```-----
v1.0 Intune Deviceconfig Macosgeneraldeviceconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-macosgeneraldeviceconfiguration-update.md
Title: "Update macOSGeneralDeviceConfiguration" description: "Update the properties of a macOSGeneralDeviceConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [macOSGeneralDeviceConfiguration](../resources/intune-deviceconfig-macosgeneraldeviceconfiguration.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: 1078
"passwordRequired": true } ```-----
v1.0 Intune Deviceconfig Reportroot Deviceconfigurationdeviceactivity https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-reportroot-deviceconfigurationdeviceactivity.md
Title: "deviceConfigurationDeviceActivity function" description: "Metadata for the device configuration device activity report"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Metadata for the device configuration device activity report
-## Prerequisites
+## Permissions
One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)|
Content-Length: 136
} } ```-----
v1.0 Intune Deviceconfig Reportroot Deviceconfigurationuseractivity https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-reportroot-deviceconfigurationuseractivity.md
Title: "deviceConfigurationUserActivity function" description: "Metadata for the device configuration user activity report"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Metadata for the device configuration user activity report
-## Prerequisites
+## Permissions
One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)|
Content-Length: 136
} } ```-----
v1.0 Intune Deviceconfig Reportroot Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-reportroot-get.md
Title: "Get reportRoot" description: "Read properties and relationships of the reportRoot object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [reportRoot](../resources/intune-deviceconfig-reportroot.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: 124
} } ```-----
v1.0 Intune Deviceconfig Reportroot Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-reportroot-update.md
Title: "Update reportRoot" description: "Update the properties of a reportRoot object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [reportRoot](../resources/intune-deviceconfig-reportroot.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: 101
"id": "9ab6b3dd-b3dd-9ab6-ddb3-b69addb3b69a" } ```-----
v1.0 Intune Deviceconfig Settingstatedevicesummary Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-settingstatedevicesummary-create.md
Title: "Create settingStateDeviceSummary" description: "Create a new settingStateDeviceSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [settingStateDeviceSummary](../resources/intune-deviceconfig-settingstatedevicesummary.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
"conflictDeviceCount": 3 } ```-----
v1.0 Intune Deviceconfig Settingstatedevicesummary Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-settingstatedevicesummary-delete.md
Title: "Delete settingStateDeviceSummary" description: "Deletes a settingStateDeviceSummary."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [settingStateDeviceSummary](../resources/intune-deviceconfig-settingstatedevicesummary.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 Deviceconfig Settingstatedevicesummary Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-settingstatedevicesummary-get.md
Title: "Get settingStateDeviceSummary" description: "Read properties and relationships of the settingStateDeviceSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [settingStateDeviceSummary](../resources/intune-deviceconfig-settingstatedevicesummary.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 Deviceconfig Settingstatedevicesummary List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-settingstatedevicesummary-list.md
Title: "List settingStateDeviceSummaries" description: "List properties and relationships of the settingStateDeviceSummary objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [settingStateDeviceSummary](../resources/intune-deviceconfig-settingstatedevicesummary.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: 486
] } ```-----
v1.0 Intune Deviceconfig Settingstatedevicesummary Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-settingstatedevicesummary-update.md
Title: "Update settingStateDeviceSummary" description: "Update the properties of a settingStateDeviceSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [settingStateDeviceSummary](../resources/intune-deviceconfig-settingstatedevicesummary.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
"conflictDeviceCount": 3 } ```-----
v1.0 Intune Deviceconfig Sharedpcconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-sharedpcconfiguration-create.md
Title: "Create sharedPCConfiguration" description: "Create a new sharedPCConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [sharedPCConfiguration](../resources/intune-deviceconfig-sharedpcconfiguration.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: 1032
"maintenanceStartTime": "11:59:24.7240000" } ```-----
v1.0 Intune Deviceconfig Sharedpcconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-sharedpcconfiguration-delete.md
Title: "Delete sharedPCConfiguration" description: "Deletes a sharedPCConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [sharedPCConfiguration](../resources/intune-deviceconfig-sharedpcconfiguration.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 Deviceconfig Sharedpcconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-sharedpcconfiguration-get.md
Title: "Get sharedPCConfiguration" description: "Read properties and relationships of the sharedPCConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [sharedPCConfiguration](../resources/intune-deviceconfig-sharedpcconfiguration.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 Deviceconfig Sharedpcconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-sharedpcconfiguration-list.md
Title: "List sharedPCConfigurations" description: "List properties and relationships of the sharedPCConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [sharedPCConfiguration](../resources/intune-deviceconfig-sharedpcconfiguration.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: 1165
] } ```-----
v1.0 Intune Deviceconfig Sharedpcconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-sharedpcconfiguration-update.md
Title: "Update sharedPCConfiguration" description: "Update the properties of a sharedPCConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [sharedPCConfiguration](../resources/intune-deviceconfig-sharedpcconfiguration.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: 1032
"maintenanceStartTime": "11:59:24.7240000" } ```-----
v1.0 Intune Deviceconfig Softwareupdatestatussummary Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-softwareupdatestatussummary-get.md
Title: "Get softwareUpdateStatusSummary" description: "Read properties and relationships of the softwareUpdateStatusSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [softwareUpdateStatusSummary](../resources/intune-deviceconfig-softwareupdatestatussummary.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: 620
} } ```-----
v1.0 Intune Deviceconfig Softwareupdatestatussummary Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-softwareupdatestatussummary-update.md
Title: "Update softwareUpdateStatusSummary" description: "Update the properties of a softwareUpdateStatusSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [softwareUpdateStatusSummary](../resources/intune-deviceconfig-softwareupdatestatussummary.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
"notApplicableUserCount": 6 } ```-----
v1.0 Intune Deviceconfig Windows10compliancepolicy Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windows10compliancepolicy-create.md
Title: "Create windows10CompliancePolicy" description: "Create a new windows10CompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windows10CompliancePolicy](../resources/intune-deviceconfig-windows10compliancepolicy.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: 1126
"storageRequireEncryption": true } ```-----
v1.0 Intune Deviceconfig Windows10compliancepolicy Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windows10compliancepolicy-delete.md
Title: "Delete windows10CompliancePolicy" description: "Deletes a windows10CompliancePolicy."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windows10CompliancePolicy](../resources/intune-deviceconfig-windows10compliancepolicy.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 Deviceconfig Windows10compliancepolicy Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windows10compliancepolicy-get.md
Title: "Get windows10CompliancePolicy" description: "Read properties and relationships of the windows10CompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windows10CompliancePolicy](../resources/intune-deviceconfig-windows10compliancepolicy.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: 1197
} } ```-----
v1.0 Intune Deviceconfig Windows10compliancepolicy List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windows10compliancepolicy-list.md
Title: "List windows10CompliancePolicies" description: "List properties and relationships of the windows10CompliancePolicy objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windows10CompliancePolicy](../resources/intune-deviceconfig-windows10compliancepolicy.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: 1263
] } ```-----
v1.0 Intune Deviceconfig Windows10compliancepolicy Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windows10compliancepolicy-update.md
Title: "Update windows10CompliancePolicy" description: "Update the properties of a windows10CompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windows10CompliancePolicy](../resources/intune-deviceconfig-windows10compliancepolicy.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: 1126
"storageRequireEncryption": true } ```-----
v1.0 Intune Deviceconfig Windows10customconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windows10customconfiguration-create.md
Title: "Create windows10CustomConfiguration" description: "Create a new windows10CustomConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windows10CustomConfiguration](../resources/intune-deviceconfig-windows10customconfiguration.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: 550
] } ```-----
v1.0 Intune Deviceconfig Windows10customconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windows10customconfiguration-delete.md
Title: "Delete windows10CustomConfiguration" description: "Deletes a windows10CustomConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windows10CustomConfiguration](../resources/intune-deviceconfig-windows10customconfiguration.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 Deviceconfig Windows10customconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windows10customconfiguration-get.md
Title: "Get windows10CustomConfiguration" description: "Read properties and relationships of the windows10CustomConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windows10CustomConfiguration](../resources/intune-deviceconfig-windows10customconfiguration.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: 599
} } ```-----
v1.0 Intune Deviceconfig Windows10customconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windows10customconfiguration-list.md
Title: "List windows10CustomConfigurations" description: "List properties and relationships of the windows10CustomConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windows10CustomConfiguration](../resources/intune-deviceconfig-windows10customconfiguration.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: 643
] } ```-----
v1.0 Intune Deviceconfig Windows10customconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windows10customconfiguration-update.md
Title: "Update windows10CustomConfiguration" description: "Update the properties of a windows10CustomConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windows10CustomConfiguration](../resources/intune-deviceconfig-windows10customconfiguration.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: 550
] } ```-----
v1.0 Intune Deviceconfig Windows10endpointprotectionconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windows10endpointprotectionconfiguration-create.md
Title: "Create windows10EndpointProtectionConfiguration" description: "Create a new windows10EndpointProtectionConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windows10EndpointProtectionConfiguration](../resources/intune-deviceconfig-windows10endpointprotectionconfiguration.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: 4417
} } ```-----
v1.0 Intune Deviceconfig Windows10endpointprotectionconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windows10endpointprotectionconfiguration-delete.md
Title: "Delete windows10EndpointProtectionConfiguration" description: "Deletes a windows10EndpointProtectionConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windows10EndpointProtectionConfiguration](../resources/intune-deviceconfig-windows10endpointprotectionconfiguration.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 Deviceconfig Windows10endpointprotectionconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windows10endpointprotectionconfiguration-get.md
Title: "Get windows10EndpointProtectionConfiguration" description: "Read properties and relationships of the windows10EndpointProtectionConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windows10EndpointProtectionConfiguration](../resources/intune-deviceconfig-windows10endpointprotectionconfiguration.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: 4628
} } ```-----
v1.0 Intune Deviceconfig Windows10endpointprotectionconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windows10endpointprotectionconfiguration-list.md
Title: "List windows10EndpointProtectionConfigurations" description: "List properties and relationships of the windows10EndpointProtectionConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windows10EndpointProtectionConfiguration](../resources/intune-deviceconfig-windows10endpointprotectionconfiguration.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: 4834
] } ```-----
v1.0 Intune Deviceconfig Windows10endpointprotectionconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windows10endpointprotectionconfiguration-update.md
Title: "Update windows10EndpointProtectionConfiguration" description: "Update the properties of a windows10EndpointProtectionConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windows10EndpointProtectionConfiguration](../resources/intune-deviceconfig-windows10endpointprotectionconfiguration.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: 4417
} } ```-----
v1.0 Intune Deviceconfig Windows10enterprisemodernappmanagementconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windows10enterprisemodernappmanagementconfiguration-create.md
Title: "Create windows10EnterpriseModernAppManagementConfiguration" description: "Create a new windows10EnterpriseModernAppManagementConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windows10EnterpriseModernAppManagementConfiguration](../resources/intune-deviceconfig-windows10enterprisemodernappmanagementconfiguration.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: 394
"uninstallBuiltInApps": true } ```-----
v1.0 Intune Deviceconfig Windows10enterprisemodernappmanagementconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windows10enterprisemodernappmanagementconfiguration-delete.md
Title: "Delete windows10EnterpriseModernAppManagementConfiguration" description: "Deletes a windows10EnterpriseModernAppManagementConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windows10EnterpriseModernAppManagementConfiguration](../resources/intune-deviceconfig-windows10enterprisemodernappmanagementconfiguration.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 Deviceconfig Windows10enterprisemodernappmanagementconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windows10enterprisemodernappmanagementconfiguration-get.md
Title: "Get windows10EnterpriseModernAppManagementConfiguration" description: "Read properties and relationships of the windows10EnterpriseModernAppManagementConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windows10EnterpriseModernAppManagementConfiguration](../resources/intune-deviceconfig-windows10enterprisemodernappmanagementconfiguration.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: 429
} } ```-----
v1.0 Intune Deviceconfig Windows10enterprisemodernappmanagementconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windows10enterprisemodernappmanagementconfiguration-list.md
Title: "List windows10EnterpriseModernAppManagementConfigurations" description: "List properties and relationships of the windows10EnterpriseModernAppManagementConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windows10EnterpriseModernAppManagementConfiguration](../resources/intune-deviceconfig-windows10enterprisemodernappmanagementconfiguration.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: 459
] } ```-----
v1.0 Intune Deviceconfig Windows10enterprisemodernappmanagementconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windows10enterprisemodernappmanagementconfiguration-update.md
Title: "Update windows10EnterpriseModernAppManagementConfiguration" description: "Update the properties of a windows10EnterpriseModernAppManagementConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windows10EnterpriseModernAppManagementConfiguration](../resources/intune-deviceconfig-windows10enterprisemodernappmanagementconfiguration.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: 394
"uninstallBuiltInApps": true } ```-----
v1.0 Intune Deviceconfig Windows10generalconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windows10generalconfiguration-create.md
Title: "Create windows10GeneralConfiguration" description: "Create a new windows10GeneralConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windows10GeneralConfiguration](../resources/intune-deviceconfig-windows10generalconfiguration.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: 9994
"tenantLockdownRequireNetworkDuringOutOfBoxExperience": true } ```-----
v1.0 Intune Deviceconfig Windows10generalconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windows10generalconfiguration-delete.md
Title: "Delete windows10GeneralConfiguration" description: "Deletes a windows10GeneralConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windows10GeneralConfiguration](../resources/intune-deviceconfig-windows10generalconfiguration.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 Deviceconfig Windows10generalconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windows10generalconfiguration-get.md
Title: "Get windows10GeneralConfiguration" description: "Read properties and relationships of the windows10GeneralConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windows10GeneralConfiguration](../resources/intune-deviceconfig-windows10generalconfiguration.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: 10479
} } ```-----
v1.0 Intune Deviceconfig Windows10generalconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windows10generalconfiguration-list.md
Title: "List windows10GeneralConfigurations" description: "List properties and relationships of the windows10GeneralConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windows10GeneralConfiguration](../resources/intune-deviceconfig-windows10generalconfiguration.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: 10959
] } ```-----
v1.0 Intune Deviceconfig Windows10generalconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windows10generalconfiguration-update.md
Title: "Update windows10GeneralConfiguration" description: "Update the properties of a windows10GeneralConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windows10GeneralConfiguration](../resources/intune-deviceconfig-windows10generalconfiguration.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: 9994
"tenantLockdownRequireNetworkDuringOutOfBoxExperience": true } ```-----
v1.0 Intune Deviceconfig Windows10mobilecompliancepolicy Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windows10mobilecompliancepolicy-create.md
Title: "Create windows10MobileCompliancePolicy" description: "Create a new windows10MobileCompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windows10MobileCompliancePolicy](../resources/intune-deviceconfig-windows10mobilecompliancepolicy.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: 964
"storageRequireEncryption": true } ```-----
v1.0 Intune Deviceconfig Windows10mobilecompliancepolicy Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windows10mobilecompliancepolicy-delete.md
Title: "Delete windows10MobileCompliancePolicy" description: "Deletes a windows10MobileCompliancePolicy."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windows10MobileCompliancePolicy](../resources/intune-deviceconfig-windows10mobilecompliancepolicy.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 Deviceconfig Windows10mobilecompliancepolicy Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windows10mobilecompliancepolicy-get.md
Title: "Get windows10MobileCompliancePolicy" description: "Read properties and relationships of the windows10MobileCompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windows10MobileCompliancePolicy](../resources/intune-deviceconfig-windows10mobilecompliancepolicy.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: 1029
} } ```-----
v1.0 Intune Deviceconfig Windows10mobilecompliancepolicy List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windows10mobilecompliancepolicy-list.md
Title: "List windows10MobileCompliancePolicies" description: "List properties and relationships of the windows10MobileCompliancePolicy objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windows10MobileCompliancePolicy](../resources/intune-deviceconfig-windows10mobilecompliancepolicy.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: 1089
] } ```-----
v1.0 Intune Deviceconfig Windows10mobilecompliancepolicy Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windows10mobilecompliancepolicy-update.md
Title: "Update windows10MobileCompliancePolicy" description: "Update the properties of a windows10MobileCompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windows10MobileCompliancePolicy](../resources/intune-deviceconfig-windows10mobilecompliancepolicy.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: 964
"storageRequireEncryption": true } ```-----
v1.0 Intune Deviceconfig Windows10secureassessmentconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windows10secureassessmentconfiguration-create.md
Title: "Create windows10SecureAssessmentConfiguration" description: "Create a new windows10SecureAssessmentConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windows10SecureAssessmentConfiguration](../resources/intune-deviceconfig-windows10secureassessmentconfiguration.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: 531
"allowTextSuggestion": true } ```-----
v1.0 Intune Deviceconfig Windows10secureassessmentconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windows10secureassessmentconfiguration-delete.md
Title: "Delete windows10SecureAssessmentConfiguration" description: "Deletes a windows10SecureAssessmentConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windows10SecureAssessmentConfiguration](../resources/intune-deviceconfig-windows10secureassessmentconfiguration.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 Deviceconfig Windows10secureassessmentconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windows10secureassessmentconfiguration-get.md
Title: "Get windows10SecureAssessmentConfiguration" description: "Read properties and relationships of the windows10SecureAssessmentConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windows10SecureAssessmentConfiguration](../resources/intune-deviceconfig-windows10secureassessmentconfiguration.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: 574
} } ```-----
v1.0 Intune Deviceconfig Windows10secureassessmentconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windows10secureassessmentconfiguration-list.md
Title: "List windows10SecureAssessmentConfigurations" description: "List properties and relationships of the windows10SecureAssessmentConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windows10SecureAssessmentConfiguration](../resources/intune-deviceconfig-windows10secureassessmentconfiguration.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: 612
] } ```-----
v1.0 Intune Deviceconfig Windows10secureassessmentconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windows10secureassessmentconfiguration-update.md
Title: "Update windows10SecureAssessmentConfiguration" description: "Update the properties of a windows10SecureAssessmentConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windows10SecureAssessmentConfiguration](../resources/intune-deviceconfig-windows10secureassessmentconfiguration.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: 531
"allowTextSuggestion": true } ```-----
v1.0 Intune Deviceconfig Windows10teamgeneralconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windows10teamgeneralconfiguration-create.md
Title: "Create windows10TeamGeneralConfiguration" description: "Create a new windows10TeamGeneralConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windows10TeamGeneralConfiguration](../resources/intune-deviceconfig-windows10teamgeneralconfiguration.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: 1322
"welcomeScreenMeetingInformation": "showOrganizerAndTimeOnly" } ```-----
v1.0 Intune Deviceconfig Windows10teamgeneralconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windows10teamgeneralconfiguration-delete.md
Title: "Delete windows10TeamGeneralConfiguration" description: "Deletes a windows10TeamGeneralConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windows10TeamGeneralConfiguration](../resources/intune-deviceconfig-windows10teamgeneralconfiguration.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 Deviceconfig Windows10teamgeneralconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windows10teamgeneralconfiguration-get.md
Title: "Get windows10TeamGeneralConfiguration" description: "Read properties and relationships of the windows10TeamGeneralConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windows10TeamGeneralConfiguration](../resources/intune-deviceconfig-windows10teamgeneralconfiguration.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: 1395
} } ```-----
v1.0 Intune Deviceconfig Windows10teamgeneralconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windows10teamgeneralconfiguration-list.md
Title: "List windows10TeamGeneralConfigurations" description: "List properties and relationships of the windows10TeamGeneralConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windows10TeamGeneralConfiguration](../resources/intune-deviceconfig-windows10teamgeneralconfiguration.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: 1463
] } ```-----
v1.0 Intune Deviceconfig Windows10teamgeneralconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windows10teamgeneralconfiguration-update.md
Title: "Update windows10TeamGeneralConfiguration" description: "Update the properties of a windows10TeamGeneralConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windows10TeamGeneralConfiguration](../resources/intune-deviceconfig-windows10teamgeneralconfiguration.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: 1322
"welcomeScreenMeetingInformation": "showOrganizerAndTimeOnly" } ```-----
v1.0 Intune Deviceconfig Windows81compliancepolicy Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windows81compliancepolicy-create.md
Title: "Create windows81CompliancePolicy" description: "Create a new windows81CompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windows81CompliancePolicy](../resources/intune-deviceconfig-windows81compliancepolicy.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: 774
"storageRequireEncryption": true } ```-----
v1.0 Intune Deviceconfig Windows81compliancepolicy Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windows81compliancepolicy-delete.md
Title: "Delete windows81CompliancePolicy" description: "Deletes a windows81CompliancePolicy."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windows81CompliancePolicy](../resources/intune-deviceconfig-windows81compliancepolicy.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 Deviceconfig Windows81compliancepolicy Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windows81compliancepolicy-get.md
Title: "Get windows81CompliancePolicy" description: "Read properties and relationships of the windows81CompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windows81CompliancePolicy](../resources/intune-deviceconfig-windows81compliancepolicy.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: 829
} } ```-----
v1.0 Intune Deviceconfig Windows81compliancepolicy List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windows81compliancepolicy-list.md
Title: "List windows81CompliancePolicies" description: "List properties and relationships of the windows81CompliancePolicy objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windows81CompliancePolicy](../resources/intune-deviceconfig-windows81compliancepolicy.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: 879
] } ```-----
v1.0 Intune Deviceconfig Windows81compliancepolicy Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windows81compliancepolicy-update.md
Title: "Update windows81CompliancePolicy" description: "Update the properties of a windows81CompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windows81CompliancePolicy](../resources/intune-deviceconfig-windows81compliancepolicy.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: 774
"storageRequireEncryption": true } ```-----
v1.0 Intune Deviceconfig Windows81generalconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windows81generalconfiguration-create.md
Title: "Create windows81GeneralConfiguration" description: "Create a new windows81GeneralConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windows81GeneralConfiguration](../resources/intune-deviceconfig-windows81generalconfiguration.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: 1865
"workFoldersUrl": "https://example.com/workFoldersUrl/" } ```-----
v1.0 Intune Deviceconfig Windows81generalconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windows81generalconfiguration-delete.md
Title: "Delete windows81GeneralConfiguration" description: "Deletes a windows81GeneralConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windows81GeneralConfiguration](../resources/intune-deviceconfig-windows81generalconfiguration.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 Deviceconfig Windows81generalconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windows81generalconfiguration-get.md
Title: "Get windows81GeneralConfiguration" description: "Read properties and relationships of the windows81GeneralConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windows81GeneralConfiguration](../resources/intune-deviceconfig-windows81generalconfiguration.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: 1964
} } ```-----
v1.0 Intune Deviceconfig Windows81generalconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windows81generalconfiguration-list.md
Title: "List windows81GeneralConfigurations" description: "List properties and relationships of the windows81GeneralConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windows81GeneralConfiguration](../resources/intune-deviceconfig-windows81generalconfiguration.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: 2058
] } ```-----
v1.0 Intune Deviceconfig Windows81generalconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windows81generalconfiguration-update.md
Title: "Update windows81GeneralConfiguration" description: "Update the properties of a windows81GeneralConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windows81GeneralConfiguration](../resources/intune-deviceconfig-windows81generalconfiguration.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: 1865
"workFoldersUrl": "https://example.com/workFoldersUrl/" } ```-----
v1.0 Intune Deviceconfig Windowsdefenderadvancedthreatprotectionconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windowsdefenderadvancedthreatprotectionconfiguration-create.md
Title: "Create windowsDefenderAdvancedThreatProtectionConfiguration" description: "Create a new windowsDefenderAdvancedThreatProtectionConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windowsDefenderAdvancedThreatProtectionConfiguration](../resources/intune-deviceconfig-windowsdefenderadvancedthreatprotectionconfiguration.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
"enableExpeditedTelemetryReporting": true } ```-----
v1.0 Intune Deviceconfig Windowsdefenderadvancedthreatprotectionconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windowsdefenderadvancedthreatprotectionconfiguration-delete.md
Title: "Delete windowsDefenderAdvancedThreatProtectionConfiguration" description: "Deletes a windowsDefenderAdvancedThreatProtectionConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windowsDefenderAdvancedThreatProtectionConfiguration](../resources/intune-deviceconfig-windowsdefenderadvancedthreatprotectionconfiguration.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 Deviceconfig Windowsdefenderadvancedthreatprotectionconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windowsdefenderadvancedthreatprotectionconfiguration-get.md
Title: "Get windowsDefenderAdvancedThreatProtectionConfiguration" description: "Read properties and relationships of the windowsDefenderAdvancedThreatProtectionConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsDefenderAdvancedThreatProtectionConfiguration](../resources/intune-deviceconfig-windowsdefenderadvancedthreatprotectionconfiguration.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: 476
} } ```-----
v1.0 Intune Deviceconfig Windowsdefenderadvancedthreatprotectionconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windowsdefenderadvancedthreatprotectionconfiguration-list.md
Title: "List windowsDefenderAdvancedThreatProtectionConfigurations" description: "List properties and relationships of the windowsDefenderAdvancedThreatProtectionConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsDefenderAdvancedThreatProtectionConfiguration](../resources/intune-deviceconfig-windowsdefenderadvancedthreatprotectionconfiguration.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: 508
] } ```-----
v1.0 Intune Deviceconfig Windowsdefenderadvancedthreatprotectionconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windowsdefenderadvancedthreatprotectionconfiguration-update.md
Title: "Update windowsDefenderAdvancedThreatProtectionConfiguration" description: "Update the properties of a windowsDefenderAdvancedThreatProtectionConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windowsDefenderAdvancedThreatProtectionConfiguration](../resources/intune-deviceconfig-windowsdefenderadvancedthreatprotectionconfiguration.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
"enableExpeditedTelemetryReporting": true } ```-----
v1.0 Intune Deviceconfig Windowsphone81compliancepolicy Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windowsphone81compliancepolicy-create.md
Title: "Create windowsPhone81CompliancePolicy" description: "Create a new windowsPhone81CompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windowsPhone81CompliancePolicy](../resources/intune-deviceconfig-windowsphone81compliancepolicy.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: 779
"storageRequireEncryption": true } ```-----
v1.0 Intune Deviceconfig Windowsphone81compliancepolicy Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windowsphone81compliancepolicy-delete.md
Title: "Delete windowsPhone81CompliancePolicy" description: "Deletes a windowsPhone81CompliancePolicy."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windowsPhone81CompliancePolicy](../resources/intune-deviceconfig-windowsphone81compliancepolicy.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 Deviceconfig Windowsphone81compliancepolicy Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windowsphone81compliancepolicy-get.md
Title: "Get windowsPhone81CompliancePolicy" description: "Read properties and relationships of the windowsPhone81CompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsPhone81CompliancePolicy](../resources/intune-deviceconfig-windowsphone81compliancepolicy.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: 834
} } ```-----
v1.0 Intune Deviceconfig Windowsphone81compliancepolicy List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windowsphone81compliancepolicy-list.md
Title: "List windowsPhone81CompliancePolicies" description: "List properties and relationships of the windowsPhone81CompliancePolicy objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsPhone81CompliancePolicy](../resources/intune-deviceconfig-windowsphone81compliancepolicy.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: 884
] } ```-----
v1.0 Intune Deviceconfig Windowsphone81compliancepolicy Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windowsphone81compliancepolicy-update.md
Title: "Update windowsPhone81CompliancePolicy" description: "Update the properties of a windowsPhone81CompliancePolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windowsPhone81CompliancePolicy](../resources/intune-deviceconfig-windowsphone81compliancepolicy.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: 779
"storageRequireEncryption": true } ```-----
v1.0 Intune Deviceconfig Windowsphone81customconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windowsphone81customconfiguration-create.md
Title: "Create windowsPhone81CustomConfiguration" description: "Create a new windowsPhone81CustomConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windowsPhone81CustomConfiguration](../resources/intune-deviceconfig-windowsphone81customconfiguration.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: 555
] } ```-----
v1.0 Intune Deviceconfig Windowsphone81customconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windowsphone81customconfiguration-delete.md
Title: "Delete windowsPhone81CustomConfiguration" description: "Deletes a windowsPhone81CustomConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windowsPhone81CustomConfiguration](../resources/intune-deviceconfig-windowsphone81customconfiguration.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 Deviceconfig Windowsphone81customconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windowsphone81customconfiguration-get.md
Title: "Get windowsPhone81CustomConfiguration" description: "Read properties and relationships of the windowsPhone81CustomConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsPhone81CustomConfiguration](../resources/intune-deviceconfig-windowsphone81customconfiguration.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
} } ```-----
v1.0 Intune Deviceconfig Windowsphone81customconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windowsphone81customconfiguration-list.md
Title: "List windowsPhone81CustomConfigurations" description: "List properties and relationships of the windowsPhone81CustomConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsPhone81CustomConfiguration](../resources/intune-deviceconfig-windowsphone81customconfiguration.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: 648
] } ```-----
v1.0 Intune Deviceconfig Windowsphone81customconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windowsphone81customconfiguration-update.md
Title: "Update windowsPhone81CustomConfiguration" description: "Update the properties of a windowsPhone81CustomConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windowsPhone81CustomConfiguration](../resources/intune-deviceconfig-windowsphone81customconfiguration.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: 555
] } ```-----
v1.0 Intune Deviceconfig Windowsphone81generalconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windowsphone81generalconfiguration-create.md
Title: "Create windowsPhone81GeneralConfiguration" description: "Create a new windowsPhone81GeneralConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windowsPhone81GeneralConfiguration](../resources/intune-deviceconfig-windowsphone81generalconfiguration.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: 1633
"windowsStoreBlocked": true } ```-----
v1.0 Intune Deviceconfig Windowsphone81generalconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windowsphone81generalconfiguration-delete.md
Title: "Delete windowsPhone81GeneralConfiguration" description: "Deletes a windowsPhone81GeneralConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windowsPhone81GeneralConfiguration](../resources/intune-deviceconfig-windowsphone81generalconfiguration.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 Deviceconfig Windowsphone81generalconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windowsphone81generalconfiguration-get.md
Title: "Get windowsPhone81GeneralConfiguration" description: "Read properties and relationships of the windowsPhone81GeneralConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsPhone81GeneralConfiguration](../resources/intune-deviceconfig-windowsphone81generalconfiguration.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: 1740
} } ```-----
v1.0 Intune Deviceconfig Windowsphone81generalconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windowsphone81generalconfiguration-list.md
Title: "List windowsPhone81GeneralConfigurations" description: "List properties and relationships of the windowsPhone81GeneralConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsPhone81GeneralConfiguration](../resources/intune-deviceconfig-windowsphone81generalconfiguration.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: 1842
] } ```-----
v1.0 Intune Deviceconfig Windowsphone81generalconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windowsphone81generalconfiguration-update.md
Title: "Update windowsPhone81GeneralConfiguration" description: "Update the properties of a windowsPhone81GeneralConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windowsPhone81GeneralConfiguration](../resources/intune-deviceconfig-windowsphone81generalconfiguration.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: 1633
"windowsStoreBlocked": true } ```-----
v1.0 Intune Deviceconfig Windowsupdateforbusinessconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windowsupdateforbusinessconfiguration-create.md
Title: "Create windowsUpdateForBusinessConfiguration" description: "Create a new windowsUpdateForBusinessConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windowsUpdateForBusinessConfiguration](../resources/intune-deviceconfig-windowsupdateforbusinessconfiguration.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: 2135
"allowWindows11Upgrade": true } ```-----
v1.0 Intune Deviceconfig Windowsupdateforbusinessconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windowsupdateforbusinessconfiguration-delete.md
Title: "Delete windowsUpdateForBusinessConfiguration" description: "Deletes a windowsUpdateForBusinessConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windowsUpdateForBusinessConfiguration](../resources/intune-deviceconfig-windowsupdateforbusinessconfiguration.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 Deviceconfig Windowsupdateforbusinessconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windowsupdateforbusinessconfiguration-get.md
Title: "Get windowsUpdateForBusinessConfiguration" description: "Read properties and relationships of the windowsUpdateForBusinessConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsUpdateForBusinessConfiguration](../resources/intune-deviceconfig-windowsupdateforbusinessconfiguration.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: 2248
} } ```-----
v1.0 Intune Deviceconfig Windowsupdateforbusinessconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windowsupdateforbusinessconfiguration-list.md
Title: "List windowsUpdateForBusinessConfigurations" description: "List properties and relationships of the windowsUpdateForBusinessConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsUpdateForBusinessConfiguration](../resources/intune-deviceconfig-windowsupdateforbusinessconfiguration.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: 2356
] } ```-----
v1.0 Intune Deviceconfig Windowsupdateforbusinessconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-deviceconfig-windowsupdateforbusinessconfiguration-update.md
Title: "Update windowsUpdateForBusinessConfiguration" description: "Update the properties of a windowsUpdateForBusinessConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windowsUpdateForBusinessConfiguration](../resources/intune-deviceconfig-windowsupdateforbusinessconfiguration.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: 2135
"allowWindows11Upgrade": true } ```-----
v1.0 Intune Devices Applepushnotificationcertificate Downloadapplepushnotificationcertificatesigningrequest https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-devices-applepushnotificationcertificate-downloadapplepushnotificationcertificatesigningrequest.md
Title: "downloadApplePushNotificationCertificateSigningRequest function" description: "Download Apple push notification certificate signing request"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Download Apple push notification certificate signing request
-## Prerequisites
+## Permissions
One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)|
Content-Length: 85
"value": "Download Apple Push Notification Certificate Signing Request value" } ```-----
v1.0 Intune Devices Applepushnotificationcertificate Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-devices-applepushnotificationcertificate-get.md
Title: "Get applePushNotificationCertificate" description: "Read properties and relationships of the applePushNotificationCertificate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [applePushNotificationCertificate](../resources/intune-devices-applepushnotificationcertificate.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: 633
} } ```-----
v1.0 Intune Devices Applepushnotificationcertificate Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-devices-applepushnotificationcertificate-update.md
Title: "Update applePushNotificationCertificate" description: "Update the properties of a applePushNotificationCertificate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [applePushNotificationCertificate](../resources/intune-devices-applepushnotificationcertificate.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: 594
"certificate": "Certificate value" } ```-----
v1.0 Intune Devices Detectedapp Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-devices-detectedapp-create.md
Title: "Create detectedApp" description: "Create a new detectedApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [detectedApp](../resources/intune-devices-detectedapp.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: 277
"platform": "windows" } ```-----
v1.0 Intune Devices Detectedapp Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-devices-detectedapp-delete.md
Title: "Delete detectedApp" description: "Deletes a detectedApp."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [detectedApp](../resources/intune-devices-detectedapp.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 Devices Detectedapp Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-devices-detectedapp-get.md
Title: "Get detectedApp" description: "Read properties and relationships of the detectedApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [detectedApp](../resources/intune-devices-detectedapp.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: 312
} } ```-----
v1.0 Intune Devices Detectedapp List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-devices-detectedapp-list.md
Title: "List detectedApps" description: "List properties and relationships of the detectedApp objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [detectedApp](../resources/intune-devices-detectedapp.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 Devices Detectedapp Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-devices-detectedapp-update.md
Title: "Update detectedApp" description: "Update the properties of a detectedApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [detectedApp](../resources/intune-devices-detectedapp.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: 277
"platform": "windows" } ```-----
v1.0 Intune Devices Devicecategory Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-devices-devicecategory-get.md
Title: "Get deviceCategory" description: "Read properties and relationships of the deviceCategory object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceCategory](../resources/intune-devices-devicecategory.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: 128
} } ```-----
v1.0 Intune Devices Devicecategory Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-devices-devicecategory-update.md
Title: "Update deviceCategory" description: "Update the properties of a deviceCategory object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceCategory](../resources/intune-devices-devicecategory.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: 105
"id": "f881b841-b841-f881-41b8-81f841b881f8" } ```-----
v1.0 Intune Devices Devicemanagement Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-devices-devicemanagement-get.md
Title: "Get deviceManagement" description: "Read properties and relationships of the deviceManagement object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagement](../resources/intune-devices-devicemanagement.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: 166
} } ```-----
v1.0 Intune Devices Devicemanagement Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-devices-devicemanagement-update.md
Title: "Update deviceManagement" description: "Update the properties of a deviceManagement object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagement](../resources/intune-devices-devicemanagement.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: 141
"subscriptionState": "active" } ```-----
v1.0 Intune Devices Manageddevice Bypassactivationlock https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-devices-manageddevice-bypassactivationlock.md
Title: "bypassActivationLock action" description: "Bypass activation lock"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Bypass activation lock
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Devices Manageddevice Cleanwindowsdevice https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-devices-manageddevice-cleanwindowsdevice.md
Title: "cleanWindowsDevice action" description: "Clean Windows device"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Clean Windows device
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Devices Manageddevice Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-devices-manageddevice-create.md
Title: "Create managedDevice" description: "Create a new managedDevice object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [managedDevice](../resources/intune-devices-manageddevice.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 m
|easActivationDateTime|DateTimeOffset|Exchange ActivationSync activation time of the device. This property is read-only.| |azureADRegistered|Boolean|Whether the device is Azure Active Directory registered. This property is read-only.| |deviceEnrollmentType|[deviceEnrollmentType](../resources/intune-devices-deviceenrollmenttype.md)|Enrollment type of the device. This property is read-only. Possible values are: `unknown`, `userEnrollment`, `deviceEnrollmentManager`, `appleBulkWithUser`, `appleBulkWithoutUser`, `windowsAzureADJoin`, `windowsBulkUserless`, `windowsAutoEnrollment`, `windowsBulkAzureDomainJoin`, `windowsCoManagement`, `windowsAzureADJoinUsingDeviceAuth`, `appleUserEnrollment`, `appleUserEnrollmentWithServiceAccount`.|
-|activationLockBypassCode|String|Code that allows the Activation Lock on a device to be bypassed. This property is read-only.|
+|activationLockBypassCode|String|The code that allows the Activation Lock on managed device to be bypassed. Default, is Null (Non-Default property) for this property when returned as part of managedDevice entity in LIST call. Individual GET call with select query options is needed to retrieve actual values. Supports: $select. $Search is not supported. Read-only. This property is read-only.|
|emailAddress|String|Email(s) for the user associated with the device. This property is read-only.| |azureADDeviceId|String|The unique identifier for the Azure Active Directory device. Read only. This property is read-only.| |deviceRegistrationState|[deviceRegistrationState](../resources/intune-devices-deviceregistrationstate.md)|Device registration state. This property is read-only. Possible values are: `notRegistered`, `registered`, `revoked`, `keyConflict`, `approvalPending`, `certificateReset`, `notRegisteredPendingEnrollment`, `unknown`.|
The following table shows the properties that are required when you create the m
|iccid|String|Integrated Circuit Card Identifier, it is A SIM card's unique identification number. Return default value null in LIST managedDevices. Real value only returned in singel device GET call with device id and included in select parameter. Supports: $select. $Search is not supported. Read-only. This property is read-only.| |udid|String|Unique Device Identifier for iOS and macOS devices. Return default value null in LIST managedDevices. Real value only returned in singel device GET call with device id and included in select parameter. Supports: $select. $Search is not supported. Read-only. This property is read-only.| |notes|String|Notes on the device created by IT Admin. Return default value null in LIST managedDevices. Real value only returned in singel device GET call with device id and included in select parameter. Supports: $select. $Search is not supported.|
-|ethernetMacAddress|String|Ethernet MAC. This property is read-only.|
+|ethernetMacAddress|String|Ethernet MAC. Default, is Null (Non-Default property) for this property when returned as part of managedDevice entity. Individual get call with select query options is needed to retrieve actual values. Example: deviceManagement/managedDevices({managedDeviceId})?$select=ethernetMacAddress Supports: $select. $Search is not supported. Read-only. This property is read-only.|
|physicalMemoryInBytes|Int64|Total Memory in Bytes. Return default value 0 in LIST managedDevices. Real value only returned in singel device GET call with device id and included in select parameter. Supports: $select. Default value is 0. Read-only. This property is read-only.|
Content-Length: 4991
"physicalMemoryInBytes": 5 } ```-----
v1.0 Intune Devices Manageddevice Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-devices-manageddevice-delete.md
Title: "Delete managedDevice" description: "Deletes a managedDevice."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [managedDevice](../resources/intune-devices-manageddevice.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 Devices Manageddevice Deleteuserfromsharedappledevice https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-devices-manageddevice-deleteuserfromsharedappledevice.md
Title: "deleteUserFromSharedAppleDevice action" description: "Delete user from shared Apple device"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Delete user from shared Apple device
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Devices Manageddevice Disablelostmode https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-devices-manageddevice-disablelostmode.md
Title: "disableLostMode action" description: "Disable lost mode"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Disable lost mode
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Devices Manageddevice Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-devices-manageddevice-get.md
Title: "Get managedDevice" description: "Read properties and relationships of the managedDevice object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [managedDevice](../resources/intune-devices-manageddevice.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: 5220
} } ```-----
v1.0 Intune Devices Manageddevice List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-devices-manageddevice-list.md
Title: "List managedDevices" description: "List properties and relationships of the managedDevice objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [managedDevice](../resources/intune-devices-manageddevice.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: 5444
] } ```-----
v1.0 Intune Devices Manageddevice Locatedevice https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-devices-manageddevice-locatedevice.md
Title: "locateDevice action" description: "Locate a device"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Locate a device
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Devices Manageddevice Logoutsharedappledeviceactiveuser https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-devices-manageddevice-logoutsharedappledeviceactiveuser.md
Title: "logoutSharedAppleDeviceActiveUser action" description: "Logout shared Apple device active user"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Logout shared Apple device active user
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Devices Manageddevice Rebootnow https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-devices-manageddevice-rebootnow.md
Title: "rebootNow action" description: "Reboot device"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Reboot device
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Devices Manageddevice Recoverpasscode https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-devices-manageddevice-recoverpasscode.md
Title: "recoverPasscode action" description: "Recover passcode"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Recover passcode
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Devices Manageddevice Remotelock https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-devices-manageddevice-remotelock.md
Title: "remoteLock action" description: "Remote lock"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Remote lock
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Devices Manageddevice Requestremoteassistance https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-devices-manageddevice-requestremoteassistance.md
Title: "requestRemoteAssistance action" description: "Request remote assistance"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Request remote assistance
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Devices Manageddevice Resetpasscode https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-devices-manageddevice-resetpasscode.md
Title: "resetPasscode action" description: "Reset passcode"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Reset passcode
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Devices Manageddevice Retire https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-devices-manageddevice-retire.md
Title: "retire action" description: "Retire a device"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Retire a device
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Devices Manageddevice Shutdown https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-devices-manageddevice-shutdown.md
Title: "shutDown action" description: "Shut down device"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Shut down device
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Devices Manageddevice Syncdevice https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-devices-manageddevice-syncdevice.md
Title: "syncDevice 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 Devices Manageddevice Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-devices-manageddevice-update.md
Title: "Update managedDevice" description: "Update the properties of a managedDevice object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [managedDevice](../resources/intune-devices-manageddevice.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 [
|easActivationDateTime|DateTimeOffset|Exchange ActivationSync activation time of the device. This property is read-only.| |azureADRegistered|Boolean|Whether the device is Azure Active Directory registered. This property is read-only.| |deviceEnrollmentType|[deviceEnrollmentType](../resources/intune-devices-deviceenrollmenttype.md)|Enrollment type of the device. This property is read-only. Possible values are: `unknown`, `userEnrollment`, `deviceEnrollmentManager`, `appleBulkWithUser`, `appleBulkWithoutUser`, `windowsAzureADJoin`, `windowsBulkUserless`, `windowsAutoEnrollment`, `windowsBulkAzureDomainJoin`, `windowsCoManagement`, `windowsAzureADJoinUsingDeviceAuth`, `appleUserEnrollment`, `appleUserEnrollmentWithServiceAccount`.|
-|activationLockBypassCode|String|Code that allows the Activation Lock on a device to be bypassed. This property is read-only.|
+|activationLockBypassCode|String|The code that allows the Activation Lock on managed device to be bypassed. Default, is Null (Non-Default property) for this property when returned as part of managedDevice entity in LIST call. Individual GET call with select query options is needed to retrieve actual values. Supports: $select. $Search is not supported. Read-only. This property is read-only.|
|emailAddress|String|Email(s) for the user associated with the device. This property is read-only.| |azureADDeviceId|String|The unique identifier for the Azure Active Directory device. Read only. This property is read-only.| |deviceRegistrationState|[deviceRegistrationState](../resources/intune-devices-deviceregistrationstate.md)|Device registration state. This property is read-only. Possible values are: `notRegistered`, `registered`, `revoked`, `keyConflict`, `approvalPending`, `certificateReset`, `notRegisteredPendingEnrollment`, `unknown`.|
The following table shows the properties that are required when you create the [
|iccid|String|Integrated Circuit Card Identifier, it is A SIM card's unique identification number. Return default value null in LIST managedDevices. Real value only returned in singel device GET call with device id and included in select parameter. Supports: $select. $Search is not supported. Read-only. This property is read-only.| |udid|String|Unique Device Identifier for iOS and macOS devices. Return default value null in LIST managedDevices. Real value only returned in singel device GET call with device id and included in select parameter. Supports: $select. $Search is not supported. Read-only. This property is read-only.| |notes|String|Notes on the device created by IT Admin. Return default value null in LIST managedDevices. Real value only returned in singel device GET call with device id and included in select parameter. Supports: $select. $Search is not supported.|
-|ethernetMacAddress|String|Ethernet MAC. This property is read-only.|
+|ethernetMacAddress|String|Ethernet MAC. Default, is Null (Non-Default property) for this property when returned as part of managedDevice entity. Individual get call with select query options is needed to retrieve actual values. Example: deviceManagement/managedDevices({managedDeviceId})?$select=ethernetMacAddress Supports: $select. $Search is not supported. Read-only. This property is read-only.|
|physicalMemoryInBytes|Int64|Total Memory in Bytes. Return default value 0 in LIST managedDevices. Real value only returned in singel device GET call with device id and included in select parameter. Supports: $select. Default value is 0. Read-only. This property is read-only.|
Content-Length: 4991
"physicalMemoryInBytes": 5 } ```-----
v1.0 Intune Devices Manageddevice Updatewindowsdeviceaccount https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-devices-manageddevice-updatewindowsdeviceaccount.md
Title: "updateWindowsDeviceAccount 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 Devices Manageddevice Windowsdefenderscan https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-devices-manageddevice-windowsdefenderscan.md
Title: "windowsDefenderScan 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 Devices Manageddevice Windowsdefenderupdatesignatures https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-devices-manageddevice-windowsdefenderupdatesignatures.md
Title: "windowsDefenderUpdateSignatures 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 Devices Manageddevice Wipe https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-devices-manageddevice-wipe.md
Title: "wipe action" description: "Wipe a device"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Wipe a device
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Devices Manageddeviceoverview Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-devices-manageddeviceoverview-get.md
Title: "Get managedDeviceOverview" description: "Read properties and relationships of the managedDeviceOverview object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [managedDeviceOverview](../resources/intune-devices-manageddeviceoverview.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: 1024
} } ```-----
v1.0 Intune Devices Manageddeviceoverview Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-devices-manageddeviceoverview-update.md
Title: "Update managedDeviceOverview" description: "Update the properties of a managedDeviceOverview object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [managedDeviceOverview](../resources/intune-devices-manageddeviceoverview.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: 949
} } ```-----
v1.0 Intune Devices User Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-devices-user-create.md
Title: "Create user" description: "Create a new user object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [user](../resources/intune-devices-user.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: 95
"id": "d36894ae-94ae-d368-ae94-68d3ae9468d3" } ```-----
v1.0 Intune Devices User Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-devices-user-delete.md
Title: "Delete user" description: "Deletes a user."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [user](../resources/intune-devices-user.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 Devices User Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-devices-user-get.md
Title: "Get user" description: "Read properties and relationships of the user object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [user](../resources/intune-devices-user.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: 118
} } ```-----
v1.0 Intune Devices User List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-devices-user-list.md
Title: "List users" description: "List properties and relationships of the user objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [user](../resources/intune-devices-user.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: 136
] } ```-----
v1.0 Intune Devices User Removealldevicesfrommanagement https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-devices-user-removealldevicesfrommanagement.md
Title: "removeAllDevicesFromManagement action" description: "Retire all devices from management for this user"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Retire all devices from management for this user
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Devices User Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-devices-user-update.md
Title: "Update user" description: "Update the properties of a user object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [user](../resources/intune-devices-user.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: 95
"id": "d36894ae-94ae-d368-ae94-68d3ae9468d3" } ```-----
v1.0 Intune Enrollment Devicemanagement Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-enrollment-devicemanagement-get.md
Title: "Get deviceManagement" description: "Read properties and relationships of the deviceManagement object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagement](../resources/intune-enrollment-devicemanagement.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 Enrollment Devicemanagement Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-enrollment-devicemanagement-update.md
Title: "Update deviceManagement" description: "Update the properties of a deviceManagement object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagement](../resources/intune-enrollment-devicemanagement.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": "0b283420-3420-0b28-2034-280b2034280b" } ```-----
v1.0 Intune Enrollment Importedwindowsautopilotdeviceidentity Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-enrollment-importedwindowsautopilotdeviceidentity-create.md
Title: "Create importedWindowsAutopilotDeviceIdentity" description: "Create a new importedWindowsAutopilotDeviceIdentity object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [importedWindowsAutopilotDeviceIdentity](../resources/intune-enrollment-importedwindowsautopilotdeviceidentity.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: 680
"assignedUserPrincipalName": "Assigned User Principal Name value" } ```-----
v1.0 Intune Enrollment Importedwindowsautopilotdeviceidentity Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-enrollment-importedwindowsautopilotdeviceidentity-delete.md
Title: "Delete importedWindowsAutopilotDeviceIdentity" description: "Deletes a importedWindowsAutopilotDeviceIdentity."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [importedWindowsAutopilotDeviceIdentity](../resources/intune-enrollment-importedwindowsautopilotdeviceidentity.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 Enrollment Importedwindowsautopilotdeviceidentity Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-enrollment-importedwindowsautopilotdeviceidentity-get.md
Title: "Get importedWindowsAutopilotDeviceIdentity" description: "Read properties and relationships of the importedWindowsAutopilotDeviceIdentity object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [importedWindowsAutopilotDeviceIdentity](../resources/intune-enrollment-importedwindowsautopilotdeviceidentity.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: 729
} } ```-----
v1.0 Intune Enrollment Importedwindowsautopilotdeviceidentity Import https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-enrollment-importedwindowsautopilotdeviceidentity-import.md
Title: "import 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: 773
] } ```-----
v1.0 Intune Enrollment Importedwindowsautopilotdeviceidentity List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-enrollment-importedwindowsautopilotdeviceidentity-list.md
Title: "List importedWindowsAutopilotDeviceIdentities" description: "List properties and relationships of the importedWindowsAutopilotDeviceIdentity objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [importedWindowsAutopilotDeviceIdentity](../resources/intune-enrollment-importedwindowsautopilotdeviceidentity.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: 773
] } ```-----
v1.0 Intune Enrollment Windowsautopilotdeviceidentity Assignusertodevice https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-enrollment-windowsautopilotdeviceidentity-assignusertodevice.md
Title: "assignUserToDevice action" description: "Assigns user to Autopilot devices."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Assigns user to Autopilot devices.
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Enrollment Windowsautopilotdeviceidentity Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-enrollment-windowsautopilotdeviceidentity-create.md
Title: "Create windowsAutopilotDeviceIdentity" description: "Create a new windowsAutopilotDeviceIdentity object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windowsAutopilotDeviceIdentity](../resources/intune-enrollment-windowsautopilotdeviceidentity.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: 863
"displayName": "Display Name value" } ```-----
v1.0 Intune Enrollment Windowsautopilotdeviceidentity Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-enrollment-windowsautopilotdeviceidentity-delete.md
Title: "Delete windowsAutopilotDeviceIdentity" description: "Deletes a windowsAutopilotDeviceIdentity."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windowsAutopilotDeviceIdentity](../resources/intune-enrollment-windowsautopilotdeviceidentity.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 Enrollment Windowsautopilotdeviceidentity Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-enrollment-windowsautopilotdeviceidentity-get.md
Title: "Get windowsAutopilotDeviceIdentity" description: "Read properties and relationships of the windowsAutopilotDeviceIdentity object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsAutopilotDeviceIdentity](../resources/intune-enrollment-windowsautopilotdeviceidentity.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: 918
} } ```-----
v1.0 Intune Enrollment Windowsautopilotdeviceidentity List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-enrollment-windowsautopilotdeviceidentity-list.md
Title: "List windowsAutopilotDeviceIdentities" description: "List properties and relationships of the windowsAutopilotDeviceIdentity objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsAutopilotDeviceIdentity](../resources/intune-enrollment-windowsautopilotdeviceidentity.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: 968
] } ```-----
v1.0 Intune Enrollment Windowsautopilotdeviceidentity Unassignuserfromdevice https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-enrollment-windowsautopilotdeviceidentity-unassignuserfromdevice.md
Title: "unassignUserFromDevice action" description: "Unassigns the user from an Autopilot device."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Unassigns the user from an Autopilot device.
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Enrollment Windowsautopilotdeviceidentity Updatedeviceproperties https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-enrollment-windowsautopilotdeviceidentity-updatedeviceproperties.md
Title: "updateDeviceProperties action" description: "Updates properties on Autopilot devices."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Updates properties on Autopilot devices.
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Mam Androidmanagedappprotection Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-androidmanagedappprotection-create.md
Title: "Create androidManagedAppProtection" description: "Create a new androidManagedAppProtection object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [androidManagedAppProtection](../resources/intune-mam-androidmanagedappprotection.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: 2034
"customBrowserDisplayName": "Custom Browser Display Name value" } ```-----
v1.0 Intune Mam Androidmanagedappprotection Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-androidmanagedappprotection-delete.md
Title: "Delete androidManagedAppProtection" description: "Deletes a androidManagedAppProtection."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [androidManagedAppProtection](../resources/intune-mam-androidmanagedappprotection.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 Mam Androidmanagedappprotection Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-androidmanagedappprotection-get.md
Title: "Get androidManagedAppProtection" description: "Read properties and relationships of the androidManagedAppProtection object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidManagedAppProtection](../resources/intune-mam-androidmanagedappprotection.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: 2143
} } ```-----
v1.0 Intune Mam Androidmanagedappprotection List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-androidmanagedappprotection-list.md
Title: "List androidManagedAppProtections" description: "List properties and relationships of the androidManagedAppProtection objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidManagedAppProtection](../resources/intune-mam-androidmanagedappprotection.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: 2247
] } ```-----
v1.0 Intune Mam Androidmanagedappprotection Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-androidmanagedappprotection-update.md
Title: "Update androidManagedAppProtection" description: "Update the properties of a androidManagedAppProtection object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [androidManagedAppProtection](../resources/intune-mam-androidmanagedappprotection.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: 2034
"customBrowserDisplayName": "Custom Browser Display Name value" } ```-----
v1.0 Intune Mam Androidmanagedappregistration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-androidmanagedappregistration-create.md
Title: "Create androidManagedAppRegistration" description: "Create a new androidManagedAppRegistration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [androidManagedAppRegistration](../resources/intune-mam-androidmanagedappregistration.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: 753
"version": "Version value" } ```-----
v1.0 Intune Mam Androidmanagedappregistration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-androidmanagedappregistration-get.md
Title: "Get androidManagedAppRegistration" description: "Read properties and relationships of the androidManagedAppRegistration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [androidManagedAppRegistration](../resources/intune-mam-androidmanagedappregistration.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: 810
} } ```-----
v1.0 Intune Mam Androidmanagedappregistration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-androidmanagedappregistration-list.md
Title: "List androidManagedAppRegistrations" description: "List properties and relationships of the androidManagedAppRegistration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [androidManagedAppRegistration](../resources/intune-mam-androidmanagedappregistration.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: 862
] } ```-----
v1.0 Intune Mam Defaultmanagedappprotection Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-defaultmanagedappprotection-create.md
Title: "Create defaultManagedAppProtection" description: "Create a new defaultManagedAppProtection object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [defaultManagedAppProtection](../resources/intune-mam-defaultmanagedappprotection.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: 2181
"faceIdBlocked": true } ```-----
v1.0 Intune Mam Defaultmanagedappprotection Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-defaultmanagedappprotection-delete.md
Title: "Delete defaultManagedAppProtection" description: "Deletes a defaultManagedAppProtection."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [defaultManagedAppProtection](../resources/intune-mam-defaultmanagedappprotection.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 Mam Defaultmanagedappprotection Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-defaultmanagedappprotection-get.md
Title: "Get defaultManagedAppProtection" description: "Read properties and relationships of the defaultManagedAppProtection object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [defaultManagedAppProtection](../resources/intune-mam-defaultmanagedappprotection.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: 2304
} } ```-----
v1.0 Intune Mam Defaultmanagedappprotection List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-defaultmanagedappprotection-list.md
Title: "List defaultManagedAppProtections" description: "List properties and relationships of the defaultManagedAppProtection objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [defaultManagedAppProtection](../resources/intune-mam-defaultmanagedappprotection.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: 2422
] } ```-----
v1.0 Intune Mam Defaultmanagedappprotection Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-defaultmanagedappprotection-update.md
Title: "Update defaultManagedAppProtection" description: "Update the properties of a defaultManagedAppProtection object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [defaultManagedAppProtection](../resources/intune-mam-defaultmanagedappprotection.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: 2181
"faceIdBlocked": true } ```-----
v1.0 Intune Mam Iosmanagedappprotection Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-iosmanagedappprotection-create.md
Title: "Create iosManagedAppProtection" description: "Create a new iosManagedAppProtection object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [iosManagedAppProtection](../resources/intune-mam-iosmanagedappprotection.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: 1839
"customBrowserProtocol": "Custom Browser Protocol value" } ```-----
v1.0 Intune Mam Iosmanagedappprotection Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-iosmanagedappprotection-delete.md
Title: "Delete iosManagedAppProtection" description: "Deletes a iosManagedAppProtection."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [iosManagedAppProtection](../resources/intune-mam-iosmanagedappprotection.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 Mam Iosmanagedappprotection Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-iosmanagedappprotection-get.md
Title: "Get iosManagedAppProtection" description: "Read properties and relationships of the iosManagedAppProtection object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [iosManagedAppProtection](../resources/intune-mam-iosmanagedappprotection.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: 1942
} } ```-----
v1.0 Intune Mam Iosmanagedappprotection List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-iosmanagedappprotection-list.md
Title: "List iosManagedAppProtections" description: "List properties and relationships of the iosManagedAppProtection objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [iosManagedAppProtection](../resources/intune-mam-iosmanagedappprotection.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: 2040
] } ```-----
v1.0 Intune Mam Iosmanagedappprotection Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-iosmanagedappprotection-update.md
Title: "Update iosManagedAppProtection" description: "Update the properties of a iosManagedAppProtection object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [iosManagedAppProtection](../resources/intune-mam-iosmanagedappprotection.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: 1839
"customBrowserProtocol": "Custom Browser Protocol value" } ```-----
v1.0 Intune Mam Iosmanagedappregistration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-iosmanagedappregistration-get.md
Title: "Get iosManagedAppRegistration" description: "Read properties and relationships of the iosManagedAppRegistration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [iosManagedAppRegistration](../resources/intune-mam-iosmanagedappregistration.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: 800
} } ```-----
v1.0 Intune Mam Iosmanagedappregistration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-iosmanagedappregistration-list.md
Title: "List iosManagedAppRegistrations" description: "List properties and relationships of the iosManagedAppRegistration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [iosManagedAppRegistration](../resources/intune-mam-iosmanagedappregistration.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: 852
] } ```-----
v1.0 Intune Mam Managedappconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-managedappconfiguration-get.md
Title: "Get managedAppConfiguration" description: "Read properties and relationships of the managedAppConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [managedAppConfiguration](../resources/intune-mam-managedappconfiguration.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: 550
} } ```-----
v1.0 Intune Mam Managedappconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-managedappconfiguration-list.md
Title: "List managedAppConfigurations" description: "List properties and relationships of the managedAppConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [managedAppConfiguration](../resources/intune-mam-managedappconfiguration.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: 592
] } ```-----
v1.0 Intune Mam Managedappoperation Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-managedappoperation-create.md
Title: "Create managedAppOperation" description: "Create a new managedAppOperation object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [managedAppOperation](../resources/intune-mam-managedappoperation.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: 272
"version": "Version value" } ```-----
v1.0 Intune Mam Managedappoperation Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-managedappoperation-delete.md
Title: "Delete managedAppOperation" description: "Deletes a managedAppOperation."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [managedAppOperation](../resources/intune-mam-managedappoperation.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 Mam Managedappoperation Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-managedappoperation-get.md
Title: "Get managedAppOperation" description: "Read properties and relationships of the managedAppOperation object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [managedAppOperation](../resources/intune-mam-managedappoperation.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: 303
} } ```-----
v1.0 Intune Mam Managedappoperation List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-managedappoperation-list.md
Title: "List managedAppOperations" description: "List properties and relationships of the managedAppOperation objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [managedAppOperation](../resources/intune-mam-managedappoperation.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: 329
] } ```-----
v1.0 Intune Mam Managedappoperation Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-managedappoperation-update.md
Title: "Update managedAppOperation" description: "Update the properties of a managedAppOperation object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [managedAppOperation](../resources/intune-mam-managedappoperation.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: 272
"version": "Version value" } ```-----
v1.0 Intune Mam Managedapppolicy Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-managedapppolicy-get.md
Title: "Get managedAppPolicy" description: "Read properties and relationships of the managedAppPolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [managedAppPolicy](../resources/intune-mam-managedapppolicy.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: 373
} } ```-----
v1.0 Intune Mam Managedapppolicy List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-managedapppolicy-list.md
Title: "List managedAppPolicies" description: "List properties and relationships of the managedAppPolicy objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [managedAppPolicy](../resources/intune-mam-managedapppolicy.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: 401
] } ```-----
v1.0 Intune Mam Managedapppolicy Targetapps https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-managedapppolicy-targetapps.md
Title: "targetApps 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 Mam Managedapppolicydeploymentsummary Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-managedapppolicydeploymentsummary-get.md
Title: "Get managedAppPolicyDeploymentSummary" description: "Read properties and relationships of the managedAppPolicyDeploymentSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [managedAppPolicyDeploymentSummary](../resources/intune-mam-managedapppolicydeploymentsummary.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: 688
} } ```-----
v1.0 Intune Mam Managedapppolicydeploymentsummary Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-managedapppolicydeploymentsummary-update.md
Title: "Update managedAppPolicyDeploymentSummary" description: "Update the properties of a managedAppPolicyDeploymentSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [managedAppPolicyDeploymentSummary](../resources/intune-mam-managedapppolicydeploymentsummary.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: 637
"version": "Version value" } ```-----
v1.0 Intune Mam Managedappprotection Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-managedappprotection-get.md
Title: "Get managedAppProtection" description: "Read properties and relationships of the managedAppProtection object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [managedAppProtection](../resources/intune-mam-managedappprotection.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: 1671
} } ```-----
v1.0 Intune Mam Managedappprotection List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-managedappprotection-list.md
Title: "List managedAppProtections" description: "List properties and relationships of the managedAppProtection objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [managedAppProtection](../resources/intune-mam-managedappprotection.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: 1757
] } ```-----
v1.0 Intune Mam Managedappprotection Targetapps https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-managedappprotection-targetapps.md
Title: "targetApps 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 Mam Managedappregistration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-managedappregistration-get.md
Title: "Get managedAppRegistration" description: "Read properties and relationships of the managedAppRegistration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [managedAppRegistration](../resources/intune-mam-managedappregistration.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: 803
} } ```-----
v1.0 Intune Mam Managedappregistration Getuseridswithflaggedappregistration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-managedappregistration-getuseridswithflaggedappregistration.md
Title: "getUserIdsWithFlaggedAppRegistration 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: 79
] } ```-----
v1.0 Intune Mam Managedappregistration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-managedappregistration-list.md
Title: "List managedAppRegistrations" description: "List properties and relationships of the managedAppRegistration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [managedAppRegistration](../resources/intune-mam-managedappregistration.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: 855
] } ```-----
v1.0 Intune Mam Managedappstatus Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-managedappstatus-get.md
Title: "Get managedAppStatus" description: "Read properties and relationships of the managedAppStatus object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [managedAppStatus](../resources/intune-mam-managedappstatus.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: 205
} } ```-----
v1.0 Intune Mam Managedappstatus List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-managedappstatus-list.md
Title: "List managedAppStatuses" description: "List properties and relationships of the managedAppStatus objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [managedAppStatus](../resources/intune-mam-managedappstatus.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: 227
] } ```-----
v1.0 Intune Mam Managedappstatusraw Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-managedappstatusraw-get.md
Title: "Get managedAppStatusRaw" description: "Read properties and relationships of the managedAppStatusRaw object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [managedAppStatusRaw](../resources/intune-mam-managedappstatusraw.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: 279
} } ```-----
v1.0 Intune Mam Managedappstatusraw List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-managedappstatusraw-list.md
Title: "List managedAppStatusRaws" description: "List properties and relationships of the managedAppStatusRaw objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [managedAppStatusRaw](../resources/intune-mam-managedappstatusraw.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: 307
] } ```-----
v1.0 Intune Mam Managedmobileapp Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-managedmobileapp-create.md
Title: "Create managedMobileApp" description: "Create a new managedMobileApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [managedMobileApp](../resources/intune-mam-managedmobileapp.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: 275
"version": "Version value" } ```-----
v1.0 Intune Mam Managedmobileapp Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-managedmobileapp-delete.md
Title: "Delete managedMobileApp" description: "Deletes a managedMobileApp."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [managedMobileApp](../resources/intune-mam-managedmobileapp.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 Mam Managedmobileapp Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-managedmobileapp-get.md
Title: "Get managedMobileApp" description: "Read properties and relationships of the managedMobileApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [managedMobileApp](../resources/intune-mam-managedmobileapp.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: 308
} } ```-----
v1.0 Intune Mam Managedmobileapp List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-managedmobileapp-list.md
Title: "List managedMobileApps" description: "List properties and relationships of the managedMobileApp objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [managedMobileApp](../resources/intune-mam-managedmobileapp.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: 336
] } ```-----
v1.0 Intune Mam Managedmobileapp Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-managedmobileapp-update.md
Title: "Update managedMobileApp" description: "Update the properties of a managedMobileApp object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [managedMobileApp](../resources/intune-mam-managedmobileapp.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: 275
"version": "Version value" } ```-----
v1.0 Intune Mam Mdmwindowsinformationprotectionpolicy Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-mdmwindowsinformationprotectionpolicy-create.md
Title: "Create mdmWindowsInformationProtectionPolicy" description: "Create a new mdmWindowsInformationProtectionPolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [mdmWindowsInformationProtectionPolicy](../resources/intune-mam-mdmwindowsinformationprotectionpolicy.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: 4077
"isAssigned": true } ```-----
v1.0 Intune Mam Mdmwindowsinformationprotectionpolicy Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-mdmwindowsinformationprotectionpolicy-delete.md
Title: "Delete mdmWindowsInformationProtectionPolicy" description: "Deletes a mdmWindowsInformationProtectionPolicy."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [mdmWindowsInformationProtectionPolicy](../resources/intune-mam-mdmwindowsinformationprotectionpolicy.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 Mam Mdmwindowsinformationprotectionpolicy Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-mdmwindowsinformationprotectionpolicy-get.md
Title: "Get mdmWindowsInformationProtectionPolicy" description: "Read properties and relationships of the mdmWindowsInformationProtectionPolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [mdmWindowsInformationProtectionPolicy](../resources/intune-mam-mdmwindowsinformationprotectionpolicy.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: 4346
} } ```-----
v1.0 Intune Mam Mdmwindowsinformationprotectionpolicy List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-mdmwindowsinformationprotectionpolicy-list.md
Title: "List mdmWindowsInformationProtectionPolicies" description: "List properties and relationships of the mdmWindowsInformationProtectionPolicy objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [mdmWindowsInformationProtectionPolicy](../resources/intune-mam-mdmwindowsinformationprotectionpolicy.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: 4610
] } ```-----
v1.0 Intune Mam Mdmwindowsinformationprotectionpolicy Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-mdmwindowsinformationprotectionpolicy-update.md
Title: "Update mdmWindowsInformationProtectionPolicy" description: "Update the properties of a mdmWindowsInformationProtectionPolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [mdmWindowsInformationProtectionPolicy](../resources/intune-mam-mdmwindowsinformationprotectionpolicy.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: 4077
"isAssigned": true } ```-----
v1.0 Intune Mam Targetedmanagedappconfiguration Assign https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-targetedmanagedappconfiguration-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 Mam Targetedmanagedappconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-targetedmanagedappconfiguration-create.md
Title: "Create targetedManagedAppConfiguration" description: "Create a new targetedManagedAppConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [targetedManagedAppConfiguration](../resources/intune-mam-targetedmanagedappconfiguration.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: 560
"isAssigned": true } ```-----
v1.0 Intune Mam Targetedmanagedappconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-targetedmanagedappconfiguration-delete.md
Title: "Delete targetedManagedAppConfiguration" description: "Deletes a targetedManagedAppConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [targetedManagedAppConfiguration](../resources/intune-mam-targetedmanagedappconfiguration.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 Mam Targetedmanagedappconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-targetedmanagedappconfiguration-get.md
Title: "Get targetedManagedAppConfiguration" description: "Read properties and relationships of the targetedManagedAppConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [targetedManagedAppConfiguration](../resources/intune-mam-targetedmanagedappconfiguration.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: 611
} } ```-----
v1.0 Intune Mam Targetedmanagedappconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-targetedmanagedappconfiguration-list.md
Title: "List targetedManagedAppConfigurations" description: "List properties and relationships of the targetedManagedAppConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [targetedManagedAppConfiguration](../resources/intune-mam-targetedmanagedappconfiguration.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: 657
] } ```-----
v1.0 Intune Mam Targetedmanagedappconfiguration Targetapps https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-targetedmanagedappconfiguration-targetapps.md
Title: "targetApps 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 Mam Targetedmanagedappconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-targetedmanagedappconfiguration-update.md
Title: "Update targetedManagedAppConfiguration" description: "Update the properties of a targetedManagedAppConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [targetedManagedAppConfiguration](../resources/intune-mam-targetedmanagedappconfiguration.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: 560
"isAssigned": true } ```-----
v1.0 Intune Mam Targetedmanagedapppolicyassignment Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-targetedmanagedapppolicyassignment-delete.md
Title: "Delete targetedManagedAppPolicyAssignment" description: "Deletes a targetedManagedAppPolicyAssignment."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [targetedManagedAppPolicyAssignment](../resources/intune-mam-targetedmanagedapppolicyassignment.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 Mam Targetedmanagedapppolicyassignment Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-targetedmanagedapppolicyassignment-get.md
Title: "Get targetedManagedAppPolicyAssignment" description: "Read properties and relationships of the targetedManagedAppPolicyAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [targetedManagedAppPolicyAssignment](../resources/intune-mam-targetedmanagedapppolicyassignment.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: 306
} } ```-----
v1.0 Intune Mam Targetedmanagedapppolicyassignment List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-targetedmanagedapppolicyassignment-list.md
Title: "List targetedManagedAppPolicyAssignments" description: "List properties and relationships of the targetedManagedAppPolicyAssignment objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [targetedManagedAppPolicyAssignment](../resources/intune-mam-targetedmanagedapppolicyassignment.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: 332
] } ```-----
v1.0 Intune Mam Targetedmanagedapppolicyassignment Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-targetedmanagedapppolicyassignment-update.md
Title: "Update targetedManagedAppPolicyAssignment" description: "Update the properties of a targetedManagedAppPolicyAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [targetedManagedAppPolicyAssignment](../resources/intune-mam-targetedmanagedapppolicyassignment.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: 275
} } ```-----
v1.0 Intune Mam Targetedmanagedappprotection Assign https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-targetedmanagedappprotection-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 Mam Targetedmanagedappprotection Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-targetedmanagedappprotection-get.md
Title: "Get targetedManagedAppProtection" description: "Read properties and relationships of the targetedManagedAppProtection object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [targetedManagedAppProtection](../resources/intune-mam-targetedmanagedappprotection.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: 1704
} } ```-----
v1.0 Intune Mam Targetedmanagedappprotection List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-targetedmanagedappprotection-list.md
Title: "List targetedManagedAppProtections" description: "List properties and relationships of the targetedManagedAppProtection objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [targetedManagedAppProtection](../resources/intune-mam-targetedmanagedappprotection.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: 1792
] } ```-----
v1.0 Intune Mam Targetedmanagedappprotection Targetapps https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-targetedmanagedappprotection-targetapps.md
Title: "targetApps 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 Mam User Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-user-create.md
Title: "Create user" description: "Create a new user object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [user](../resources/intune-mam-user.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: 95
"id": "d36894ae-94ae-d368-ae94-68d3ae9468d3" } ```-----
v1.0 Intune Mam User Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-user-delete.md
Title: "Delete user" description: "Deletes a user."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [user](../resources/intune-mam-user.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 Mam User Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-user-get.md
Title: "Get user" description: "Read properties and relationships of the user object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [user](../resources/intune-mam-user.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: 118
} } ```-----
v1.0 Intune Mam User Getmanagedappdiagnosticstatuses https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-user-getmanagedappdiagnosticstatuses.md
Title: "getManagedAppDiagnosticStatuses function" description: "Gets diagnostics validation status for a given user."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Gets diagnostics validation status for a given user.
-## Prerequisites
+## Permissions
One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)|
Content-Length: 249
] } ```-----
v1.0 Intune Mam User Getmanagedapppolicies https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-user-getmanagedapppolicies.md
Title: "getManagedAppPolicies function" description: "Gets app restrictions for a given user."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Gets app restrictions for a given user.
-## Prerequisites
+## Permissions
One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)|
Content-Length: 401
] } ```-----
v1.0 Intune Mam User List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-user-list.md
Title: "List users" description: "List properties and relationships of the user objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [user](../resources/intune-mam-user.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: 136
] } ```-----
v1.0 Intune Mam User Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-user-update.md
Title: "Update user" description: "Update the properties of a user object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [user](../resources/intune-mam-user.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: 95
"id": "d36894ae-94ae-d368-ae94-68d3ae9468d3" } ```-----
v1.0 Intune Mam User Wipemanagedappregistrationsbydevicetag https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-user-wipemanagedappregistrationsbydevicetag.md
Title: "wipeManagedAppRegistrationsByDeviceTag action" description: "Issues a wipe operation on an app registration with specified device tag."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Issues a wipe operation on an app registration with specified device tag.
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Mam Windowsinformationprotection Assign https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-windowsinformationprotection-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 Mam Windowsinformationprotection Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-windowsinformationprotection-get.md
Title: "Get windowsInformationProtection" description: "Read properties and relationships of the windowsInformationProtection object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsInformationProtection](../resources/intune-mam-windowsinformationprotection.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: 4231
} } ```-----
v1.0 Intune Mam Windowsinformationprotection List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-windowsinformationprotection-list.md
Title: "List windowsInformationProtections" description: "List properties and relationships of the windowsInformationProtection objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsInformationProtection](../resources/intune-mam-windowsinformationprotection.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: 4491
] } ```-----
v1.0 Intune Mam Windowsinformationprotectionapplockerfile Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-windowsinformationprotectionapplockerfile-create.md
Title: "Create windowsInformationProtectionAppLockerFile" description: "Create a new windowsInformationProtectionAppLockerFile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windowsInformationProtectionAppLockerFile](../resources/intune-mam-windowsinformationprotectionapplockerfile.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: 260
"version": "Version value" } ```-----
v1.0 Intune Mam Windowsinformationprotectionapplockerfile Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-windowsinformationprotectionapplockerfile-delete.md
Title: "Delete windowsInformationProtectionAppLockerFile" description: "Deletes a windowsInformationProtectionAppLockerFile."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windowsInformationProtectionAppLockerFile](../resources/intune-mam-windowsinformationprotectionapplockerfile.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 Mam Windowsinformationprotectionapplockerfile Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-windowsinformationprotectionapplockerfile-get.md
Title: "Get windowsInformationProtectionAppLockerFile" description: "Read properties and relationships of the windowsInformationProtectionAppLockerFile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsInformationProtectionAppLockerFile](../resources/intune-mam-windowsinformationprotectionapplockerfile.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: 291
} } ```-----
v1.0 Intune Mam Windowsinformationprotectionapplockerfile List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-windowsinformationprotectionapplockerfile-list.md
Title: "List windowsInformationProtectionAppLockerFiles" description: "List properties and relationships of the windowsInformationProtectionAppLockerFile objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsInformationProtectionAppLockerFile](../resources/intune-mam-windowsinformationprotectionapplockerfile.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: 317
] } ```-----
v1.0 Intune Mam Windowsinformationprotectionapplockerfile Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-windowsinformationprotectionapplockerfile-update.md
Title: "Update windowsInformationProtectionAppLockerFile" description: "Update the properties of a windowsInformationProtectionAppLockerFile object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windowsInformationProtectionAppLockerFile](../resources/intune-mam-windowsinformationprotectionapplockerfile.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: 260
"version": "Version value" } ```-----
v1.0 Intune Mam Windowsinformationprotectionpolicy Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-windowsinformationprotectionpolicy-create.md
Title: "Create windowsInformationProtectionPolicy" description: "Create a new windowsInformationProtectionPolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windowsInformationProtectionPolicy](../resources/intune-mam-windowsinformationprotectionpolicy.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: 4475
"daysWithoutContactBeforeUnenroll": 0 } ```-----
v1.0 Intune Mam Windowsinformationprotectionpolicy Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-windowsinformationprotectionpolicy-delete.md
Title: "Delete windowsInformationProtectionPolicy" description: "Deletes a windowsInformationProtectionPolicy."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windowsInformationProtectionPolicy](../resources/intune-mam-windowsinformationprotectionpolicy.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 Mam Windowsinformationprotectionpolicy Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-windowsinformationprotectionpolicy-get.md
Title: "Get windowsInformationProtectionPolicy" description: "Read properties and relationships of the windowsInformationProtectionPolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsInformationProtectionPolicy](../resources/intune-mam-windowsinformationprotectionpolicy.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: 4764
} } ```-----
v1.0 Intune Mam Windowsinformationprotectionpolicy List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-windowsinformationprotectionpolicy-list.md
Title: "List windowsInformationProtectionPolicies" description: "List properties and relationships of the windowsInformationProtectionPolicy objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsInformationProtectionPolicy](../resources/intune-mam-windowsinformationprotectionpolicy.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: 5048
] } ```-----
v1.0 Intune Mam Windowsinformationprotectionpolicy Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mam-windowsinformationprotectionpolicy-update.md
Title: "Update windowsInformationProtectionPolicy" description: "Update the properties of a windowsInformationProtectionPolicy object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windowsInformationProtectionPolicy](../resources/intune-mam-windowsinformationprotectionpolicy.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: 4475
"daysWithoutContactBeforeUnenroll": 0 } ```-----
v1.0 Intune Mstunnel Devicemanagement Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mstunnel-devicemanagement-get.md
Title: "Get deviceManagement" description: "Read properties and relationships of the deviceManagement object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagement](../resources/intune-mstunnel-devicemanagement.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 Mstunnel Devicemanagement Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mstunnel-devicemanagement-update.md
Title: "Update deviceManagement" description: "Update the properties of a deviceManagement object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagement](../resources/intune-mstunnel-devicemanagement.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": "0b283420-3420-0b28-2034-280b2034280b" } ```-----
v1.0 Intune Mstunnel Microsofttunnelconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mstunnel-microsofttunnelconfiguration-create.md
Title: "Create microsoftTunnelConfiguration" description: "Create a new microsoftTunnelConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [microsoftTunnelConfiguration](../resources/intune-mstunnel-microsofttunnelconfiguration.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 m
|network|String|The subnet that will be used to allocate virtual address for the clients| |dnsServers|String collection|The DNS servers that will be used by the clients| |defaultDomainSuffix|String|The Default Domain appendix that will be used by the clients|
+|routeIncludes|String collection|The routes that will be routed by the server|
+|routeExcludes|String collection|Subsets of the routes that will not be routed by the server|
|splitDNS|String collection|The domains that will be resolved using the provided dns servers| |listenPort|Int32|The port that both TCP and UPD will listen over on the server| |advancedSettings|[keyValuePair](../resources/intune-shared-keyvaluepair.md) collection|Additional settings that may be applied to the server|
Here is an example of the request.
``` http POST https://graph.microsoft.com/v1.0/deviceManagement/microsoftTunnelConfigurations Content-type: application/json
-Content-length: 670
+Content-length: 782
{ "@odata.type": "#microsoft.graph.microsoftTunnelConfiguration",
Content-length: 670
"Dns Servers value" ], "defaultDomainSuffix": "Default Domain Suffix value",
+ "routeIncludes": [
+ "Route Includes value"
+ ],
+ "routeExcludes": [
+ "Route Excludes value"
+ ],
"splitDNS": [ "Split DNS 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: 719
+Content-Length: 831
{ "@odata.type": "#microsoft.graph.microsoftTunnelConfiguration",
Content-Length: 719
"Dns Servers value" ], "defaultDomainSuffix": "Default Domain Suffix value",
+ "routeIncludes": [
+ "Route Includes value"
+ ],
+ "routeExcludes": [
+ "Route Excludes value"
+ ],
"splitDNS": [ "Split DNS value" ],
Content-Length: 719
"disableUdpConnections": true } ```-----
v1.0 Intune Mstunnel Microsofttunnelconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mstunnel-microsofttunnelconfiguration-delete.md
Title: "Delete microsoftTunnelConfiguration" description: "Deletes a microsoftTunnelConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [microsoftTunnelConfiguration](../resources/intune-mstunnel-microsofttunnelconfiguration.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 Mstunnel Microsofttunnelconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mstunnel-microsofttunnelconfiguration-get.md
Title: "Get microsoftTunnelConfiguration" description: "Read properties and relationships of the microsoftTunnelConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [microsoftTunnelConfiguration](../resources/intune-mstunnel-microsofttunnelconfiguration.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: 788
+Content-Length: 912
{ "value": {
Content-Length: 788
"Dns Servers value" ], "defaultDomainSuffix": "Default Domain Suffix value",
+ "routeIncludes": [
+ "Route Includes value"
+ ],
+ "routeExcludes": [
+ "Route Excludes value"
+ ],
"splitDNS": [ "Split DNS value" ],
Content-Length: 788
} } ```-----
v1.0 Intune Mstunnel Microsofttunnelconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mstunnel-microsofttunnelconfiguration-list.md
Title: "List microsoftTunnelConfigurations" description: "List properties and relationships of the microsoftTunnelConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [microsoftTunnelConfiguration](../resources/intune-mstunnel-microsofttunnelconfiguration.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: 852
+Content-Length: 988
{ "value": [
Content-Length: 852
"Dns Servers value" ], "defaultDomainSuffix": "Default Domain Suffix value",
+ "routeIncludes": [
+ "Route Includes value"
+ ],
+ "routeExcludes": [
+ "Route Excludes value"
+ ],
"splitDNS": [ "Split DNS value" ],
Content-Length: 852
] } ```-----
v1.0 Intune Mstunnel Microsofttunnelconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mstunnel-microsofttunnelconfiguration-update.md
Title: "Update microsoftTunnelConfiguration" description: "Update the properties of a microsoftTunnelConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [microsoftTunnelConfiguration](../resources/intune-mstunnel-microsofttunnelconfiguration.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 [
|network|String|The subnet that will be used to allocate virtual address for the clients| |dnsServers|String collection|The DNS servers that will be used by the clients| |defaultDomainSuffix|String|The Default Domain appendix that will be used by the clients|
+|routeIncludes|String collection|The routes that will be routed by the server|
+|routeExcludes|String collection|Subsets of the routes that will not be routed by the server|
|splitDNS|String collection|The domains that will be resolved using the provided dns servers| |listenPort|Int32|The port that both TCP and UPD will listen over on the server| |advancedSettings|[keyValuePair](../resources/intune-shared-keyvaluepair.md) collection|Additional settings that may be applied to the server|
Here is an example of the request.
``` http PATCH https://graph.microsoft.com/v1.0/deviceManagement/microsoftTunnelConfigurations/{microsoftTunnelConfigurationId} Content-type: application/json
-Content-length: 670
+Content-length: 782
{ "@odata.type": "#microsoft.graph.microsoftTunnelConfiguration",
Content-length: 670
"Dns Servers value" ], "defaultDomainSuffix": "Default Domain Suffix value",
+ "routeIncludes": [
+ "Route Includes value"
+ ],
+ "routeExcludes": [
+ "Route Excludes value"
+ ],
"splitDNS": [ "Split DNS 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: 719
+Content-Length: 831
{ "@odata.type": "#microsoft.graph.microsoftTunnelConfiguration",
Content-Length: 719
"Dns Servers value" ], "defaultDomainSuffix": "Default Domain Suffix value",
+ "routeIncludes": [
+ "Route Includes value"
+ ],
+ "routeExcludes": [
+ "Route Excludes value"
+ ],
"splitDNS": [ "Split DNS value" ],
Content-Length: 719
"disableUdpConnections": true } ```-----
v1.0 Intune Mstunnel Microsofttunnelhealththreshold Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mstunnel-microsofttunnelhealththreshold-create.md
Title: "Create microsoftTunnelHealthThreshold" description: "Create a new microsoftTunnelHealthThreshold object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [microsoftTunnelHealthThreshold](../resources/intune-mstunnel-microsofttunnelhealththreshold.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: 243
"defaultUnhealthyThreshold": 9 } ```-----
v1.0 Intune Mstunnel Microsofttunnelhealththreshold Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mstunnel-microsofttunnelhealththreshold-delete.md
Title: "Delete microsoftTunnelHealthThreshold" description: "Deletes a microsoftTunnelHealthThreshold."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [microsoftTunnelHealthThreshold](../resources/intune-mstunnel-microsofttunnelhealththreshold.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 Mstunnel Microsofttunnelhealththreshold Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mstunnel-microsofttunnelhealththreshold-get.md
Title: "Get microsoftTunnelHealthThreshold" description: "Read properties and relationships of the microsoftTunnelHealthThreshold object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [microsoftTunnelHealthThreshold](../resources/intune-mstunnel-microsofttunnelhealththreshold.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: 274
} } ```-----
v1.0 Intune Mstunnel Microsofttunnelhealththreshold List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mstunnel-microsofttunnelhealththreshold-list.md
Title: "List microsoftTunnelHealthThresholds" description: "List properties and relationships of the microsoftTunnelHealthThreshold objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [microsoftTunnelHealthThreshold](../resources/intune-mstunnel-microsofttunnelhealththreshold.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: 300
] } ```-----
v1.0 Intune Mstunnel Microsofttunnelhealththreshold Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mstunnel-microsofttunnelhealththreshold-update.md
Title: "Update microsoftTunnelHealthThreshold" description: "Update the properties of a microsoftTunnelHealthThreshold object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [microsoftTunnelHealthThreshold](../resources/intune-mstunnel-microsofttunnelhealththreshold.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: 243
"defaultUnhealthyThreshold": 9 } ```-----
v1.0 Intune Mstunnel Microsofttunnelserver Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mstunnel-microsofttunnelserver-create.md
Title: "Create microsoftTunnelServer" description: "Create a new microsoftTunnelServer object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [microsoftTunnelServer](../resources/intune-mstunnel-microsofttunnelserver.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 m
|:|:|:| |id|String|The unique identifier for the managed server. This id is assigned at enrollment time. Supports: $delete. $Update, $insert, $skip, $top is not supported. Read-only.| |displayName|String|The display name for the server. This property is required when a server is created and cannot be cleared during updates.|
-|tunnelServerHealthStatus|[microsoftTunnelServerHealthStatus](../resources/intune-mstunnel-microsofttunnelserverhealthstatus.md)|Indicates the server's health Status as of the last evaluation time. Health is evaluated every 60 seconds, and the possible values are: unknown, healthy, unhealthy, warning, offline, upgradeInProgress, upgradeFailed. Possible values are: `unknown`, `healthy`, `unhealthy`, `warning`, `offline`, `upgradeInProgress`, `upgradeFailed`.|
+|tunnelServerHealthStatus|[microsoftTunnelServerHealthStatus](../resources/intune-mstunnel-microsofttunnelserverhealthstatus.md)|Indicates the server's health Status as of the last evaluation time. Health is evaluated every 60 seconds, and the possible values are: unknown, healthy, unhealthy, warning, offline, upgradeInProgress, upgradeFailed. Possible values are: `unknown`, `healthy`, `unhealthy`, `warning`, `offline`, `upgradeInProgress`, `upgradeFailed`, `unknownFutureValue`.|
|lastCheckinDateTime|DateTimeOffset|Indicates when the server last checked in| |agentImageDigest|String|The digest of the current agent image running on this server| |serverImageDigest|String|The digest of the current server image running on this server|
Content-Length: 361
"serverImageDigest": "Server Image Digest value" } ```-----
v1.0 Intune Mstunnel Microsofttunnelserver Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mstunnel-microsofttunnelserver-delete.md
Title: "Delete microsoftTunnelServer" description: "Deletes a microsoftTunnelServer."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [microsoftTunnelServer](../resources/intune-mstunnel-microsofttunnelserver.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 Mstunnel Microsofttunnelserver Generateserverlogcollectionrequest https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mstunnel-microsofttunnelserver-generateserverlogcollectionrequest.md
+
+ Title: "generateServerLogCollectionRequest action"
+description: "Not yet documented"
+
+localization_priority: Normal
++
+# generateServerLogCollectionRequest action
+
+Namespace: microsoft.graph
+
+> **Note:** The Microsoft Graph API for Intune requires an [active Intune license](https://go.microsoft.com/fwlink/?linkid=839381) for the tenant.
+
+Not yet documented
+
+## Permissions
+One of the following permissions is required to 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)|DeviceManagementConfiguration.Read.All|
+|Delegated (personal Microsoft account)|Not supported.|
+|Application|DeviceManagementConfiguration.Read.All|
+
+## HTTP Request
+<!-- {
+ "blockType": "ignored"
+}
+-->
+``` http
+POST /deviceManagement/microsoftTunnelSites/{microsoftTunnelSiteId}/microsoftTunnelServers/{microsoftTunnelServerId}/generateServerLogCollectionRequest
+```
+
+## Request headers
+|Header|Value|
+|:|:|
+|Authorization|Bearer &lt;token&gt; Required.|
+|Accept|application/json|
+
+## Request body
+In the request body, supply JSON representation of the parameters.
+
+The following table shows the parameters that can be used with this action.
+
+|Property|Type|Description|
+|:|:|:|
+|startDateTime|DateTimeOffset|Not yet documented|
+|endDateTime|DateTimeOffset|Not yet documented|
+++
+## Response
+If successful, this action returns a `200 OK` response code and a [microsoftTunnelServerLogCollectionResponse](../resources/intune-mstunnel-microsofttunnelserverlogcollectionresponse.md) in the response body.
+
+## Example
+
+### Request
+Here is an example of the request.
+``` http
+POST https://graph.microsoft.com/v1.0/deviceManagement/microsoftTunnelSites/{microsoftTunnelSiteId}/microsoftTunnelServers/{microsoftTunnelServerId}/generateServerLogCollectionRequest
+
+Content-type: application/json
+Content-length: 115
+
+{
+ "startDateTime": "2016-12-31T23:58:46.7156189-08:00",
+ "endDateTime": "2017-01-01T00:03:30.9241974-08:00"
+}
+```
+
+### Response
+Here is an example of the response. Note: The response object shown here may be truncated for brevity. All of the properties will be returned from an actual call.
+``` http
+HTTP/1.1 200 OK
+Content-Type: application/json
+Content-Length: 481
+
+{
+ "value": {
+ "@odata.type": "#microsoft.graph.microsoftTunnelServerLogCollectionResponse",
+ "id": "05dcc2e9-c2e9-05dc-e9c2-dc05e9c2dc05",
+ "status": "completed",
+ "startDateTime": "2016-12-31T23:58:46.7156189-08:00",
+ "endDateTime": "2017-01-01T00:03:30.9241974-08:00",
+ "sizeInBytes": 11,
+ "serverId": "Server Id value",
+ "requestDateTime": "2017-01-01T00:03:07.1589002-08:00",
+ "expiryDateTime": "2017-01-01T00:03:32.5199332-08:00"
+ }
+}
+```
v1.0 Intune Mstunnel Microsofttunnelserver Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mstunnel-microsofttunnelserver-get.md
Title: "Get microsoftTunnelServer" description: "Read properties and relationships of the microsoftTunnelServer object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [microsoftTunnelServer](../resources/intune-mstunnel-microsofttunnelserver.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: 394
} } ```-----
v1.0 Intune Mstunnel Microsofttunnelserver List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mstunnel-microsofttunnelserver-list.md
Title: "List microsoftTunnelServers" description: "List properties and relationships of the microsoftTunnelServer objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [microsoftTunnelServer](../resources/intune-mstunnel-microsofttunnelserver.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: 422
] } ```-----
v1.0 Intune Mstunnel Microsofttunnelserver Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mstunnel-microsofttunnelserver-update.md
Title: "Update microsoftTunnelServer" description: "Update the properties of a microsoftTunnelServer object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [microsoftTunnelServer](../resources/intune-mstunnel-microsofttunnelserver.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 [
|:|:|:| |id|String|The unique identifier for the managed server. This id is assigned at enrollment time. Supports: $delete. $Update, $insert, $skip, $top is not supported. Read-only.| |displayName|String|The display name for the server. This property is required when a server is created and cannot be cleared during updates.|
-|tunnelServerHealthStatus|[microsoftTunnelServerHealthStatus](../resources/intune-mstunnel-microsofttunnelserverhealthstatus.md)|Indicates the server's health Status as of the last evaluation time. Health is evaluated every 60 seconds, and the possible values are: unknown, healthy, unhealthy, warning, offline, upgradeInProgress, upgradeFailed. Possible values are: `unknown`, `healthy`, `unhealthy`, `warning`, `offline`, `upgradeInProgress`, `upgradeFailed`.|
+|tunnelServerHealthStatus|[microsoftTunnelServerHealthStatus](../resources/intune-mstunnel-microsofttunnelserverhealthstatus.md)|Indicates the server's health Status as of the last evaluation time. Health is evaluated every 60 seconds, and the possible values are: unknown, healthy, unhealthy, warning, offline, upgradeInProgress, upgradeFailed. Possible values are: `unknown`, `healthy`, `unhealthy`, `warning`, `offline`, `upgradeInProgress`, `upgradeFailed`, `unknownFutureValue`.|
|lastCheckinDateTime|DateTimeOffset|Indicates when the server last checked in| |agentImageDigest|String|The digest of the current agent image running on this server| |serverImageDigest|String|The digest of the current server image running on this server|
Content-Length: 361
"serverImageDigest": "Server Image Digest value" } ```-----
v1.0 Intune Mstunnel Microsofttunnelserverlogcollectionresponse Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mstunnel-microsofttunnelserverlogcollectionresponse-create.md
Title: "Create microsoftTunnelServerLogCollectionResponse" description: "Create a new microsoftTunnelServerLogCollectionResponse object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [microsoftTunnelServerLogCollectionResponse](../resources/intune-mstunnel-microsofttunnelserverlogcollectionresponse.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 m
|Property|Type|Description| |:|:|:| |id|String|The unique identifier for server log collection response. Read-only.|
-|status|[microsoftTunnelLogCollectionStatus](../resources/intune-mstunnel-microsofttunnellogcollectionstatus.md)|The status of log collection. Possible values are: pending, completed, failed. Possible values are: `pending`, `completed`, `failed`.|
+|status|[microsoftTunnelLogCollectionStatus](../resources/intune-mstunnel-microsofttunnellogcollectionstatus.md)|The status of log collection. Possible values are: pending, completed, failed. Possible values are: `pending`, `completed`, `failed`, `unknownFutureValue`.|
|startDateTime|DateTimeOffset|The start time of the logs collected| |endDateTime|DateTimeOffset|The end time of the logs collected| |sizeInBytes|Int64|The size of the logs in bytes|
Content-Length: 444
"expiryDateTime": "2017-01-01T00:03:32.5199332-08:00" } ```-----
v1.0 Intune Mstunnel Microsofttunnelserverlogcollectionresponse Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mstunnel-microsofttunnelserverlogcollectionresponse-delete.md
Title: "Delete microsoftTunnelServerLogCollectionResponse" description: "Deletes a microsoftTunnelServerLogCollectionResponse."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [microsoftTunnelServerLogCollectionResponse](../resources/intune-mstunnel-microsofttunnelserverlogcollectionresponse.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 Mstunnel Microsofttunnelserverlogcollectionresponse Generatedownloadurl https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mstunnel-microsofttunnelserverlogcollectionresponse-generatedownloadurl.md
Title: "generateDownloadUrl 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: 59
"value": "https://example.com/generateDownloadUrl/" } ```-----
v1.0 Intune Mstunnel Microsofttunnelserverlogcollectionresponse Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mstunnel-microsofttunnelserverlogcollectionresponse-get.md
Title: "Get microsoftTunnelServerLogCollectionResponse" description: "Read properties and relationships of the microsoftTunnelServerLogCollectionResponse object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [microsoftTunnelServerLogCollectionResponse](../resources/intune-mstunnel-microsofttunnelserverlogcollectionresponse.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: 481
} } ```-----
v1.0 Intune Mstunnel Microsofttunnelserverlogcollectionresponse List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mstunnel-microsofttunnelserverlogcollectionresponse-list.md
Title: "List microsoftTunnelServerLogCollectionResponses" description: "List properties and relationships of the microsoftTunnelServerLogCollectionResponse objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [microsoftTunnelServerLogCollectionResponse](../resources/intune-mstunnel-microsofttunnelserverlogcollectionresponse.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: 513
] } ```-----
v1.0 Intune Mstunnel Microsofttunnelserverlogcollectionresponse Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mstunnel-microsofttunnelserverlogcollectionresponse-update.md
Title: "Update microsoftTunnelServerLogCollectionResponse" description: "Update the properties of a microsoftTunnelServerLogCollectionResponse object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [microsoftTunnelServerLogCollectionResponse](../resources/intune-mstunnel-microsofttunnelserverlogcollectionresponse.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 [
|Property|Type|Description| |:|:|:| |id|String|The unique identifier for server log collection response. Read-only.|
-|status|[microsoftTunnelLogCollectionStatus](../resources/intune-mstunnel-microsofttunnellogcollectionstatus.md)|The status of log collection. Possible values are: pending, completed, failed. Possible values are: `pending`, `completed`, `failed`.|
+|status|[microsoftTunnelLogCollectionStatus](../resources/intune-mstunnel-microsofttunnellogcollectionstatus.md)|The status of log collection. Possible values are: pending, completed, failed. Possible values are: `pending`, `completed`, `failed`, `unknownFutureValue`.|
|startDateTime|DateTimeOffset|The start time of the logs collected| |endDateTime|DateTimeOffset|The end time of the logs collected| |sizeInBytes|Int64|The size of the logs in bytes|
Content-Length: 444
"expiryDateTime": "2017-01-01T00:03:32.5199332-08:00" } ```-----
v1.0 Intune Mstunnel Microsofttunnelsite Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mstunnel-microsofttunnelsite-create.md
Title: "Create microsoftTunnelSite" description: "Create a new microsoftTunnelSite object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [microsoftTunnelSite](../resources/intune-mstunnel-microsofttunnelsite.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: 573
] } ```-----
v1.0 Intune Mstunnel Microsofttunnelsite Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mstunnel-microsofttunnelsite-delete.md
Title: "Delete microsoftTunnelSite" description: "Deletes a microsoftTunnelSite."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [microsoftTunnelSite](../resources/intune-mstunnel-microsofttunnelsite.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 Mstunnel Microsofttunnelsite Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mstunnel-microsofttunnelsite-get.md
Title: "Get microsoftTunnelSite" description: "Read properties and relationships of the microsoftTunnelSite object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [microsoftTunnelSite](../resources/intune-mstunnel-microsofttunnelsite.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: 620
} } ```-----
v1.0 Intune Mstunnel Microsofttunnelsite List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mstunnel-microsofttunnelsite-list.md
Title: "List microsoftTunnelSites" description: "List properties and relationships of the microsoftTunnelSite objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [microsoftTunnelSite](../resources/intune-mstunnel-microsofttunnelsite.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: 662
] } ```-----
v1.0 Intune Mstunnel Microsofttunnelsite Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-mstunnel-microsofttunnelsite-update.md
Title: "Update microsoftTunnelSite" description: "Update the properties of a microsoftTunnelSite object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [microsoftTunnelSite](../resources/intune-mstunnel-microsofttunnelsite.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: 573
] } ```-----
v1.0 Intune Notification Devicemanagement Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-notification-devicemanagement-get.md
Title: "Get deviceManagement" description: "Read properties and relationships of the deviceManagement object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagement](../resources/intune-notification-devicemanagement.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 Notification Devicemanagement Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-notification-devicemanagement-update.md
Title: "Update deviceManagement" description: "Update the properties of a deviceManagement object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagement](../resources/intune-notification-devicemanagement.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": "0b283420-3420-0b28-2034-280b2034280b" } ```-----
v1.0 Intune Notification Localizednotificationmessage Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-notification-localizednotificationmessage-create.md
Title: "Create localizedNotificationMessage" description: "Create a new localizedNotificationMessage object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [localizedNotificationMessage](../resources/intune-notification-localizednotificationmessage.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
"isDefault": true } ```-----
v1.0 Intune Notification Localizednotificationmessage Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-notification-localizednotificationmessage-delete.md
Title: "Delete localizedNotificationMessage" description: "Deletes a localizedNotificationMessage."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [localizedNotificationMessage](../resources/intune-notification-localizednotificationmessage.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 Notification Localizednotificationmessage Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-notification-localizednotificationmessage-get.md
Title: "Get localizedNotificationMessage" description: "Read properties and relationships of the localizedNotificationMessage object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [localizedNotificationMessage](../resources/intune-notification-localizednotificationmessage.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: 346
} } ```-----
v1.0 Intune Notification Localizednotificationmessage List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-notification-localizednotificationmessage-list.md
Title: "List localizedNotificationMessages" description: "List properties and relationships of the localizedNotificationMessage objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [localizedNotificationMessage](../resources/intune-notification-localizednotificationmessage.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: 374
] } ```-----
v1.0 Intune Notification Localizednotificationmessage Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-notification-localizednotificationmessage-update.md
Title: "Update localizedNotificationMessage" description: "Update the properties of a localizedNotificationMessage object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [localizedNotificationMessage](../resources/intune-notification-localizednotificationmessage.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
"isDefault": true } ```-----
v1.0 Intune Notification Notificationmessagetemplate Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-notification-notificationmessagetemplate-create.md
Title: "Create notificationMessageTemplate" description: "Create a new notificationMessageTemplate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [notificationMessageTemplate](../resources/intune-notification-notificationmessagetemplate.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 n
|lastModifiedDateTime|DateTimeOffset|DateTime the object was last modified.| |displayName|String|Display name for the Notification Message Template.| |defaultLocale|String|The default locale to fallback onto when the requested locale is not available.|
-|brandingOptions|[notificationTemplateBrandingOptions](../resources/intune-notification-notificationtemplatebrandingoptions.md)|The Message Template Branding Options. Branding is defined in the Intune Admin Console. Possible values are: `none`, `includeCompanyLogo`, `includeCompanyName`, `includeContactInformation`, `includeDeviceDetails`.|
+|brandingOptions|[notificationTemplateBrandingOptions](../resources/intune-notification-notificationtemplatebrandingoptions.md)|The Message Template Branding Options. Branding is defined in the Intune Admin Console. Possible values are: `none`, `includeCompanyLogo`, `includeCompanyName`, `includeContactInformation`, `includeCompanyPortalLink`, `includeDeviceDetails`.|
Content-Length: 310
"brandingOptions": "includeCompanyLogo" } ```-----
v1.0 Intune Notification Notificationmessagetemplate Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-notification-notificationmessagetemplate-delete.md
Title: "Delete notificationMessageTemplate" description: "Deletes a notificationMessageTemplate."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [notificationMessageTemplate](../resources/intune-notification-notificationmessagetemplate.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 Notification Notificationmessagetemplate Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-notification-notificationmessagetemplate-get.md
Title: "Get notificationMessageTemplate" description: "Read properties and relationships of the notificationMessageTemplate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [notificationMessageTemplate](../resources/intune-notification-notificationmessagetemplate.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: 341
} } ```-----
v1.0 Intune Notification Notificationmessagetemplate List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-notification-notificationmessagetemplate-list.md
Title: "List notificationMessageTemplates" description: "List properties and relationships of the notificationMessageTemplate objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [notificationMessageTemplate](../resources/intune-notification-notificationmessagetemplate.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: 367
] } ```-----
v1.0 Intune Notification Notificationmessagetemplate Sendtestmessage https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-notification-notificationmessagetemplate-sendtestmessage.md
Title: "sendTestMessage action" description: "Sends test message using the specified notificationMessageTemplate in the default locale"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Sends test message using the specified notificationMessageTemplate in the default locale
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Notification Notificationmessagetemplate Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-notification-notificationmessagetemplate-update.md
Title: "Update notificationMessageTemplate" description: "Update the properties of a notificationMessageTemplate object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [notificationMessageTemplate](../resources/intune-notification-notificationmessagetemplate.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 [
|lastModifiedDateTime|DateTimeOffset|DateTime the object was last modified.| |displayName|String|Display name for the Notification Message Template.| |defaultLocale|String|The default locale to fallback onto when the requested locale is not available.|
-|brandingOptions|[notificationTemplateBrandingOptions](../resources/intune-notification-notificationtemplatebrandingoptions.md)|The Message Template Branding Options. Branding is defined in the Intune Admin Console. Possible values are: `none`, `includeCompanyLogo`, `includeCompanyName`, `includeContactInformation`, `includeDeviceDetails`.|
+|brandingOptions|[notificationTemplateBrandingOptions](../resources/intune-notification-notificationtemplatebrandingoptions.md)|The Message Template Branding Options. Branding is defined in the Intune Admin Console. Possible values are: `none`, `includeCompanyLogo`, `includeCompanyName`, `includeContactInformation`, `includeCompanyPortalLink`, `includeDeviceDetails`.|
Content-Length: 310
"brandingOptions": "includeCompanyLogo" } ```-----
v1.0 Intune Onboarding Compliancemanagementpartner Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-compliancemanagementpartner-create.md
Title: "Create complianceManagementPartner" description: "Create a new complianceManagementPartner object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [complianceManagementPartner](../resources/intune-onboarding-compliancemanagementpartner.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: 1235
] } ```-----
v1.0 Intune Onboarding Compliancemanagementpartner Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-compliancemanagementpartner-delete.md
Title: "Delete complianceManagementPartner" description: "Deletes a complianceManagementPartner."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [complianceManagementPartner](../resources/intune-onboarding-compliancemanagementpartner.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 Onboarding Compliancemanagementpartner Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-compliancemanagementpartner-get.md
Title: "Get complianceManagementPartner" description: "Read properties and relationships of the complianceManagementPartner object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [complianceManagementPartner](../resources/intune-onboarding-compliancemanagementpartner.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: 1324
} } ```-----
v1.0 Intune Onboarding Compliancemanagementpartner List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-compliancemanagementpartner-list.md
Title: "List complianceManagementPartners" description: "List properties and relationships of the complianceManagementPartner objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [complianceManagementPartner](../resources/intune-onboarding-compliancemanagementpartner.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: 1408
] } ```-----
v1.0 Intune Onboarding Compliancemanagementpartner Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-compliancemanagementpartner-update.md
Title: "Update complianceManagementPartner" description: "Update the properties of a complianceManagementPartner object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [complianceManagementPartner](../resources/intune-onboarding-compliancemanagementpartner.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: 1235
] } ```-----
v1.0 Intune Onboarding Deviceappmanagement Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-deviceappmanagement-get.md
Title: "Get deviceAppManagement" description: "Read properties and relationships of the deviceAppManagement object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceAppManagement](../resources/intune-onboarding-deviceappmanagement.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: 474
} } ```-----
v1.0 Intune Onboarding Deviceappmanagement Syncmicrosoftstoreforbusinessapps https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-deviceappmanagement-syncmicrosoftstoreforbusinessapps.md
Title: "syncMicrosoftStoreForBusinessApps action" description: "Syncs Intune account with Microsoft Store For Business"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Syncs Intune account with Microsoft Store For Business
-## Prerequisites
+## Permissions
One of the following permissions is required to 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 Onboarding Deviceappmanagement Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-deviceappmanagement-update.md
Title: "Update deviceAppManagement" description: "Update the properties of a deviceAppManagement object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceAppManagement](../resources/intune-onboarding-deviceappmanagement.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: 443
"microsoftStoreForBusinessLastCompletedApplicationSyncTime": "2017-01-01T00:02:00.0421137-08:00" } ```-----
v1.0 Intune Onboarding Devicecategory Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-devicecategory-create.md
Title: "Create deviceCategory" description: "Create a new deviceCategory object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceCategory](../resources/intune-onboarding-devicecategory.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: 184
"description": "Description value" } ```-----
v1.0 Intune Onboarding Devicecategory Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-devicecategory-delete.md
Title: "Delete deviceCategory" description: "Deletes a deviceCategory."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceCategory](../resources/intune-onboarding-devicecategory.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 Onboarding Devicecategory Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-devicecategory-get.md
Title: "Get deviceCategory" description: "Read properties and relationships of the deviceCategory object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceCategory](../resources/intune-onboarding-devicecategory.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: 211
} } ```-----
v1.0 Intune Onboarding Devicecategory List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-devicecategory-list.md
Title: "List deviceCategories" description: "List properties and relationships of the deviceCategory objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceCategory](../resources/intune-onboarding-devicecategory.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: 233
] } ```-----
v1.0 Intune Onboarding Devicecategory Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-devicecategory-update.md
Title: "Update deviceCategory" description: "Update the properties of a deviceCategory object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceCategory](../resources/intune-onboarding-devicecategory.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: 184
"description": "Description value" } ```-----
v1.0 Intune Onboarding Deviceenrollmentconfiguration Assign https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-deviceenrollmentconfiguration-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 Onboarding Deviceenrollmentconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-deviceenrollmentconfiguration-get.md
Title: "Get deviceEnrollmentConfiguration" description: "Read properties and relationships of the deviceEnrollmentConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceEnrollmentConfiguration](../resources/intune-onboarding-deviceenrollmentconfiguration.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: 392
} } ```-----
v1.0 Intune Onboarding Deviceenrollmentconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-deviceenrollmentconfiguration-list.md
Title: "List deviceEnrollmentConfigurations" description: "List properties and relationships of the deviceEnrollmentConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceEnrollmentConfiguration](../resources/intune-onboarding-deviceenrollmentconfiguration.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: 422
] } ```-----
v1.0 Intune Onboarding Deviceenrollmentconfiguration Setpriority https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-deviceenrollmentconfiguration-setpriority.md
Title: "setPriority 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 Onboarding Deviceenrollmentlimitconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-deviceenrollmentlimitconfiguration-create.md
Title: "Create deviceEnrollmentLimitConfiguration" description: "Create a new deviceEnrollmentLimitConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceEnrollmentLimitConfiguration](../resources/intune-onboarding-deviceenrollmentlimitconfiguration.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: 377
"limit": 5 } ```-----
v1.0 Intune Onboarding Deviceenrollmentlimitconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-deviceenrollmentlimitconfiguration-delete.md
Title: "Delete deviceEnrollmentLimitConfiguration" description: "Deletes a deviceEnrollmentLimitConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceEnrollmentLimitConfiguration](../resources/intune-onboarding-deviceenrollmentlimitconfiguration.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 Onboarding Deviceenrollmentlimitconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-deviceenrollmentlimitconfiguration-get.md
Title: "Get deviceEnrollmentLimitConfiguration" description: "Read properties and relationships of the deviceEnrollmentLimitConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceEnrollmentLimitConfiguration](../resources/intune-onboarding-deviceenrollmentlimitconfiguration.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: 414
} } ```-----
v1.0 Intune Onboarding Deviceenrollmentlimitconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-deviceenrollmentlimitconfiguration-list.md
Title: "List deviceEnrollmentLimitConfigurations" description: "List properties and relationships of the deviceEnrollmentLimitConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceEnrollmentLimitConfiguration](../resources/intune-onboarding-deviceenrollmentlimitconfiguration.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: 446
] } ```-----
v1.0 Intune Onboarding Deviceenrollmentlimitconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-deviceenrollmentlimitconfiguration-update.md
Title: "Update deviceEnrollmentLimitConfiguration" description: "Update the properties of a deviceEnrollmentLimitConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceEnrollmentLimitConfiguration](../resources/intune-onboarding-deviceenrollmentlimitconfiguration.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: 377
"limit": 5 } ```-----
v1.0 Intune Onboarding Deviceenrollmentplatformrestrictionsconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-deviceenrollmentplatformrestrictionsconfiguration-create.md
Title: "Create deviceEnrollmentPlatformRestrictionsConfiguration" description: "Create a new deviceEnrollmentPlatformRestrictionsConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceEnrollmentPlatformRestrictionsConfiguration](../resources/intune-onboarding-deviceenrollmentplatformrestrictionsconfiguration.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: 1822
} } ```-----
v1.0 Intune Onboarding Deviceenrollmentplatformrestrictionsconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-deviceenrollmentplatformrestrictionsconfiguration-delete.md
Title: "Delete deviceEnrollmentPlatformRestrictionsConfiguration" description: "Deletes a deviceEnrollmentPlatformRestrictionsConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceEnrollmentPlatformRestrictionsConfiguration](../resources/intune-onboarding-deviceenrollmentplatformrestrictionsconfiguration.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 Onboarding Deviceenrollmentplatformrestrictionsconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-deviceenrollmentplatformrestrictionsconfiguration-get.md
Title: "Get deviceEnrollmentPlatformRestrictionsConfiguration" description: "Read properties and relationships of the deviceEnrollmentPlatformRestrictionsConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceEnrollmentPlatformRestrictionsConfiguration](../resources/intune-onboarding-deviceenrollmentplatformrestrictionsconfiguration.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: 1927
} } ```-----
v1.0 Intune Onboarding Deviceenrollmentplatformrestrictionsconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-deviceenrollmentplatformrestrictionsconfiguration-list.md
Title: "List deviceEnrollmentPlatformRestrictionsConfigurations" description: "List properties and relationships of the deviceEnrollmentPlatformRestrictionsConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceEnrollmentPlatformRestrictionsConfiguration](../resources/intune-onboarding-deviceenrollmentplatformrestrictionsconfiguration.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 Onboarding Deviceenrollmentplatformrestrictionsconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-deviceenrollmentplatformrestrictionsconfiguration-update.md
Title: "Update deviceEnrollmentPlatformRestrictionsConfiguration" description: "Update the properties of a deviceEnrollmentPlatformRestrictionsConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceEnrollmentPlatformRestrictionsConfiguration](../resources/intune-onboarding-deviceenrollmentplatformrestrictionsconfiguration.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: 1822
} } ```-----
v1.0 Intune Onboarding Deviceenrollmentwindowshelloforbusinessconfiguration Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-deviceenrollmentwindowshelloforbusinessconfiguration-create.md
Title: "Create deviceEnrollmentWindowsHelloForBusinessConfiguration" description: "Create a new deviceEnrollmentWindowsHelloForBusinessConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceEnrollmentWindowsHelloForBusinessConfiguration](../resources/intune-onboarding-deviceenrollmentwindowshelloforbusinessconfiguration.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: 801
"enhancedBiometricsState": "enabled" } ```-----
v1.0 Intune Onboarding Deviceenrollmentwindowshelloforbusinessconfiguration Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-deviceenrollmentwindowshelloforbusinessconfiguration-delete.md
Title: "Delete deviceEnrollmentWindowsHelloForBusinessConfiguration" description: "Deletes a deviceEnrollmentWindowsHelloForBusinessConfiguration."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceEnrollmentWindowsHelloForBusinessConfiguration](../resources/intune-onboarding-deviceenrollmentwindowshelloforbusinessconfiguration.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 Onboarding Deviceenrollmentwindowshelloforbusinessconfiguration Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-deviceenrollmentwindowshelloforbusinessconfiguration-get.md
Title: "Get deviceEnrollmentWindowsHelloForBusinessConfiguration" description: "Read properties and relationships of the deviceEnrollmentWindowsHelloForBusinessConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceEnrollmentWindowsHelloForBusinessConfiguration](../resources/intune-onboarding-deviceenrollmentwindowshelloforbusinessconfiguration.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: 860
} } ```-----
v1.0 Intune Onboarding Deviceenrollmentwindowshelloforbusinessconfiguration List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-deviceenrollmentwindowshelloforbusinessconfiguration-list.md
Title: "List deviceEnrollmentWindowsHelloForBusinessConfigurations" description: "List properties and relationships of the deviceEnrollmentWindowsHelloForBusinessConfiguration objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceEnrollmentWindowsHelloForBusinessConfiguration](../resources/intune-onboarding-deviceenrollmentwindowshelloforbusinessconfiguration.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: 914
] } ```-----
v1.0 Intune Onboarding Deviceenrollmentwindowshelloforbusinessconfiguration Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-deviceenrollmentwindowshelloforbusinessconfiguration-update.md
Title: "Update deviceEnrollmentWindowsHelloForBusinessConfiguration" description: "Update the properties of a deviceEnrollmentWindowsHelloForBusinessConfiguration object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceEnrollmentWindowsHelloForBusinessConfiguration](../resources/intune-onboarding-deviceenrollmentwindowshelloforbusinessconfiguration.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: 801
"enhancedBiometricsState": "enabled" } ```-----
v1.0 Intune Onboarding Devicemanagement Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-devicemanagement-get.md
Title: "Get deviceManagement" description: "Read properties and relationships of the deviceManagement object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagement](../resources/intune-onboarding-devicemanagement.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: 1230
} } ```-----
v1.0 Intune Onboarding Devicemanagement Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-devicemanagement-update.md
Title: "Update deviceManagement" description: "Update the properties of a deviceManagement object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagement](../resources/intune-onboarding-devicemanagement.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: 1147
} } ```-----
v1.0 Intune Onboarding Devicemanagement Verifywindowsenrollmentautodiscovery https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-devicemanagement-verifywindowsenrollmentautodiscovery.md
Title: "verifyWindowsEnrollmentAutoDiscovery 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: 21
"value": true } ```-----
v1.0 Intune Onboarding Devicemanagementexchangeconnector Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-devicemanagementexchangeconnector-create.md
Title: "Create deviceManagementExchangeConnector" description: "Create a new deviceManagementExchangeConnector object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceManagementExchangeConnector](../resources/intune-onboarding-devicemanagementexchangeconnector.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: 539
"exchangeOrganization": "Exchange Organization value" } ```-----
v1.0 Intune Onboarding Devicemanagementexchangeconnector Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-devicemanagementexchangeconnector-delete.md
Title: "Delete deviceManagementExchangeConnector" description: "Deletes a deviceManagementExchangeConnector."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceManagementExchangeConnector](../resources/intune-onboarding-devicemanagementexchangeconnector.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 Onboarding Devicemanagementexchangeconnector Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-devicemanagementexchangeconnector-get.md
Title: "Get deviceManagementExchangeConnector" description: "Read properties and relationships of the deviceManagementExchangeConnector object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementExchangeConnector](../resources/intune-onboarding-devicemanagementexchangeconnector.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: 580
} } ```-----
v1.0 Intune Onboarding Devicemanagementexchangeconnector List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-devicemanagementexchangeconnector-list.md
Title: "List deviceManagementExchangeConnectors" description: "List properties and relationships of the deviceManagementExchangeConnector objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceManagementExchangeConnector](../resources/intune-onboarding-devicemanagementexchangeconnector.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: 616
] } ```-----
v1.0 Intune Onboarding Devicemanagementexchangeconnector Sync https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-devicemanagementexchangeconnector-sync.md
Title: "sync 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 Onboarding Devicemanagementexchangeconnector Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-devicemanagementexchangeconnector-update.md
Title: "Update deviceManagementExchangeConnector" description: "Update the properties of a deviceManagementExchangeConnector object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementExchangeConnector](../resources/intune-onboarding-devicemanagementexchangeconnector.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: 539
"exchangeOrganization": "Exchange Organization value" } ```-----
v1.0 Intune Onboarding Devicemanagementpartner Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-devicemanagementpartner-create.md
Title: "Create deviceManagementPartner" description: "Create a new deviceManagementPartner object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceManagementPartner](../resources/intune-onboarding-devicemanagementpartner.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
"whenPartnerDevicesWillBeMarkedAsNonCompliantDateTime": "2016-12-31T23:58:42.2131231-08:00" } ```-----
v1.0 Intune Onboarding Devicemanagementpartner Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-devicemanagementpartner-delete.md
Title: "Delete deviceManagementPartner" description: "Deletes a deviceManagementPartner."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceManagementPartner](../resources/intune-onboarding-devicemanagementpartner.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 Onboarding Devicemanagementpartner Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-devicemanagementpartner-get.md
Title: "Get deviceManagementPartner" description: "Read properties and relationships of the deviceManagementPartner object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementPartner](../resources/intune-onboarding-devicemanagementpartner.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: 590
} } ```-----
v1.0 Intune Onboarding Devicemanagementpartner List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-devicemanagementpartner-list.md
Title: "List deviceManagementPartners" description: "List properties and relationships of the deviceManagementPartner objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceManagementPartner](../resources/intune-onboarding-devicemanagementpartner.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: 624
] } ```-----
v1.0 Intune Onboarding Devicemanagementpartner Terminate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-devicemanagementpartner-terminate.md
Title: "terminate 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 Onboarding Devicemanagementpartner Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-devicemanagementpartner-update.md
Title: "Update deviceManagementPartner" description: "Update the properties of a deviceManagementPartner object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementPartner](../resources/intune-onboarding-devicemanagementpartner.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
"whenPartnerDevicesWillBeMarkedAsNonCompliantDateTime": "2016-12-31T23:58:42.2131231-08:00" } ```-----
v1.0 Intune Onboarding Enrollmentconfigurationassignment Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-enrollmentconfigurationassignment-create.md
Title: "Create enrollmentConfigurationAssignment" description: "Create a new enrollmentConfigurationAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [enrollmentConfigurationAssignment](../resources/intune-onboarding-enrollmentconfigurationassignment.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: 274
} } ```-----
v1.0 Intune Onboarding Enrollmentconfigurationassignment Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-enrollmentconfigurationassignment-delete.md
Title: "Delete enrollmentConfigurationAssignment" description: "Deletes a enrollmentConfigurationAssignment."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [enrollmentConfigurationAssignment](../resources/intune-onboarding-enrollmentconfigurationassignment.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 Onboarding Enrollmentconfigurationassignment Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-enrollmentconfigurationassignment-get.md
Title: "Get enrollmentConfigurationAssignment" description: "Read properties and relationships of the enrollmentConfigurationAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [enrollmentConfigurationAssignment](../resources/intune-onboarding-enrollmentconfigurationassignment.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: 305
} } ```-----
v1.0 Intune Onboarding Enrollmentconfigurationassignment List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-enrollmentconfigurationassignment-list.md
Title: "List enrollmentConfigurationAssignments" description: "List properties and relationships of the enrollmentConfigurationAssignment objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [enrollmentConfigurationAssignment](../resources/intune-onboarding-enrollmentconfigurationassignment.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: 331
] } ```-----
v1.0 Intune Onboarding Enrollmentconfigurationassignment Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-enrollmentconfigurationassignment-update.md
Title: "Update enrollmentConfigurationAssignment" description: "Update the properties of a enrollmentConfigurationAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [enrollmentConfigurationAssignment](../resources/intune-onboarding-enrollmentconfigurationassignment.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: 274
} } ```-----
v1.0 Intune Onboarding Mobilethreatdefenseconnector Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-mobilethreatdefenseconnector-create.md
Title: "Create mobileThreatDefenseConnector" description: "Create a new mobileThreatDefenseConnector object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [mobileThreatDefenseConnector](../resources/intune-onboarding-mobilethreatdefenseconnector.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
"partnerUnresponsivenessThresholdInDays": 6 } ```-----
v1.0 Intune Onboarding Mobilethreatdefenseconnector Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-mobilethreatdefenseconnector-delete.md
Title: "Delete mobileThreatDefenseConnector" description: "Deletes a mobileThreatDefenseConnector."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [mobileThreatDefenseConnector](../resources/intune-onboarding-mobilethreatdefenseconnector.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 Onboarding Mobilethreatdefenseconnector Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-mobilethreatdefenseconnector-get.md
Title: "Get mobileThreatDefenseConnector" description: "Read properties and relationships of the mobileThreatDefenseConnector object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [mobileThreatDefenseConnector](../resources/intune-onboarding-mobilethreatdefenseconnector.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: 502
} } ```-----
v1.0 Intune Onboarding Mobilethreatdefenseconnector List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-mobilethreatdefenseconnector-list.md
Title: "List mobileThreatDefenseConnectors" description: "List properties and relationships of the mobileThreatDefenseConnector objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [mobileThreatDefenseConnector](../resources/intune-onboarding-mobilethreatdefenseconnector.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: 536
] } ```-----
v1.0 Intune Onboarding Mobilethreatdefenseconnector Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-mobilethreatdefenseconnector-update.md
Title: "Update mobileThreatDefenseConnector" description: "Update the properties of a mobileThreatDefenseConnector object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [mobileThreatDefenseConnector](../resources/intune-onboarding-mobilethreatdefenseconnector.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
"partnerUnresponsivenessThresholdInDays": 6 } ```-----
v1.0 Intune Onboarding Onpremisesconditionalaccesssettings Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-onpremisesconditionalaccesssettings-get.md
Title: "Get onPremisesConditionalAccessSettings" description: "Read properties and relationships of the onPremisesConditionalAccessSettings object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [onPremisesConditionalAccessSettings](../resources/intune-onboarding-onpremisesconditionalaccesssettings.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: 363
} } ```-----
v1.0 Intune Onboarding Onpremisesconditionalaccesssettings Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-onpremisesconditionalaccesssettings-update.md
Title: "Update onPremisesConditionalAccessSettings" description: "Update the properties of a onPremisesConditionalAccessSettings object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [onPremisesConditionalAccessSettings](../resources/intune-onboarding-onpremisesconditionalaccesssettings.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: 324
"overrideDefaultRule": true } ```-----
v1.0 Intune Onboarding Organization Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-organization-get.md
Title: "Get organization" description: "Read properties and relationships of the organization object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [organization](../resources/intune-onboarding-organization.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
} } ```-----
v1.0 Intune Onboarding Organization List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-organization-list.md
Title: "List organizations" description: "List properties and relationships of the organization objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [organization](../resources/intune-onboarding-organization.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: 196
] } ```-----
v1.0 Intune Onboarding Organization Setmobiledevicemanagementauthority https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-organization-setmobiledevicemanagementauthority.md
Title: "setMobileDeviceManagementAuthority action" description: "Set mobile device management authority"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Set mobile device management authority
-## Prerequisites
+## Permissions
One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)|
Content-Length: 18
"value": 2 } ```-----
v1.0 Intune Onboarding Organization Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-organization-update.md
Title: "Update organization" description: "Update the properties of a organization object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [organization](../resources/intune-onboarding-organization.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: 151
"mobileDeviceManagementAuthority": "intune" } ```-----
v1.0 Intune Onboarding User Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-user-create.md
Title: "Create user" description: "Create a new user object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [user](../resources/intune-onboarding-user.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: 126
"deviceEnrollmentLimit": 5 } ```-----
v1.0 Intune Onboarding User Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-user-delete.md
Title: "Delete user" description: "Deletes a user."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [user](../resources/intune-onboarding-user.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 Onboarding User Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-user-get.md
Title: "Get user" description: "Read properties and relationships of the user object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [user](../resources/intune-onboarding-user.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: 151
} } ```-----
v1.0 Intune Onboarding User List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-user-list.md
Title: "List users" description: "List properties and relationships of the user objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [user](../resources/intune-onboarding-user.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: 171
] } ```-----
v1.0 Intune Onboarding User Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-user-update.md
Title: "Update user" description: "Update the properties of a user object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [user](../resources/intune-onboarding-user.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: 126
"deviceEnrollmentLimit": 5 } ```-----
v1.0 Intune Onboarding Vpptoken Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-vpptoken-create.md
Title: "Create vppToken" description: "Create a new vppToken object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [vppToken](../resources/intune-onboarding-vpptoken.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: 574
"countryOrRegion": "Country Or Region value" } ```-----
v1.0 Intune Onboarding Vpptoken Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-vpptoken-delete.md
Title: "Delete vppToken" description: "Deletes a vppToken."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [vppToken](../resources/intune-onboarding-vpptoken.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 Onboarding Vpptoken Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-vpptoken-get.md
Title: "Get vppToken" description: "Read properties and relationships of the vppToken object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [vppToken](../resources/intune-onboarding-vpptoken.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: 619
} } ```-----
v1.0 Intune Onboarding Vpptoken List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-vpptoken-list.md
Title: "List vppTokens" description: "List properties and relationships of the vppToken objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [vppToken](../resources/intune-onboarding-vpptoken.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: 659
] } ```-----
v1.0 Intune Onboarding Vpptoken Synclicenses https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-vpptoken-synclicenses.md
Title: "syncLicenses action" description: "Syncs licenses associated with a specific appleVolumePurchaseProgramToken"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Syncs licenses associated with a specific appleVolumePurchaseProgramToken
-## Prerequisites
+## Permissions
One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference). |Permission type|Permissions (from least to most privileged)|
Content-Length: 619
} } ```-----
v1.0 Intune Onboarding Vpptoken Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-onboarding-vpptoken-update.md
Title: "Update vppToken" description: "Update the properties of a vppToken object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [vppToken](../resources/intune-onboarding-vpptoken.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: 574
"countryOrRegion": "Country Or Region value" } ```-----
v1.0 Intune Rbac Deviceandappmanagementroleassignment Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-rbac-deviceandappmanagementroleassignment-create.md
Title: "Create deviceAndAppManagementRoleAssignment" description: "Create a new deviceAndAppManagementRoleAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceAndAppManagementRoleAssignment](../resources/intune-rbac-deviceandappmanagementroleassignment.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: 307
] } ```-----
v1.0 Intune Rbac Deviceandappmanagementroleassignment Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-rbac-deviceandappmanagementroleassignment-delete.md
Title: "Delete deviceAndAppManagementRoleAssignment" description: "Deletes a deviceAndAppManagementRoleAssignment."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceAndAppManagementRoleAssignment](../resources/intune-rbac-deviceandappmanagementroleassignment.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 Rbac Deviceandappmanagementroleassignment Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-rbac-deviceandappmanagementroleassignment-get.md
Title: "Get deviceAndAppManagementRoleAssignment" description: "Read properties and relationships of the deviceAndAppManagementRoleAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceAndAppManagementRoleAssignment](../resources/intune-rbac-deviceandappmanagementroleassignment.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: 346
} } ```-----
v1.0 Intune Rbac Deviceandappmanagementroleassignment List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-rbac-deviceandappmanagementroleassignment-list.md
Title: "List deviceAndAppManagementRoleAssignments" description: "List properties and relationships of the deviceAndAppManagementRoleAssignment objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceAndAppManagementRoleAssignment](../resources/intune-rbac-deviceandappmanagementroleassignment.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: 380
] } ```-----
v1.0 Intune Rbac Deviceandappmanagementroleassignment Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-rbac-deviceandappmanagementroleassignment-update.md
Title: "Update deviceAndAppManagementRoleAssignment" description: "Update the properties of a deviceAndAppManagementRoleAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceAndAppManagementRoleAssignment](../resources/intune-rbac-deviceandappmanagementroleassignment.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: 307
] } ```-----
v1.0 Intune Rbac Deviceandappmanagementroledefinition Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-rbac-deviceandappmanagementroledefinition-create.md
Title: "Create deviceAndAppManagementRoleDefinition" description: "Create a new deviceAndAppManagementRoleDefinition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceAndAppManagementRoleDefinition](../resources/intune-rbac-deviceandappmanagementroledefinition.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
"isBuiltIn": true } ```-----
v1.0 Intune Rbac Deviceandappmanagementroledefinition Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-rbac-deviceandappmanagementroledefinition-delete.md
Title: "Delete deviceAndAppManagementRoleDefinition" description: "Deletes a deviceAndAppManagementRoleDefinition."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceAndAppManagementRoleDefinition](../resources/intune-rbac-deviceandappmanagementroledefinition.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 Rbac Deviceandappmanagementroledefinition Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-rbac-deviceandappmanagementroledefinition-get.md
Title: "Get deviceAndAppManagementRoleDefinition" description: "Read properties and relationships of the deviceAndAppManagementRoleDefinition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceAndAppManagementRoleDefinition](../resources/intune-rbac-deviceandappmanagementroledefinition.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 Rbac Deviceandappmanagementroledefinition List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-rbac-deviceandappmanagementroledefinition-list.md
Title: "List deviceAndAppManagementRoleDefinitions" description: "List properties and relationships of the deviceAndAppManagementRoleDefinition objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceAndAppManagementRoleDefinition](../resources/intune-rbac-deviceandappmanagementroledefinition.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: 768
] } ```-----
v1.0 Intune Rbac Deviceandappmanagementroledefinition Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-rbac-deviceandappmanagementroledefinition-update.md
Title: "Update deviceAndAppManagementRoleDefinition" description: "Update the properties of a deviceAndAppManagementRoleDefinition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceAndAppManagementRoleDefinition](../resources/intune-rbac-deviceandappmanagementroledefinition.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
"isBuiltIn": true } ```-----
v1.0 Intune Rbac Devicemanagement Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-rbac-devicemanagement-get.md
Title: "Get deviceManagement" description: "Read properties and relationships of the deviceManagement object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagement](../resources/intune-rbac-devicemanagement.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 Rbac Devicemanagement Geteffectivepermissions https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-rbac-devicemanagement-geteffectivepermissions.md
Title: "getEffectivePermissions function" description: "Retrieves the effective permissions of the currently authenticated user"-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Retrieves the effective permissions of the currently authenticated user
-## Prerequisites
+## Permissions
One of the following permissions is required to call this 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 Rbac Devicemanagement Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-rbac-devicemanagement-update.md
Title: "Update deviceManagement" description: "Update the properties of a deviceManagement object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagement](../resources/intune-rbac-devicemanagement.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": "0b283420-3420-0b28-2034-280b2034280b" } ```-----
v1.0 Intune Rbac Resourceoperation Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-rbac-resourceoperation-create.md
Title: "Create resourceOperation" description: "Create a new resourceOperation object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [resourceOperation](../resources/intune-rbac-resourceoperation.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: 227
"description": "Description value" } ```-----
v1.0 Intune Rbac Resourceoperation Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-rbac-resourceoperation-delete.md
Title: "Delete resourceOperation" description: "Deletes a resourceOperation."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [resourceOperation](../resources/intune-rbac-resourceoperation.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 Rbac Resourceoperation Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-rbac-resourceoperation-get.md
Title: "Get resourceOperation" description: "Read properties and relationships of the resourceOperation object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [resourceOperation](../resources/intune-rbac-resourceoperation.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: 256
} } ```-----
v1.0 Intune Rbac Resourceoperation List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-rbac-resourceoperation-list.md
Title: "List resourceOperations" description: "List properties and relationships of the resourceOperation objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [resourceOperation](../resources/intune-rbac-resourceoperation.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: 280
] } ```-----
v1.0 Intune Rbac Resourceoperation Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-rbac-resourceoperation-update.md
Title: "Update resourceOperation" description: "Update the properties of a resourceOperation object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [resourceOperation](../resources/intune-rbac-resourceoperation.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: 227
"description": "Description value" } ```-----
v1.0 Intune Rbac Roleassignment Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-rbac-roleassignment-create.md
Title: "Create roleAssignment" description: "Create a new roleAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [roleAssignment](../resources/intune-rbac-roleassignment.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 Rbac Roleassignment Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-rbac-roleassignment-delete.md
Title: "Delete roleAssignment" description: "Deletes a roleAssignment."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [roleAssignment](../resources/intune-rbac-roleassignment.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 Rbac Roleassignment Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-rbac-roleassignment-get.md
Title: "Get roleAssignment" description: "Read properties and relationships of the roleAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [roleAssignment](../resources/intune-rbac-roleassignment.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: 275
} } ```-----
v1.0 Intune Rbac Roleassignment List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-rbac-roleassignment-list.md
Title: "List roleAssignments" description: "List properties and relationships of the roleAssignment objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [roleAssignment](../resources/intune-rbac-roleassignment.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: 303
] } ```-----
v1.0 Intune Rbac Roleassignment Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-rbac-roleassignment-update.md
Title: "Update roleAssignment" description: "Update the properties of a roleAssignment object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [roleAssignment](../resources/intune-rbac-roleassignment.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 Rbac Roledefinition Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-rbac-roledefinition-create.md
Title: "Create roleDefinition" description: "Create a new roleDefinition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [roleDefinition](../resources/intune-rbac-roledefinition.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: 629
"isBuiltIn": true } ```-----
v1.0 Intune Rbac Roledefinition Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-rbac-roledefinition-delete.md
Title: "Delete roleDefinition" description: "Deletes a roleDefinition."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [roleDefinition](../resources/intune-rbac-roledefinition.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 Rbac Roledefinition Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-rbac-roledefinition-get.md
Title: "Get roleDefinition" description: "Read properties and relationships of the roleDefinition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [roleDefinition](../resources/intune-rbac-roledefinition.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: 690
} } ```-----
v1.0 Intune Rbac Roledefinition List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-rbac-roledefinition-list.md
Title: "List roleDefinitions" description: "List properties and relationships of the roleDefinition objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [roleDefinition](../resources/intune-rbac-roledefinition.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: 746
] } ```-----
v1.0 Intune Rbac Roledefinition Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-rbac-roledefinition-update.md
Title: "Update roleDefinition" description: "Update the properties of a roleDefinition object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [roleDefinition](../resources/intune-rbac-roledefinition.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: 629
"isBuiltIn": true } ```-----
v1.0 Intune Reporting Devicemanagement Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-reporting-devicemanagement-get.md
Title: "Get deviceManagement" description: "Read properties and relationships of the deviceManagement object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagement](../resources/intune-reporting-devicemanagement.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 Reporting Devicemanagement Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-reporting-devicemanagement-update.md
Title: "Update deviceManagement" description: "Update the properties of a deviceManagement object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagement](../resources/intune-reporting-devicemanagement.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": "0b283420-3420-0b28-2034-280b2034280b" } ```-----
v1.0 Intune Reporting Devicemanagementexportjob Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-reporting-devicemanagementexportjob-create.md
Title: "Create deviceManagementExportJob" description: "Create a new deviceManagementExportJob object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [deviceManagementExportJob](../resources/intune-reporting-devicemanagementexportjob.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: 504
"expirationDateTime": "2016-12-31T23:57:57.2481234-08:00" } ```-----
v1.0 Intune Reporting Devicemanagementexportjob Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-reporting-devicemanagementexportjob-delete.md
Title: "Delete deviceManagementExportJob" description: "Deletes a deviceManagementExportJob."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [deviceManagementExportJob](../resources/intune-reporting-devicemanagementexportjob.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 Reporting Devicemanagementexportjob Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-reporting-devicemanagementexportjob-get.md
Title: "Get deviceManagementExportJob" description: "Read properties and relationships of the deviceManagementExportJob object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagementExportJob](../resources/intune-reporting-devicemanagementexportjob.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 Reporting Devicemanagementexportjob List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-reporting-devicemanagementexportjob-list.md
Title: "List deviceManagementExportJobs" description: "List properties and relationships of the deviceManagementExportJob objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [deviceManagementExportJob](../resources/intune-reporting-devicemanagementexportjob.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: 593
] } ```-----
v1.0 Intune Reporting Devicemanagementexportjob Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-reporting-devicemanagementexportjob-update.md
Title: "Update deviceManagementExportJob" description: "Update the properties of a deviceManagementExportJob object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagementExportJob](../resources/intune-reporting-devicemanagementexportjob.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: 504
"expirationDateTime": "2016-12-31T23:57:57.2481234-08:00" } ```-----
v1.0 Intune Reporting Devicemanagementreports Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-reporting-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-reporting-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: 137
} } ```-----
v1.0 Intune Reporting Devicemanagementreports Getcachedreport https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-reporting-devicemanagementreports-getcachedreport.md
Title: "getCachedReport 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: 79
"value": "Z2V0Q2FjaGVkUmVwb3J0IEludHVuZSBEb2MgU2FtcGxlIDc5MjIxODQ3OA==" } ```-----
v1.0 Intune Reporting Devicemanagementreports Getcompliancepolicynoncompliancereport https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-reporting-devicemanagementreports-getcompliancepolicynoncompliancereport.md
Title: "getCompliancePolicyNonComplianceReport 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: 111
"value": "Z2V0Q29tcGxpYW5jZVBvbGljeU5vbkNvbXBsaWFuY2VSZXBvcnQgSW50dW5lIERvYyBTYW1wbGUgMTA0ODU4MDU5OQ==" } ```-----
v1.0 Intune Reporting Devicemanagementreports Getcompliancepolicynoncompliancesummaryreport https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-reporting-devicemanagementreports-getcompliancepolicynoncompliancesummaryreport.md
Title: "getCompliancePolicyNonComplianceSummaryReport 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: 119
"value": "Z2V0Q29tcGxpYW5jZVBvbGljeU5vbkNvbXBsaWFuY2VTdW1tYXJ5UmVwb3J0IEludHVuZSBEb2MgU2FtcGxlIDg4MTYwMDMxNQ==" } ```-----
v1.0 Intune Reporting Devicemanagementreports Getcompliancesettingnoncompliancereport https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-reporting-devicemanagementreports-getcompliancesettingnoncompliancereport.md
Title: "getComplianceSettingNonComplianceReport 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: 111
"value": "Z2V0Q29tcGxpYW5jZVNldHRpbmdOb25Db21wbGlhbmNlUmVwb3J0IEludHVuZSBEb2MgU2FtcGxlIDU0NDgzMTA0NQ==" } ```-----
v1.0 Intune Reporting Devicemanagementreports Getconfigurationpolicynoncompliancereport https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-reporting-devicemanagementreports-getconfigurationpolicynoncompliancereport.md
Title: "getConfigurationPolicyNonComplianceReport 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: 115
"value": "Z2V0Q29uZmlndXJhdGlvblBvbGljeU5vbkNvbXBsaWFuY2VSZXBvcnQgSW50dW5lIERvYyBTYW1wbGUgLTE2MTk2MDUzMTI=" } ```-----
v1.0 Intune Reporting Devicemanagementreports Getconfigurationpolicynoncompliancesummaryreport https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-reporting-devicemanagementreports-getconfigurationpolicynoncompliancesummaryreport.md
Title: "getConfigurationPolicyNonComplianceSummaryReport 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: 123
"value": "Z2V0Q29uZmlndXJhdGlvblBvbGljeU5vbkNvbXBsaWFuY2VTdW1tYXJ5UmVwb3J0IEludHVuZSBEb2MgU2FtcGxlIC0xNjM2NzI4OTg4" } ```-----
v1.0 Intune Reporting Devicemanagementreports Getconfigurationsettingnoncompliancereport https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-reporting-devicemanagementreports-getconfigurationsettingnoncompliancereport.md
Title: "getConfigurationSettingNonComplianceReport 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: 115
"value": "Z2V0Q29uZmlndXJhdGlvblNldHRpbmdOb25Db21wbGlhbmNlUmVwb3J0IEludHVuZSBEb2MgU2FtcGxlIDIxMDczMDYzMzQ=" } ```-----
v1.0 Intune Reporting Devicemanagementreports Getdevicemanagementintentpersettingcontributingprofiles https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-reporting-devicemanagementreports-getdevicemanagementintentpersettingcontributingprofiles.md
Title: "getDeviceManagementIntentPerSettingContributingProfiles 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: 131
"value": "Z2V0RGV2aWNlTWFuYWdlbWVudEludGVudFBlclNldHRpbmdDb250cmlidXRpbmdQcm9maWxlcyBJbnR1bmUgRG9jIFNhbXBsZSA4OTc0NTYyMg==" } ```-----
v1.0 Intune Reporting Devicemanagementreports Getdevicemanagementintentsettingsreport https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-reporting-devicemanagementreports-getdevicemanagementintentsettingsreport.md
Title: "getDeviceManagementIntentSettingsReport 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: 111
"value": "Z2V0RGV2aWNlTWFuYWdlbWVudEludGVudFNldHRpbmdzUmVwb3J0IEludHVuZSBEb2MgU2FtcGxlIDc2OTIyMjczOA==" } ```-----
v1.0 Intune Reporting Devicemanagementreports Getdevicenoncompliancereport https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-reporting-devicemanagementreports-getdevicenoncompliancereport.md
Title: "getDeviceNonComplianceReport 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: 99
"value": "Z2V0RGV2aWNlTm9uQ29tcGxpYW5jZVJlcG9ydCBJbnR1bmUgRG9jIFNhbXBsZSAtMTY1MDA3NDI3OA==" } ```-----
v1.0 Intune Reporting Devicemanagementreports Getdeviceswithoutcompliancepolicyreport https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-reporting-devicemanagementreports-getdeviceswithoutcompliancepolicyreport.md
+
+ Title: "getDevicesWithoutCompliancePolicyReport action"
+description: "Not yet documented"
+
+localization_priority: Normal
++
+# getDevicesWithoutCompliancePolicyReport action
+
+Namespace: microsoft.graph
+
+> **Note:** The Microsoft Graph API for Intune requires an [active Intune license](https://go.microsoft.com/fwlink/?linkid=839381) for the tenant.
+
+Not yet documented
+
+## Permissions
+One of the following permissions is required to 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)|DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementApps.Read.All, DeviceManagementApps.ReadWrite.All, DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All|
+|Delegated (personal Microsoft account)|Not supported.|
+|Application|DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementApps.Read.All, DeviceManagementApps.ReadWrite.All, DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All|
+
+## HTTP Request
+<!-- {
+ "blockType": "ignored"
+}
+-->
+``` http
+POST /deviceManagement/reports/getDevicesWithoutCompliancePolicyReport
+```
+
+## Request headers
+|Header|Value|
+|:|:|
+|Authorization|Bearer &lt;token&gt; Required.|
+|Accept|application/json|
+
+## Request body
+In the request body, supply JSON representation of the parameters.
+
+The following table shows the parameters that can be used with this action.
+
+|Property|Type|Description|
+|:|:|:|
+|name|String|Not yet documented|
+|select|String collection|Not yet documented|
+|search|String|Not yet documented|
+|groupBy|String collection|Not yet documented|
+|orderBy|String collection|Not yet documented|
+|skip|Int32|Not yet documented|
+|top|Int32|Not yet documented|
+|sessionId|String|Not yet documented|
+|filter|String|Not yet documented|
+++
+## Response
+If successful, this action returns a `200 OK` response code and a Stream in the response body.
+
+## Example
+
+### Request
+Here is an example of the request.
+``` http
+POST https://graph.microsoft.com/v1.0/deviceManagement/reports/getDevicesWithoutCompliancePolicyReport
+
+Content-type: application/json
+Content-length: 278
+
+{
+ "name": "Name value",
+ "select": [
+ "Select value"
+ ],
+ "search": "Search value",
+ "groupBy": [
+ "Group By value"
+ ],
+ "orderBy": [
+ "Order By value"
+ ],
+ "skip": 4,
+ "top": 3,
+ "sessionId": "Session Id value",
+ "filter": "Filter value"
+}
+```
+
+### Response
+Here is an example of the response. Note: The response object shown here may be truncated for brevity. All of the properties will be returned from an actual call.
+``` http
+HTTP/1.1 200 OK
+Content-Type: application/json
+Content-Length: 111
+
+{
+ "value": "Z2V0RGV2aWNlc1dpdGhvdXRDb21wbGlhbmNlUG9saWN5UmVwb3J0IEludHVuZSBEb2MgU2FtcGxlIC05MzE0NjE1NDQ="
+}
+```
v1.0 Intune Reporting Devicemanagementreports Gethistoricalreport https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-reporting-devicemanagementreports-gethistoricalreport.md
Title: "getHistoricalReport 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: 83
"value": "Z2V0SGlzdG9yaWNhbFJlcG9ydCBJbnR1bmUgRG9jIFNhbXBsZSAxNjE5NjA4MTY0" } ```-----
v1.0 Intune Reporting Devicemanagementreports Getnoncompliantdevicesandsettingsreport https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-reporting-devicemanagementreports-getnoncompliantdevicesandsettingsreport.md
Title: "getNoncompliantDevicesAndSettingsReport 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: 111
"value": "Z2V0Tm9uY29tcGxpYW50RGV2aWNlc0FuZFNldHRpbmdzUmVwb3J0IEludHVuZSBEb2MgU2FtcGxlIC0yMDEyNTMxMjQ3" } ```-----
v1.0 Intune Reporting Devicemanagementreports Getpolicynoncompliancemetadata https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-reporting-devicemanagementreports-getpolicynoncompliancemetadata.md
Title: "getPolicyNonComplianceMetadata 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: 99
"value": "Z2V0UG9saWN5Tm9uQ29tcGxpYW5jZU1ldGFkYXRhIEludHVuZSBEb2MgU2FtcGxlIC0xNzM5NTg5Nzc5" } ```-----
v1.0 Intune Reporting Devicemanagementreports Getpolicynoncompliancereport https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-reporting-devicemanagementreports-getpolicynoncompliancereport.md
Title: "getPolicyNonComplianceReport 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": "Z2V0UG9saWN5Tm9uQ29tcGxpYW5jZVJlcG9ydCBJbnR1bmUgRG9jIFNhbXBsZSAtNjU2NTI5OTUw" } ```-----
v1.0 Intune Reporting Devicemanagementreports Getpolicynoncompliancesummaryreport https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-reporting-devicemanagementreports-getpolicynoncompliancesummaryreport.md
Title: "getPolicyNonComplianceSummaryReport 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: 107
"value": "Z2V0UG9saWN5Tm9uQ29tcGxpYW5jZVN1bW1hcnlSZXBvcnQgSW50dW5lIERvYyBTYW1wbGUgLTQzMjEwMjAyNg==" } ```-----
v1.0 Intune Reporting Devicemanagementreports Getreportfilters https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-reporting-devicemanagementreports-getreportfilters.md
Title: "getReportFilters 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: 79
"value": "Z2V0UmVwb3J0RmlsdGVycyBJbnR1bmUgRG9jIFNhbXBsZSAxMzYxOTI0Mjkx" } ```-----
v1.0 Intune Reporting Devicemanagementreports Getsettingnoncompliancereport https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-reporting-devicemanagementreports-getsettingnoncompliancereport.md
Title: "getSettingNonComplianceReport 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: 99
"value": "Z2V0U2V0dGluZ05vbkNvbXBsaWFuY2VSZXBvcnQgSW50dW5lIERvYyBTYW1wbGUgMTEwMDk1MTE2MA==" } ```-----
v1.0 Intune Reporting Devicemanagementreports Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-reporting-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-reporting-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: 114
"id": "d6a697d3-97d3-d6a6-d397-a6d6d397a6d6" } ```-----
v1.0 Intune Tem Devicemanagement Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-tem-devicemanagement-get.md
Title: "Get deviceManagement" description: "Read properties and relationships of the deviceManagement object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagement](../resources/intune-tem-devicemanagement.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 Tem Devicemanagement Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-tem-devicemanagement-update.md
Title: "Update deviceManagement" description: "Update the properties of a deviceManagement object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagement](../resources/intune-tem-devicemanagement.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": "0b283420-3420-0b28-2034-280b2034280b" } ```-----
v1.0 Intune Tem Telecomexpensemanagementpartner Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-tem-telecomexpensemanagementpartner-create.md
Title: "Create telecomExpenseManagementPartner" description: "Create a new telecomExpenseManagementPartner object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [telecomExpenseManagementPartner](../resources/intune-tem-telecomexpensemanagementpartner.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: 297
"lastConnectionDateTime": "2016-12-31T23:58:36.6670033-08:00" } ```-----
v1.0 Intune Tem Telecomexpensemanagementpartner Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-tem-telecomexpensemanagementpartner-delete.md
Title: "Delete telecomExpenseManagementPartner" description: "Deletes a telecomExpenseManagementPartner."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [telecomExpenseManagementPartner](../resources/intune-tem-telecomexpensemanagementpartner.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 Tem Telecomexpensemanagementpartner Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-tem-telecomexpensemanagementpartner-get.md
Title: "Get telecomExpenseManagementPartner" description: "Read properties and relationships of the telecomExpenseManagementPartner object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [telecomExpenseManagementPartner](../resources/intune-tem-telecomexpensemanagementpartner.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: 330
} } ```-----
v1.0 Intune Tem Telecomexpensemanagementpartner List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-tem-telecomexpensemanagementpartner-list.md
Title: "List telecomExpenseManagementPartners" description: "List properties and relationships of the telecomExpenseManagementPartner objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [telecomExpenseManagementPartner](../resources/intune-tem-telecomexpensemanagementpartner.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: 358
] } ```-----
v1.0 Intune Tem Telecomexpensemanagementpartner Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-tem-telecomexpensemanagementpartner-update.md
Title: "Update telecomExpenseManagementPartner" description: "Update the properties of a telecomExpenseManagementPartner object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [telecomExpenseManagementPartner](../resources/intune-tem-telecomexpensemanagementpartner.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: 297
"lastConnectionDateTime": "2016-12-31T23:58:36.6670033-08:00" } ```-----
v1.0 Intune Wip Devicemanagement Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-wip-devicemanagement-get.md
Title: "Get deviceManagement" description: "Read properties and relationships of the deviceManagement object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [deviceManagement](../resources/intune-wip-devicemanagement.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 Wip Devicemanagement Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-wip-devicemanagement-update.md
Title: "Update deviceManagement" description: "Update the properties of a deviceManagement object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [deviceManagement](../resources/intune-wip-devicemanagement.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": "0b283420-3420-0b28-2034-280b2034280b" } ```-----
v1.0 Intune Wip Windowsinformationprotectionapplearningsummary Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-wip-windowsinformationprotectionapplearningsummary-create.md
Title: "Create windowsInformationProtectionAppLearningSummary" description: "Create a new windowsInformationProtectionAppLearningSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windowsInformationProtectionAppLearningSummary](../resources/intune-wip-windowsinformationprotectionapplearningsummary.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: 240
"deviceCount": 11 } ```-----
v1.0 Intune Wip Windowsinformationprotectionapplearningsummary Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-wip-windowsinformationprotectionapplearningsummary-delete.md
Title: "Delete windowsInformationProtectionAppLearningSummary" description: "Deletes a windowsInformationProtectionAppLearningSummary."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windowsInformationProtectionAppLearningSummary](../resources/intune-wip-windowsinformationprotectionapplearningsummary.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 Wip Windowsinformationprotectionapplearningsummary Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-wip-windowsinformationprotectionapplearningsummary-get.md
Title: "Get windowsInformationProtectionAppLearningSummary" description: "Read properties and relationships of the windowsInformationProtectionAppLearningSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsInformationProtectionAppLearningSummary](../resources/intune-wip-windowsinformationprotectionapplearningsummary.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 Wip Windowsinformationprotectionapplearningsummary List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-wip-windowsinformationprotectionapplearningsummary-list.md
Title: "List windowsInformationProtectionAppLearningSummaries" description: "List properties and relationships of the windowsInformationProtectionAppLearningSummary objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsInformationProtectionAppLearningSummary](../resources/intune-wip-windowsinformationprotectionapplearningsummary.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: 293
] } ```-----
v1.0 Intune Wip Windowsinformationprotectionapplearningsummary Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-wip-windowsinformationprotectionapplearningsummary-update.md
Title: "Update windowsInformationProtectionAppLearningSummary" description: "Update the properties of a windowsInformationProtectionAppLearningSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windowsInformationProtectionAppLearningSummary](../resources/intune-wip-windowsinformationprotectionapplearningsummary.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: 240
"deviceCount": 11 } ```-----
v1.0 Intune Wip Windowsinformationprotectionnetworklearningsummary Create https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-wip-windowsinformationprotectionnetworklearningsummary-create.md
Title: "Create windowsInformationProtectionNetworkLearningSummary" description: "Create a new windowsInformationProtectionNetworkLearningSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Create a new [windowsInformationProtectionNetworkLearningSummary](../resources/intune-wip-windowsinformationprotectionnetworklearningsummary.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: 186
"deviceCount": 11 } ```-----
v1.0 Intune Wip Windowsinformationprotectionnetworklearningsummary Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-wip-windowsinformationprotectionnetworklearningsummary-delete.md
Title: "Delete windowsInformationProtectionNetworkLearningSummary" description: "Deletes a windowsInformationProtectionNetworkLearningSummary."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Deletes a [windowsInformationProtectionNetworkLearningSummary](../resources/intune-wip-windowsinformationprotectionnetworklearningsummary.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 Wip Windowsinformationprotectionnetworklearningsummary Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-wip-windowsinformationprotectionnetworklearningsummary-get.md
Title: "Get windowsInformationProtectionNetworkLearningSummary" description: "Read properties and relationships of the windowsInformationProtectionNetworkLearningSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Read properties and relationships of the [windowsInformationProtectionNetworkLearningSummary](../resources/intune-wip-windowsinformationprotectionnetworklearningsummary.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: 213
} } ```-----
v1.0 Intune Wip Windowsinformationprotectionnetworklearningsummary List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-wip-windowsinformationprotectionnetworklearningsummary-list.md
Title: "List windowsInformationProtectionNetworkLearningSummaries" description: "List properties and relationships of the windowsInformationProtectionNetworkLearningSummary objects."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
List properties and relationships of the [windowsInformationProtectionNetworkLearningSummary](../resources/intune-wip-windowsinformationprotectionnetworklearningsummary.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: 235
] } ```-----
v1.0 Intune Wip Windowsinformationprotectionnetworklearningsummary Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/intune-wip-windowsinformationprotectionnetworklearningsummary-update.md
Title: "Update windowsInformationProtectionNetworkLearningSummary" description: "Update the properties of a windowsInformationProtectionNetworkLearningSummary object."-+ localization_priority: Normal ms.prod: "intune" doc_type: apiPageType
Namespace: microsoft.graph
Update the properties of a [windowsInformationProtectionNetworkLearningSummary](../resources/intune-wip-windowsinformationprotectionnetworklearningsummary.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: 186
"deviceCount": 11 } ```-----
v1.0 Linkedresource Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/linkedresource-delete.md
One of the following permissions is required to call this API. To learn more, in
|:|:| |Delegated (work or school account)|Tasks.ReadWrite| |Delegated (personal Microsoft account)|Tasks.ReadWrite|
-|Application|Not supported|
+|Application| Tasks.ReadWrite.All|
## HTTP request
v1.0 Linkedresource Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/linkedresource-get.md
One of the following permissions is required to call this API. To learn more, in
|Permission type|Permissions (from least to most privileged)| |:|:|
-|Delegated (work or school account)|Tasks.ReadWrite|
-|Delegated (personal Microsoft account)|Tasks.ReadWrite|
-|Application|Not supported|
+|Delegated (work or school account)|Tasks.Read, Tasks.ReadWrite|
+|Delegated (personal Microsoft account)|Tasks.Read, Tasks.ReadWrite|
+|Application|Tasks.Read.All, Tasks.ReadWrite.All|
## HTTP request
v1.0 Linkedresource Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/linkedresource-update.md
One of the following permissions is required to call this API. To learn more, in
|:|:| |Delegated (work or school account)|Tasks.ReadWrite| |Delegated (personal Microsoft account)|Tasks.ReadWrite|
-|Application|Not supported|
+|Application| Tasks.ReadWrite.All|
## HTTP request
v1.0 Meetingattendancereport Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/meetingattendancereport-get.md
GET /users/{userId}/onlineMeetings/{meetingId}/attendanceReports/{reportId}
>- `meetingId` is the **id** of an [onlineMeeting](../resources/onlinemeeting.md) object. >- `reportId` is the **id** of an [meetingAttendanceReport](../resources/meetingAttendanceReport.md) object.
+> [!CAUTION]
+>
+>- The **attendanceRecords** property does not return information about a breakout room.
+ ## Optional query parameters This method supports the [OData query parameters](/graph/query-parameters) to help customize the response.
v1.0 Onlinemeeting Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/onlinemeeting-get.md
Retrieve the properties and relationships of an [onlineMeeting](../resources/onl
For example, you can: -- Get details of an online meeting using [videoTeleconferenceId](#example-1-retrieve-an-online-meeting-by-videoteleconferenceid), [meeting ID](#example-2-retrieve-an-online-meeting-by-meeting-id), or [joinWebURL](#example-3-retrieve-an-online-meeting-by-joinweburl).-- Use the `/attendeeReport` path to get the attendee report of a [Microsoft Teams live event](/microsoftteams/teams-live-events/what-are-teams-live-events) in the form of a download link, as shown in [example 4](#example-4-fetch-attendee-report-of-a-teams-live-event).
+- Get details of an online meeting using [videoTeleconferenceId](#example-1-retrieve-an-online-meeting-by-videoteleconferenceid), [meeting ID](#example-2-retrieve-an-online-meeting-by-meeting-id), [joinWebURL](#example-3-retrieve-an-online-meeting-by-joinweburl), or [joinMeetingId](#example-4-retrieve-an-online-meeting-by-joinmeetingid).
+- Use the `/attendeeReport` path to get the attendee report of a [Microsoft Teams live event](/microsoftteams/teams-live-events/what-are-teams-live-events) in the form of a download link, as shown in [example 5](#example-5-fetch-attendee-report-of-a-teams-live-event).
Teams live event attendee report is an online meeting artifact. For details, see [Online meeting artifacts and permissions](/graph/cloud-communications-online-meeting-artifacts).
GET /me/onlineMeetings?$filter=JoinWebUrl%20eq%20'{joinWebUrl}'
GET /users/{userId}/onlineMeetings?$filter=JoinWebUrl%20eq%20'{joinWebUrl}' ```
+To get an **onlineMeeting** using **joinMeetingId** with delegated (`/me`) and app (`/users/{userId}`) permission:
+<!-- { "blockType": "ignored" } -->
+```http
+GET /me/onlineMeetings?$filter=joinMeetingIdSettings/joinMeetingId%20eq%20'{joinMeetingId}'
+GET /users/{userId}/onlineMeetings?$filter=joinMeetingIdSettings/joinMeetingId%20eq%20'{joinMeetingId}'
+```
+ To get the attendee report of a [Teams live event](/microsoftteams/teams-live-events/what-are-teams-live-events) with delegated (`/me`) and app (`/users/{userId}`) permission: <!-- { "blockType": "ignored" }-->
GET /users/{userId}/onlineMeetings/{meetingId}/attendeeReport
``` > [!NOTE]
-> - `userId` is the object ID of a user in [Azure user management portal](https://portal.azure.com/#blade/Microsoft_AAD_IAM/UsersManagementMenuBlade). For more details, see [application access policy](/graph/cloud-communication-online-meeting-application-access-policy).
+> - `userId` is the object ID of a user in [Azure user management portal](https://portal.azure.com/#blade/Microsoft_AAD_IAM/UsersManagementMenuBlade). For more details, see [Allow applications to access online meetings on behalf of a user](/graph/cloud-communication-online-meeting-application-access-policy).
> - `meetingId` is the **id** of an [onlineMeeting](../resources/onlinemeeting.md) object. > - **videoTeleconferenceId** is generated for Cloud-Video-Interop licensed users and can be found in an [onlineMeeting](../resources/onlinemeeting.md) object. For details, see [VTC conference id](/microsoftteams/cloud-video-interop-for-teams-set-up). > - \* This scenario only supports application token and doesn't support application access policy. > - `joinWebUrl` must be URL encoded.
+>- `joinMeetingId` is the meeting ID to be used to join a meeting.
## Optional query parameters This method supports the [OData query parameters](/graph/query-parameters) to help customize the response.
If successful, this method returns a `200 OK` response code. The response also i
- If you fetch an online meeting by **videoTeleconferenceId** or **joinWebUrl**, this method returns a collection that contains only one [onlineMeeting](../resources/onlinemeeting.md) object in the response body. - If you fetch the attendee report of a [Teams live event](/microsoftteams/teams-live-events/what-are-teams-live-events), this method returns a `Location` header that indicates the URI to the attendee report.
+> [!NOTE]
+>- **joinMeetingIdSettings** might not be generated for some prescheduled meetings if the meeting was created before this feature was supported.
+ ## Examples > [!NOTE]
If successful, this method returns a `200 OK` response code. The response also i
### Example 1: Retrieve an online meeting by videoTeleconferenceId #### Request
-The following example shows the request.
+The following is an example of a request.
# [HTTP](#tab/http) <!-- {
GET https://graph.microsoft.com/v1.0/communications/onlineMeetings/?$filter=Vide
#### Response
+The following is an example of the response.
+
+> **Note:** The response object shown here might be shortened for readability.
+ <!-- { "blockType": "response", "truncated": true,
Content-Length: 1574
"@odata.type": "#microsoft.graph.onlineMeeting", "autoAdmittedUsers": "everyone", "audioConferencing": {
- "tollNumber": "55525634478",
- "tollFreeNumber": "55566390588",
+ "tollNumber": "5552478",
+ "tollFreeNumber": "5550588",
"ConferenceId": "9999999", "dialinUrl": "https://dialin.teams.microsoft.com/6787A136-B9B8-4D39-846C-C0F1FF937F10?id=xxxxxxx" }, "chatInfo": { "@odata.type": "#microsoft.graph.chatInfo",
- "threadId": "19:cbee7c1c860e465f8258e3cebf7bee0d@thread.skype",
- "messageId": "1533758867081"
+ "threadId": "19:cbee7c1c860e465cebf7bee0d@thread.skype",
+ "messageId": "153367081"
}, "creationDateTime": "2018-05-30T00:12:19.0726086Z", "endDateTime": "2018-05-30T01:00:00Z", "id": "112f7296-5fa4-42ca-bae8-6a692b15d4b8_19:cbee7c1c860e465f8258e3cebf7bee0d@thread.skype",
- "joinWebUrl": "https://teams.microsoft.com/l/meetup-join/19%3a:meeting_NTg0NmQ3NTctZDVkZC00YzRhLThmNmEtOGQ3M2E0ODdmZDZk@thread.v2/0?context=%7b%22Tid%22%3a%aa67bd4c-8475-432d-bd41-39f255720e0a%22%2c%22Oid%22%3a%22112f7296-5fa4-42ca-bae8-6a692b15d4b8%22%7d",
+ "joinWebUrl": "https://teams.microsoft.com/l/meetup-join/19%3a:meeting_NTg0NmQ3NTctZDVkZC00YzRhLThmNmEtOGQDdmZDZk@thread.v2/0?context=%7b%22Tid%22%3a%aa67bd4c-8475-432d-bd41-39f255720e0a%22%2c%22Oid%22%3a%22112f7296-5fa4-42ca-bb15d4b8%22%7d",
"participants": { "@odata.type": "#microsoft.graph.meetingParticipants", "attendees": [
Content-Length: 1574
"identity": { "user": { "@odata.type": "#microsoft.graph.identity",
- "id": "112f7296-5fa4-42ca-bae8-6a692b15d4b8",
+ "id": "112f7296-5ca-bae8-6a692b15d4b8",
"displayName": "Tyler Stein" } },
Content-Length: 1574
"identity": { "user": { "@odata.type": "#microsoft.graph.identity",
- "id": "5810cede-f3cc-42eb-b2c1-e9bd5d53ec96",
+ "id": "5810cedeb-b2c1-e9bd5d53ec96",
"displayName": "Jasmine Miller" } },
Content-Length: 1574
"scope": "everyone", "isDialInBypassEnabled": true },
+ "joinMeetingIdSettings": {
+ "isPasscodeRequired": false,
+ "joinMeetingId": "1234567890",
+ "passcode": null
+ },
"isEntryExitAnnounced": true, "allowedPresenters": "everyone" }
You can retrieve meeting information via meeting ID with either a user or applic
#### Request
-> **Note:** The meeting ID has been truncated for readability.
+The following is an example of a request that uses a user (delegated) token.
-The following request uses a user token.
+> **Note:** The meeting ID has been truncated for readability.
# [HTTP](#tab/http) <!-- {"blockType": "request", "name": "get-onlinemeeting-user-token","sampleKeys": ["MSpkYzE3Njc0Yy04MWQ5LTRhZGItYmZiMi04ZdFpHRTNaR1F6WGhyZWFkLnYy"]} -->
GET https://graph.microsoft.com/v1.0/users/dc17674c-81d9-4adb-bfb2-8f6a442e4622/
``` #### Response+
+The following is an example of the response.
+ <!-- { "blockType": "response", "truncated": true,
HTTP/1.1 200 OK
Content-Type: application/json {
- "id": "MSpkYzE3Njc0Yy04MWQ5LTRhZGItYmZiMi04ZdFpHRTNaR1F6WGhyZWFkLnYy",
+ "id": "MSpkYzE3Njc0Yy04MWQiMi04ZdFpHRTNaR1F6WGhyZWFkLnYy",
"creationDateTime": "2020-09-29T22:35:33.1594516Z", "startDateTime": "2020-09-29T22:35:31.389759Z", "endDateTime": "2020-09-29T23:35:31.389759Z",
- "joinWebUrl": "https://teams.microsoft.com/l/meetup-join/19%3ameeting_MGQ4MDQyNTEtNTQ2NS00YjQxLTlkM2EtZWVkODYxODYzMmY2%40thread.v2/0?context=%7b%22Tid%22%3a%22909c6581-5130-43e9-88f3-fcb3582cde37%22%2c%22Oid%22%3a%22dc17674c-81d9-4adb-bfb2-8f6a442e4622%22%7d",
+ "joinWebUrl": "https://teams.microsoft.com/l/meetup-join/19%3ameeting_MGQ4MDQyNTE2EtZWVkODYxODYzMmY2%40thread.v2/0?context=%7b%22Tid%22%3a%22909c6581-5130-43e9-88f3-fcb3582cde37%22%2c%22Oid%22%3a%22dc17674c-81d9-4adb-442e4622%22%7d",
"subject": null, "autoAdmittedUsers": "EveryoneInCompany", "isEntryExitAnnounced": true,
Content-Type: application/json
"role": "presenter", "identity": { "user": {
- "id": "dc17674c-81d9-4adb-bfb2-8f6a442e4622",
+ "id": "dc17674c-81d9-4adb-a442e4622",
"displayName": null,
- "tenantId": "909c6581-5130-43e9-88f3-fcb3582cde38",
+ "tenantId": "909c6581-5188f3-fcb3582cde38",
"identityProvider": "AAD" } }
Content-Type: application/json
"lobbyBypassSettings": { "scope": "organization", "isDialInBypassEnabled": false
+ },
+ "joinMeetingIdSettings": {
+ "isPasscodeRequired": false,
+ "joinMeetingId": "1234567890",
+ "passcode": null
} } ```
You can retrieve meeting information via JoinWebUrl by using either a user or ap
#### Request
-The following request uses a user token.
+The following is an example of a request that uses a user (delegated) token.
# [HTTP](#tab/http) <!-- {"blockType": "request", "name": "get-onlinemeeting-joinurl-user-token", "sampleKeys": ["https%3A%2F%2Fteams.microsoft.com%2Fl%2Fmeetup-join%2F19%253ameeting_MGQ4MDQyNTEtNTQ2NS00YjQxLTlkM2EtZWVkODYxODYzMmY2%2540thread.v2%2F0%3Fcontext%3D%257b%2522Tid%2522%253a%2522909c6581-5130-43e9-88f3-fcb3582cde37%2522%252c%2522Oid%2522%253a%2522dc17674c-81d9-4adb-bfb2-8f6a442e4622%2522%257d"]} -->
GET https://graph.microsoft.com/v1.0/users/dc17674c-81d9-4adb-bfb2-8f6a442e4622/
#### Response
+The following is an example of the response.
+ <!-- { "blockType": "response", "truncated": true,
Content-Type: application/json
{ "value": [ {
- "id": "dc17674c-81d9-4adb-bfb2-8f6a442e4622_19:meeting_MGQ4MDQyNTEtNTQ2NS00YjQxLTlkM2EtZWVkODYxODYzMmY2@thread.v2",
+ "id": "dc17674c-81d9-4adb-bfb2-8f6a442e4622_19:meeting_MGQ4MDQyNTEtNTQVkODYxODYzMmY2@thread.v2",
"creationDateTime": "2020-09-29T22:35:33.1594516Z", "startDateTime": "2020-09-29T22:35:31.389759Z", "endDateTime": "2020-09-29T23:35:31.389759Z",
- "joinWebUrl": "https://teams.microsoft.com/l/meetup-join/19%3ameeting_MGQ4MDQyNTEtNTQ2NS00YjQxLTlkM2EtZWVkODYxODYzMmY2%40thread.v2/0?context=%7b%22Tid%22%3a%22909c6581-5130-43e9-88f3-fcb3582cde37%22%2c%22Oid%22%3a%22dc17674c-81d9-4adb-bfb2-8f6a442e4622%22%7d",
+ "joinWebUrl": "https://teams.microsoft.com/l/meetup-join/19%3ameeting_MGQ4MDQyNTEtNTQ2NS00YjQxLTlkMYzMmY2%40thread.v2/0?context=%7b%22Tid%22%3a%22909c6581-5130-43e9-882cde37%22%2c%22Oid%22%3a%22dc17674c-81d9-4adb-bfb2-8f6a442e4622%22%7d",
"subject": null, "isEntryExitAnnounced": true, "allowedPresenters": "everyone",
Content-Type: application/json
"role": "presenter", "identity": { "user": {
- "id": "dc17674c-81d9-4adb-bfb2-8f6a442e4622",
+ "id": "dc17674c-81d9-4adb-bf442e4622",
"displayName": null,
- "tenantId": "909c6581-5130-43e9-88f3-fcb3582cde38",
+ "tenantId": "909c6581-5130-43e93582cde38",
"identityProvider": "AAD" } }
Content-Type: application/json
"lobbyBypassSettings": { "scope": "organization", "isDialInBypassEnabled": false
+ },
+ "joinMeetingIdSettings": {
+ "isPasscodeRequired": false,
+ "joinMeetingId": "1234567890",
+ "passcode": null
} } ] } ```
-### Example 4: Fetch attendee report of a Teams live event
+### Example 4: Retrieve an online meeting by joinMeetingId
-The following example shows a request to download an attendee report.
+You can retrieve meeting information via the **joinMeetingId** by using either a user (delegated) or an application token.
#### Request
-The following request uses delegated permission.
+The following is an example of a request that uses a user (delegated) token.
+
+# [HTTP](#tab/http)
+<!-- {
+ "blockType": "request",
+ "name": "get-an-online-meeting-by-joinmeetingid"
+} -->
+```msgraph-interactive
+GET https://graph.microsoft.com/v1.0/me/onlineMeetings?$filter=joinMeetingIdSettings/joinMeetingId%20eq%20'1234567890'
+```
+
+# [C#](#tab/csharp)
+
+# [JavaScript](#tab/javascript)
+
+# [Java](#tab/java)
+
+# [Go](#tab/go)
+
+# [PowerShell](#tab/powershell)
+
+# [PHP](#tab/php)
++++
+The following request uses an app token.
+<!-- { "blockType": "ignored" } -->
+```http
+GET https://graph.microsoft.com/v1.0/users/dc17674c-81d9-4adb-bfb2-8f6a442e4622/onlineMeetings?$filter=joinMeetingIdSettings/joinMeetingId%20eq%20'1234567890'
+```
+
+#### 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.onlineMeeting"
+} -->
+
+```http
+HTTP/1.1 200 OK
+Content-Type: application/json
+
+{
+ "value": [
+ {
+ "id": "dc17674c-81d9-4adb-bfb2-8f6a442e4622_19:meeting_MGQ4MDQyNtZWVkODYxODYzMmY2@thread.v2",
+ "creationDateTime": "2020-09-29T22:35:33.1594516Z",
+ "startDateTime": "2020-09-29T22:35:31.389759Z",
+ "endDateTime": "2020-09-29T23:35:31.389759Z",
+ "joinWebUrl": "https://teams.microsoft.com/l/meetup-join/19%3ameeting_MGQ4MDQyNTEtNZWVkODYxODYzMmY2%40thread.v2/0?context=%7b%22Tid%22%3a%22909c6581-5130-43e9-88cb3582cde37%22%2c%22Oid%22%3a%22dc17674c-81d9-4adb-bfb2-8f6a442e4622%22%7d",
+ "subject": null,
+ "autoAdmittedUsers": "EveryoneInCompany",
+ "isEntryExitAnnounced": true,
+ "allowedPresenters": "everyone",
+ "allowMeetingChat": "enabled",
+ "allowTeamworkReactions": true,
+ "videoTeleconferenceId": "(redacted)",
+ "participants": {
+ "organizer": {
+ "upn": "(redacted)",
+ "role": "presenter",
+ "identity": {
+ "user": {
+ "id": "dc174c-81db-bfb2-8f6622",
+ "displayName": null,
+ "tenantId": "9091-5130-48f3-fce38",
+ "identityProvider": "AAD"
+ }
+ }
+ },
+ "attendees": [],
+ "producers": [],
+ "contributors": []
+ },
+ "lobbyBypassSettings": {
+ "scope": "organization",
+ "isDialInBypassEnabled": false
+ },
+ "joinMeetingIdSettings": {
+ "isPasscodeRequired": false,
+ "joinMeetingId": "1234567890",
+ "passcode": null
+ }
+ }
+ ]
+}
+```
+
+### Example 5: Fetch attendee report of a Teams live event
+
+The following example shows a request to download an attendee report.
+
+#### Request
+
+The following request uses a user (delegated) token.
# [HTTP](#tab/http) <!-- {
GET https://graph.microsoft.com/v1.0/users/dc74d9bb-6afe-433d-8eaa-e39d80d3a647/
#### Response
+The following is an example of the response.
+ <!-- { "blockType": "response", "truncated": true,
v1.0 Opentypeextension Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/opentypeextension-update.md
The data in the JSON payload can be primitive types, or arrays of primitive type
| @odata.type | microsoft.graph.openTypeExtension | | extensionName | %unique_string% |
+Use this operation to either store data in the open extension property, update the stored data, or delete the existing data.
+ - To update any property in the open extension object, you must specify *all* properties in the request body; otherwise, Microsoft Graph will delete the unspecified properties.
+ - To delete data from a property in the open extension object, set its value to `null`.
+ - To delete a property from the open extension object, don't pass it in the PATCH request body, and Microsoft Graph will delete it.
+ - To delete data from all properties in the open extension object but keep the open extension object, update the values of the properties to `null`.
+ ## Response If successful, this method returns a `200 OK` response code and the updated
v1.0 Organization Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/organization-get.md
Content-type: application/json
"country": null, "countryLetterCode": "NL", "createdDateTime": "2021-08-02T10:30:06Z",
+ "defaultUsageLocation": "String",
"displayName": "Contoso", "isMultipleDataLocationsForServicesEnabled": null, "marketingNotificationEmails": [], "onPremisesLastSyncDateTime": null, "onPremisesSyncEnabled": null,
+ "partnerTenantType": "ResellerPartnerDelegatedAdmin",
"postalCode": null, "preferredLanguage": "en", "securityComplianceNotificationMails": [],
v1.0 Organization List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/organization-list.md
Content-type: application/json
"country": null, "countryLetterCode": "NL", "createdDateTime": "2021-08-02T10:30:06Z",
+ "defaultUsageLocation": "String",
"displayName": "Contoso", "isMultipleDataLocationsForServicesEnabled": null, "marketingNotificationEmails": [], "onPremisesLastSyncDateTime": null, "onPremisesSyncEnabled": null,
+ "partnerTenantType": "ResellerPartnerDelegatedAdmin",
"postalCode": null, "preferredLanguage": "en", "securityComplianceNotificationMails": [],
v1.0 Planner List Buckets https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/planner-list-buckets.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.Read, Tasks.ReadWrite, Group.Read.All, Group.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application | Tasks.Read.All, Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Planner List Plans https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/planner-list-plans.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.Read, Tasks.ReadWrite, Group.Read.All, Group.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application | Tasks.Read.All, Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Planner List Tasks https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/planner-list-tasks.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.Read, Tasks.ReadWrite, Group.Read.All, Group.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application | Tasks.Read.All, Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Planner Post Buckets https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/planner-post-buckets.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.ReadWrite, Group.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application | Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Planner Post Plans https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/planner-post-plans.md
One of the following permissions is required to call this API. To learn more, in
| Permission type | Permissions (from least to most privileged) | | :- | : |
-| Delegated (work or school account) | Tasks.ReadWrite, Group.ReadWrite.All |
+| Delegated (work or school account) | Tasks.ReadWrite, Group.ReadWrite.All |
| Delegated (personal Microsoft account) | Not supported. |
-| Application | Not supported. |
+| Application | Tasks.ReadWrite.All |
## HTTP request
POST /planner/plans
## Request body In the request body, supply a JSON representation of [plannerPlan](../resources/plannerplan.md) object.
-The **plannerPlan** owner property must be set to an id of a [group](../resources/group.md) object.
->**Note:** The user who is creating the plan must be a member of the group that will own the plan. When you create a new group by using [Create group](../api/group-post-groups.md), you are not added to the group as a member. After the group is created, add yourself as a member by using [group post members](../api/group-post-members.md).
+The following table shows the properties that are required when you create a [plannerPlan](../resources/plannerplan.md).
+
+|Property|Type|Description|
+|:|:|:|
+|container|[plannerPlanContainer](../resources/plannerplancontainer.md)|Identifies the container of the plan. Specify only the **url**, the **containerId** and **type**, or all properties. After it is set, this property canΓÇÖt be updated.|
+|title|String|The title of the plan.|
+
+>**Note:** If the container is a Microsoft 365 group, the user who is creating the plan must be a member of the group that will contain the plan. When you create a new group by using [Create group](../api/group-post-groups.md), you are not added to the group as a member. After the group is created, add yourself as a member by using [group post members](../api/group-post-members.md).
## Response
-If successful, this method returns `201 Created` response code and [plannerPlan](../resources/plannerplan.md) object in the response body.
+If successful, this method returns a `201 Created` response code and a [plannerPlan](../resources/plannerplan.md) object in the response body.
-This method can return any of the [HTTP status codes](/graph/errors). The most common errors that apps should handle for this method are the 400, 403 and 404 responses. For more information about these errors, see [Common Planner error conditions](../resources/planner-overview.md#common-planner-error-conditions).
+This method can return any of the [HTTP status codes](/graph/errors). The most common errors that apps should handle for this method are the 400, 403, and 404 responses. For more information about these errors, see [Common Planner error conditions](../resources/planner-overview.md#common-planner-error-conditions).
## Example ### Request
-Here is an example of the request.
+The following is an example of the request.
# [HTTP](#tab/http)
POST https://graph.microsoft.com/v1.0/planner/plans
Content-type: application/json {
- "owner": "ebf3b108-5234-4e22-b93d-656d7dae5874",
+ "container": {
+ "url": "https://graph.microsoft.com/beta/groups/ebf3b108-5234-4e22-b93d-656d7dae5874"
+ },
"title": "title-value" } ```
Content-type: application/json
-
-In the request body, supply a JSON representation of [plannerPlan](../resources/plannerplan.md) object.
- ### Response
-Here is an example of the response. Note: The response object shown here might be shortened for readability.
+The following is an example of the response.
+>**Note:** The response object shown here might be shortened for readability.
<!-- { "blockType": "response",
Content-type: application/json
"id": "95e27074-6c4a-447a-aa24-9d718a0b86fa" }, "user": {
- "id": "ebf3b108-5234-4e22-b93d-656d7dae5874"
+ "id": "b108ebf3-4e22-b93d-5234-dae5874656d7"
} }, "createdDateTime": "2015-03-30T18:36:49.2407981Z",
- "owner": "ebf3b108-5234-4e22-b93d-656d7dae5874",
+ "container": {
+ "@odata.type": "microsoft.graph.plannerPlanContainer",
+ "url": "https://graph.microsoft.com/beta/groups/ebf3b108-5234-4e22-b93d-656d7dae5874",
+ "containerId": "ebf3b108-5234-4e22-b93d-656d7dae5874",
+ "type": "group"
+ },
"title": "title-value", "id": "xqQg5FS2LkCp935s-FIFm2QAFkHM" }
Content-type: application/json
"suppressions": [ ] }-->-
v1.0 Planner Post Tasks https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/planner-post-tasks.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.ReadWrite, Group.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application | Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Plannerassignedtotaskboardtaskformat Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/plannerassignedtotaskboardtaskformat-get.md
Title: "Get plannerAssignedToTaskBoardTaskFormat"
-description: "Retrieve the properties and relationships of **plannerAssignedToTaskBoardTaskFormat** object."
+description: "Retrieve the properties and relationships of a **plannerAssignedToTaskBoardTaskFormat** object."
ms.localizationpriority: medium ms.prod: "planner"
doc_type: apiPageType
Namespace: microsoft.graph
-Retrieve the properties and relationships of **plannerAssignedToTaskBoardTaskFormat** object.
+Retrieve the properties and relationships of a **plannerAssignedToTaskBoardTaskFormat** 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).
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.Read, Tasks.ReadWrite, Group.Read.All, Group.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application | Tasks.Read.All, Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } --> ```http GET /planner/tasks/{id}/assignedToTaskBoardFormat ```+ ## Request headers | Name |Description| |:-|:-|
Do not supply a request body for this method.
## Response
-If successful, this method returns a `200 OK` response code and [plannerAssignedToTaskBoardTaskFormat](../resources/plannerassignedtotaskboardtaskformat.md) object in the response body.
+If successful, this method returns a `200 OK` response code and a [plannerAssignedToTaskBoardTaskFormat](../resources/plannerassignedtotaskboardtaskformat.md) object in the response body.
This method can return any of the [HTTP status codes](/graph/errors). The most common errors that apps should handle for this method are the 403 and 404 responses. For more information about these errors, see [Common Planner error conditions](../resources/planner-overview.md#common-planner-error-conditions). ## Example
-##### Request
-Here is an example of the request.
+### Request
+The following is an example of the request.
# [HTTP](#tab/http) <!-- {
GET https://graph.microsoft.com/v1.0/planner/tasks/{task-id}/assignedToTaskBoard
-##### Response
-Here is an example of the response. Note: The response object shown here might be shortened for readability.
+### Response
+The following is an example of the response.
+>**Note:** The response object shown here might be shortened for readability.
<!-- { "blockType": "response", "truncated": true,
v1.0 Plannerassignedtotaskboardtaskformat Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/plannerassignedtotaskboardtaskformat-update.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.ReadWrite, Group.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application | Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Plannerbucket Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/plannerbucket-delete.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.ReadWrite, Group.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application | Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Plannerbucket Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/plannerbucket-get.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.Read, Tasks.ReadWrite, Group.Read.All, Group.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application | Tasks.Read.All, Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Plannerbucket List Tasks https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/plannerbucket-list-tasks.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.Read, Tasks.ReadWrite, Group.Read.All, Group.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application | Tasks.Read.All, Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Plannerbucket Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/plannerbucket-update.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.ReadWrite, Group.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application | Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Plannerbuckettaskboardtaskformat Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/plannerbuckettaskboardtaskformat-get.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.Read, Tasks.ReadWrite, Group.Read.All, Group.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application | Tasks.Read.All, Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Plannerbuckettaskboardtaskformat Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/plannerbuckettaskboardtaskformat-update.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.ReadWrite, Group.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application | Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Plannergroup List Plans https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/plannergroup-list-plans.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.Read, Tasks.ReadWrite, Group.Read.All, Group.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application | Tasks.Read.All, Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Plannerplan Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/plannerplan-delete.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.ReadWrite, Group.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application | Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Plannerplan Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/plannerplan-get.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.Read, Tasks.ReadWrite, Group.Read.All, Group.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application | Tasks.Read.All, Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Plannerplan List Buckets https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/plannerplan-list-buckets.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.Read, Tasks.ReadWrite, Group.Read.All, Group.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application | Tasks.Read.All, Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Plannerplan List Tasks https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/plannerplan-list-tasks.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.Read, Tasks.ReadWrite, Group.Read.All, Group.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application | Tasks.Read.All, Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Plannerplan Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/plannerplan-update.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.ReadWrite, Group.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application | Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Plannerplandetails Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/plannerplandetails-get.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.Read, Tasks.ReadWrite, Group.Read.All, Group.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application | Tasks.Read.All, Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Plannerplandetails Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/plannerplandetails-update.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.ReadWrite, Group.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application | Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Plannerprogresstaskboardtaskformat Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/plannerprogresstaskboardtaskformat-get.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.Read, Tasks.ReadWrite, Group.Read.All, Group.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application | Tasks.Read.All, Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Plannerprogresstaskboardtaskformat Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/plannerprogresstaskboardtaskformat-update.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.ReadWrite, Group.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application | Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Plannertask Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/plannertask-delete.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.ReadWrite, Group.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application | Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Plannertask Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/plannertask-get.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.Read, Tasks.ReadWrite, Group.Read.All, Group.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application | Tasks.Read.All, Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Plannertask Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/plannertask-update.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.ReadWrite, Group.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application | Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Plannertaskdetails Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/plannertaskdetails-get.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.Read, Tasks.ReadWrite, Group.Read.All, Group.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application | Tasks.Read.All, Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Plannertaskdetails Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/plannertaskdetails-update.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.ReadWrite, Group.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application | Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Planneruser List Tasks https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/planneruser-list-tasks.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.Read, Tasks.ReadWrite, Group.Read.All, Group.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Not supported. |
+|Application | Tasks.Read.All, Tasks.ReadWrite.All |
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Post Post Attachments https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/post-post-attachments.md
Content-type: application/json
[!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 Print List Connectors https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/print-list-connectors.md
Title: List printConnectors
-description: Retrieve a list of connectors.
-
+ Title: "List printConnectors"
+description: "Retrieve a list of connectors."
+ ms.localizationpriority: medium doc_type: apiPageType
To use the Universal Print service, the user or app's tenant must have an active
|Permission type | Permissions (from least to most privileged) | |:|:--| |Delegated (work or school account)| PrintConnector.Read.All, PrintConnector.ReadWrite.All |
-|Delegated (personal Microsoft account)|Not Supported.|
-|Application| Not Supported. |
+|Delegated (personal Microsoft account)|Not supported.|
+|Application| Not supported. |
## HTTP request
GET /print/connectors
This method supports some of the OData query parameters to help customize the response. For general information, see [OData query parameters](/graph/query-parameters). ### Exceptions
-Some operators are not supported: `$count`, `$search`, `$filter`.
+The following operators are not supported: `$count`, `$search`, `$filter`.
## Request headers | Name |Description|
If successful, this method returns a `200 OK` response code and a collection of
### Request
+The following is an example of a request.
+ # [HTTP](#tab/http) <!-- { "blockType": "request",
GET https://graph.microsoft.com/v1.0/print/connectors
### Response
-**Note:** The response object shown here might be shortened for readability.
+
+The following is an example of the response.
+
+>**Note:** The response object shown here might be shortened for readability.
<!-- { "blockType": "response", "truncated": true,
v1.0 Riskdetection Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/riskdetection-get.md
Title: "Get riskDetection" description: "Read the properties and relationships of a riskDetection object."-+ ms.localizationpriority: medium ms.prod: "identity-and-sign-in" doc_type: apiPageType
v1.0 Riskdetection List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/riskdetection-list.md
Title: "List riskDetections" description: "Get a list of the riskDetection objects and their properties."-+ ms.localizationpriority: medium ms.prod: "identity-and-sign-in" doc_type: apiPageType
v1.0 Riskyserviceprincipal Confirmcompromised https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/riskyserviceprincipal-confirmcompromised.md
If successful, this action returns a `204 No Content` response code. It does not
### Request +
+# [HTTP](#tab/http)
<!-- { "blockType": "request", "name": "riskyserviceprincipal_confirmcompromised"
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. <!-- {
v1.0 Riskyserviceprincipal Dismiss https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/riskyserviceprincipal-dismiss.md
If successful, this action returns a `204 No Content` response code. It does not
### Request +
+# [HTTP](#tab/http)
<!-- { "blockType": "request", "name": "riskyserviceprincipal_dismiss"
Content-Type: application/json
} ```
+# [C#](#tab/csharp)
+
+# [JavaScript](#tab/javascript)
+
+# [Java](#tab/java)
+
+# [Go](#tab/go)
+
+# [PowerShell](#tab/powershell)
+
+# [PHP](#tab/php)
++++ ### Response <!-- { "blockType": "response",
v1.0 Riskyserviceprincipal Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/riskyserviceprincipal-get.md
If successful, this method returns a `200 OK` response code and a [riskyServiceP
### Request +
+# [HTTP](#tab/http)
<!-- { "blockType": "request", "name": "get_riskyserviceprincipal"
If successful, this method returns a `200 OK` response code and a [riskyServiceP
GET https://graph.microsoft.com/v1.0/identityProtection/riskyServicePrincipals/9089a539-a539-9089-39a5-899039a58990 ```
+# [C#](#tab/csharp)
+
+# [JavaScript](#tab/javascript)
+
+# [Java](#tab/java)
+
+# [Go](#tab/go)
+
+# [PowerShell](#tab/powershell)
+
+# [PHP](#tab/php)
++++
v1.0 Riskyserviceprincipal List History https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/riskyserviceprincipal-list-history.md
If successful, this method returns a `200 OK` response code and a collection of
### Request +
+# [HTTP](#tab/http)
<!-- { "blockType": "request", "name": "list_riskyserviceprincipalhistoryitem"
If successful, this method returns a `200 OK` response code and a collection of
GET https://graph.microsoft.com/v1.0/identityProtection/riskyServicePrincipals/{riskyServicePrincipalId}/history ```
+# [C#](#tab/csharp)
+
+# [JavaScript](#tab/javascript)
+
+# [Java](#tab/java)
+
+# [Go](#tab/go)
+
+# [PowerShell](#tab/powershell)
+
+# [PHP](#tab/php)
++++ ### Response >**Note:** The response object shown here might be shortened for readability. <!-- {
v1.0 Riskyuser Confirmcompromised https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/riskyuser-confirmcompromised.md
Title: "riskyUser: confirmCompromised" description: "Confirm a user as compromised"-+ ms.localizationpriority: medium ms.prod: "identity-and-sign-in" doc_type: apiPageType
v1.0 Riskyuser Dismiss https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/riskyuser-dismiss.md
Title: "riskyUser: dismiss" description: "Dismiss a risky user"-+ ms.localizationpriority: medium ms.prod: "identity-and-sign-in" doc_type: apiPageType
v1.0 Riskyuser Get Riskyuserhistoryitem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/riskyuser-get-riskyuserhistoryitem.md
Title: "Get history" description: "Read the properties and relationships of a riskyUserHistoryItem object."-+ ms.localizationpriority: medium ms.prod: "identity-and-sign-in" doc_type: apiPageType
v1.0 Riskyuser Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/riskyuser-get.md
Title: "Get riskyUser" description: "Read the properties and relationships of a riskyUser object."-+ ms.localizationpriority: medium ms.prod: "identity-and-sign-in" doc_type: apiPageType
v1.0 Riskyuser List History https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/riskyuser-list-history.md
Title: "List history" description: "Get the riskyUserHistoryItems from the history navigation property."-+ ms.localizationpriority: medium ms.prod: "identity-and-sign-in" doc_type: apiPageType
v1.0 Riskyuser List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/riskyuser-list.md
Title: "List riskyUsers" description: "Get a list of the riskyUser objects and their properties."-+ ms.localizationpriority: medium ms.prod: "identity-and-sign-in" doc_type: apiPageType
v1.0 Security Alert Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/security-alert-get.md
+
+ Title: "Get alert"
+description: "Retrieve the properties and relationships of an security alert object."
Last updated : 11/11/2022+
+ms.localizationpriority: medium
++
+# Get alert
+Namespace: microsoft.graph.security
+
+Get the properties and relationships of an [alert](../resources/security-alert.md) in an organization based on the specified alert **id** property.
+
+## Permissions
+One of the following permissions is required to 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)|SecurityAlert.Read.All, SecurityAlert.ReadWrite.All|
+|Delegated (personal Microsoft account)|Not supported.|
+|Application|SecurityAlert.Read.All, SecurityAlert.ReadWrite.All|
+
+## HTTP request
+
+<!-- {
+ "blockType": "ignored"
+}
+-->
+``` http
+GET /security/alerts_v2/{alertId}
+```
++
+## 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 [alert](../resources/security-alert.md) object in the response body.
+
+## Examples
+
+### Request
+
+# [HTTP](#tab/http)
+<!-- {
+ "blockType": "request",
+ "sampleKeys": ["da637578995287051192_756343937"],
+ "name": "get_security_alert"
+}
+-->
+``` http
+GET https://graph.microsoft.com/v1.0/security/alerts_v2/da637578995287051192_756343937
+```
+
+# [C#](#tab/csharp)
+
+# [JavaScript](#tab/javascript)
+
+# [Java](#tab/java)
+
+# [Go](#tab/go)
+
+# [PHP](#tab/php)
+++++
+### Response
+>**Note:** The response object shown here might be shortened for readability.
+<!-- {
+ "blockType": "response",
+ "truncated": true,
+ "@odata.type": "microsoft.graph.security.alert"
+}
+-->
+
+``` http
+HTTP/1.1 200 OK
+Content-type: application/json
+
+{
+ "@odata.type": "#microsoft.graph.security.alert",
+ "id": "da637578995287051192_756343937",
+ "providerAlertId": "da637578995287051192_756343937",
+ "incidentId": "28282",
+ "status": "new",
+ "severity": "low",
+ "classification": "unknown",
+ "determination": "unknown",
+ "serviceSource": "microsoftDefenderForEndpoint",
+ "detectionSource": "antivirus",
+ "detectorId": "e0da400f-affd-43ef-b1d5-afc2eb6f2756",
+ "tenantId": "b3c1b5fc-828c-45fa-a1e1-10d74f6d6e9c",
+ "title": "Suspicious execution of hidden file",
+ "description": "A hidden file has been launched. This activity could indicate a compromised host. Attackers often hide files associated with malicious tools to evade file system inspection and defenses.",
+ "recommendedActions": "Collect artifacts and determine scope\n�\tReview the machine timeline for suspicious activities that may have occurred before and after the time of the alert, and record additional related artifacts (files, IPs/URLs) \n�\tLook for the presence of relevant artifacts on other systems. Identify commonalities and differences between potentially compromised systems.\n�\tSubmit relevant files for deep analysis and review resulting detailed behavioral information.\n�\tSubmit undetected files to the MMPC malware portal\n\nInitiate containment & mitigation \n�\tContact the user to verify intent and initiate local remediation actions as needed.\n�\tUpdate AV signatures and run a full scan. The scan might reveal and remove previously-undetected malware components.\n�\tEnsure that the machine has the latest security updates. In particular, ensure that you have installed the latest software, web browser, and Operating System versions.\n�\tIf credential theft is suspected, reset all relevant users passwords.\n�\tBlock communication with relevant URLs or IPs at the organization�s perimeter.",
+ "category": "DefenseEvasion",
+ "assignedTo": null,
+ "alertWebUrl": "https://security.microsoft.com/alerts/da637578995287051192_756343937?tid=b3c1b5fc-828c-45fa-a1e1-10d74f6d6e9c",
+ "incidentWebUrl": "https://security.microsoft.com/incidents/28282?tid=b3c1b5fc-828c-45fa-a1e1-10d74f6d6e9c",
+ "actorDisplayName": null,
+ "threatDisplayName": null,
+ "threatFamilyName": null,
+ "mitreTechniques": [
+ "T1564.001"
+ ],
+ "createdDateTime": "2021-04-27T12:19:27.7211305Z",
+ "lastUpdateDateTime": "2021-05-02T14:19:01.3266667Z",
+ "resolvedDateTime": null,
+ "firstActivityDateTime": "2021-04-26T07:45:50.116Z",
+ "lastActivityDateTime": "2021-05-02T07:56:58.222Z",
+ "comments": [],
+ "evidence": [
+ {
+ "@odata.type": "#microsoft.graph.security.deviceEvidence",
+ "createdDateTime": "2021-04-27T12:19:27.7211305Z",
+ "verdict": "unknown",
+ "remediationStatus": "none",
+ "remediationStatusDetails": null,
+ "firstSeenDateTime": "2020-09-12T07:28:32.4321753Z",
+ "mdeDeviceId": "73e7e2de709dff64ef64b1d0c30e67fab63279db",
+ "azureAdDeviceId": null,
+ "deviceDnsName": "tempDns",
+ "osPlatform": "Windows10",
+ "osBuild": 22424,
+ "version": "Other",
+ "healthStatus": "active",
+ "riskScore": "medium",
+ "rbacGroupId": 75,
+ "rbacGroupName": "UnassignedGroup",
+ "onboardingStatus": "onboarded",
+ "defenderAvStatus": "unknown",
+ "loggedOnUsers": [],
+ "roles": [
+ "compromised"
+ ],
+ "tags": [
+ "Test Machine"
+ ],
+ "vmMetadata": {
+ "vmId": "ca1b0d41-5a3b-4d95-b48b-f220aed11d78",
+ "cloudProvider": "azure",
+ "resourceId": "/subscriptions/8700d3a3-3bb7-4fbe-a090-488a1ad04161/resourceGroups/WdatpApi-EUS-STG/providers/Microsoft.Compute/virtualMachines/NirLaviTests",
+ "subscriptionId": "8700d3a3-3bb7-4fbe-a090-488a1ad04161"
+ }
+ },
+ {
+ "@odata.type": "#microsoft.graph.security.fileEvidence",
+ "createdDateTime": "2021-04-27T12:19:27.7211305Z",
+ "verdict": "unknown",
+ "remediationStatus": "none",
+ "remediationStatusDetails": null,
+ "detectionStatus": "detected",
+ "mdeDeviceId": "73e7e2de709dff64ef64b1d0c30e67fab63279db",
+ "roles": [],
+ "tags": [],
+ "fileDetails": {
+ "sha1": "5f1e8acedc065031aad553b710838eb366cfee9a",
+ "sha256": "8963a19fb992ad9a76576c5638fd68292cffb9aaac29eb8285f9abf6196a7dec",
+ "fileName": "MsSense.exe",
+ "filePath": "C:\\Program Files\\temp",
+ "fileSize": 6136392,
+ "filePublisher": "Microsoft Corporation",
+ "signer": null,
+ "issuer": null
+ }
+ },
+ {
+ "@odata.type": "#microsoft.graph.security.processEvidence",
+ "createdDateTime": "2021-04-27T12:19:27.7211305Z",
+ "verdict": "unknown",
+ "remediationStatus": "none",
+ "remediationStatusDetails": null,
+ "processId": 4780,
+ "parentProcessId": 668,
+ "processCommandLine": "\"MsSense.exe\"",
+ "processCreationDateTime": "2021-08-12T12:43:19.0772577Z",
+ "parentProcessCreationDateTime": "2021-08-12T07:39:09.0909239Z",
+ "detectionStatus": "detected",
+ "mdeDeviceId": "73e7e2de709dff64ef64b1d0c30e67fab63279db",
+ "roles": [],
+ "tags": [],
+ "imageFile": {
+ "sha1": "5f1e8acedc065031aad553b710838eb366cfee9a",
+ "sha256": "8963a19fb992ad9a76576c5638fd68292cffb9aaac29eb8285f9abf6196a7dec",
+ "fileName": "MsSense.exe",
+ "filePath": "C:\\Program Files\\temp",
+ "fileSize": 6136392,
+ "filePublisher": "Microsoft Corporation",
+ "signer": null,
+ "issuer": null
+ },
+ "parentProcessImageFile": {
+ "sha1": null,
+ "sha256": null,
+ "fileName": "services.exe",
+ "filePath": "C:\\Windows\\System32",
+ "fileSize": 731744,
+ "filePublisher": "Microsoft Corporation",
+ "signer": null,
+ "issuer": null
+ },
+ "userAccount": {
+ "accountName": "SYSTEM",
+ "domainName": "NT AUTHORITY",
+ "userSid": "S-1-5-18",
+ "azureAdUserId": null,
+ "userPrincipalName": null
+ }
+ },
+ {
+ "@odata.type": "#microsoft.graph.security.registryKeyEvidence",
+ "createdDateTime": "2021-04-27T12:19:27.7211305Z",
+ "verdict": "unknown",
+ "remediationStatus": "none",
+ "remediationStatusDetails": null,
+ "registryKey": "SYSTEM\\CONTROLSET001\\CONTROL\\WMI\\AUTOLOGGER\\SENSEAUDITLOGGER",
+ "registryHive": "HKEY_LOCAL_MACHINE",
+ "roles": [],
+ "tags": [],
+ }
+ ]
+}
+```
v1.0 Security Alert Post Comments https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/security-alert-post-comments.md
+
+ Title: "Create comment for alert"
+description: "Adds a comment to the end of the alert comments list"
Last updated : 11/11/2022+
+ms.localizationpriority: medium
++
+# Create comment for alert
+Namespace: microsoft.graph
+
+Create a comment for an existing [alert](../resources/security-alert.md) based on the specified alert **id** property.
+
+## Permissions
+One of the following permissions is required to 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)|SecurityAlert.ReadWrite.All|
+|Delegated (personal Microsoft account)|Not supported.|
+|Application|SecurityAlert.ReadWrite.All|
+
+## HTTP request
+
+<!-- {
+ "blockType": "ignored"
+}
+-->
+``` http
+POST /security/alerts_v2/{alertId}/comments
+```
+
+## Request headers
+|Name|Description|
+|:|:|
+|Authorization|Bearer {token}. Required.|
+|Content-Type|application/json. Required.|
+
+## Request body
+
+In the request body, use `@odata.type` to specify the parameter type of [alertComment](../resources/security-alertcomment.md), and provide a JSON object for the parameter, `comment`. See an [example](#examples).
+
+| Parameter | Type |Description|
+|:|:--|:-|
+|comment|String|The comment to be added.|
+
+## Response
+
+If successful, this method returns a `200 OK` response code and an updated list of all [alertComment](../resources/security-alertcomment.md) resources for the specified alert.
+
+## Examples
+
+### Request
+The following is an example of a request.
+
+# [HTTP](#tab/http)
+<!-- {
+ "blockType": "request",
+ "sampleKeys": ["da637865765418431569_-773071023"],
+ "name": "alert_v2_addcomment"
+}
+-->
+``` http
+POST https://graph.microsoft.com/v1.0/security/alerts_v2/da637865765418431569_-773071023/comments
+Content-Type: application/json
+
+{
+ "@odata.type": "microsoft.graph.security.alertComment",
+ "comment": "Demo for docs"
+}
+```
+
+# [JavaScript](#tab/javascript)
+++++
+### Response
+The following is an example of the response
+>**Note:** The response object shown here might be shortened for readability.
+<!-- {
+ "blockType": "response",
+ "@odata.type": "collection(microsoft.graph.security.alertComment)",
+ "truncated": true
+}
+-->
+
+``` http
+HTTP/1.1 200 OK
+Content-type: application/json
+
+{
+ "@odata.context": "https://graph.microsoft.com/beta/$metadata#security/alerts_v2('da637865765418431569_-773071023')/comments",
+ "value": [
+ {
+ "comment": "test",
+ "createdByDisplayName": "secAdmin@contoso.onmicrosoft.com",
+ "createdDateTime": "2022-10-13T07:08:30.1606766Z"
+ },
+ {
+ "comment": "Demo for docs",
+ "createdByDisplayName": "secAdmin@contoso.onmicrosoft.com",
+ "createdDateTime": "2022-10-13T07:08:40.3825324Z"
+ }
+ ]
+}
+```
v1.0 Security Alert Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/security-alert-update.md
+
+ Title: "Update alert"
+description: "Update the properties of an alert object."
Last updated : 11/11/2022+
+ms.localizationpriority: medium
++
+# Update alert
+Namespace: microsoft.graph
+
+Update the properties of an [alert](../resources/security-alert.md) object in an organization based on the specified alert **id** property.
+
+## Permissions
+One of the following permissions is required to 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)|SecurityAlert.ReadWrite.All|
+|Delegated (personal Microsoft account)|Not supported.|
+|Application|SecurityAlert.ReadWrite.All|
+
+## HTTP request
+
+<!-- {
+ "blockType": "ignored"
+}
+-->
+``` http
+PATCH /security/alerts_v2/{alertId}
+```
+
+## Request headers
+|Name|Description|
+|:|:|
+|Authorization|Bearer {token}. Required.|
+|Content-Type|application/json. Required.|
+
+## Request body
++
+|Property|Type|Description|
+|:|:|:|
+|status|microsoft.graph.security.alertStatus|The status of the alert. Possible values are: `new`, `inProgress`, `resolved`, `unknownFutureValue`.|
+|classification|microsoft.graph.security.alertClassification|Specifies the classification of the alert. Possible values are: `unknown`, `falsePositive`, `truePositive`, `benignPositive`, `unknownFutureValue`.|
+|determination|microsoft.graph.security.alertDetermination|Specifies the determination of the alert. Possible values are: `unknown`, `apt`, `malware`, `securityPersonnel`, `securityTesting`, `unwantedSoftware`, `other`, `multiStagedAttack`, `compromisedUser`, `phishing`, `maliciousUserActivity`, `clean`, `insufficientData`, `confirmedUserActivity`, `lineOfBusinessApplication`, `unknownFutureValue`.|
+|assignedTo|String|Owner of the incident, or null if no owner is assigned.|
++
+## Response
+
+If successful, this method returns a `200 OK` response code and an updated [alert](../resources/security-alert.md) object in the response body.
+
+## Examples
+
+### Request
+The following is an example of a request.
+
+# [HTTP](#tab/http)
+<!-- {
+ "blockType": "request",
+ "sampleKeys": ["da637551227677560813_-961444813"],
+ "name": "update_alert_v2"
+}
+-->
+``` http
+PATCH https://graph.microsoft.com/v1.0/security/alerts_v2/da637551227677560813_-961444813
+Content-Type: application/json
+Content-length: 2450
+
+{
+ "assignedTo": "secAdmin@contoso.onmicrosoft.com",
+ "classification": "truePositive",
+ "determination": "malware",
+ "status": "inProgress"
+}
+```
+
+# [C#](#tab/csharp)
+
+# [JavaScript](#tab/javascript)
+
+# [Java](#tab/java)
+
+# [Go](#tab/go)
+
+# [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",
+ "@odata.type": "microsoft.graph.security.alert",
+ "truncated": true
+}
+-->
+
+``` http
+HTTP/1.1 200 OK
+Content-type: application/json
+
+{
+ "@odata.type": "#microsoft.graph.security.alert",
+ "id": "da637551227677560813_-961444813",
+ "providerAlertId": "da637551227677560813_-961444813",
+ "incidentId": "28282",
+ "status": "inProgress",
+ "severity": "low",
+ "classification": "truePositive",
+ "determination": "malware",
+ "serviceSource": "microsoftDefenderForEndpoint",
+ "detectionSource": "antivirus",
+ "detectorId": "e0da400f-affd-43ef-b1d5-afc2eb6f2756",
+ "tenantId": "b3c1b5fc-828c-45fa-a1e1-10d74f6d6e9c",
+ "title": "Suspicious execution of hidden file",
+ "description": "A hidden file has been launched. This activity could indicate a compromised host. Attackers often hide files associated with malicious tools to evade file system inspection and defenses.",
+ "recommendedActions": "Collect artifacts and determine scope\n�\tReview the machine timeline for suspicious activities that may have occurred before and after the time of the alert, and record additional related artifacts (files, IPs/URLs) \n�\tLook for the presence of relevant artifacts on other systems. Identify commonalities and differences between potentially compromised systems.\n�\tSubmit relevant files for deep analysis and review resulting detailed behavioral information.\n�\tSubmit undetected files to the MMPC malware portal\n\nInitiate containment & mitigation \n�\tContact the user to verify intent and initiate local remediation actions as needed.\n�\tUpdate AV signatures and run a full scan. The scan might reveal and remove previously-undetected malware components.\n�\tEnsure that the machine has the latest security updates. In particular, ensure that you have installed the latest software, web browser, and Operating System versions.\n�\tIf credential theft is suspected, reset all relevant users passwords.\n�\tBlock communication with relevant URLs or IPs at the organization�s perimeter.",
+ "category": "DefenseEvasion",
+ "assignedTo": "secAdmin@contoso.onmicrosoft.com",
+ "alertWebUrl": "https://security.microsoft.com/alerts/da637551227677560813_-961444813?tid=b3c1b5fc-828c-45fa-a1e1-10d74f6d6e9c",
+ "incidentWebUrl": "https://security.microsoft.com/incidents/28282?tid=b3c1b5fc-828c-45fa-a1e1-10d74f6d6e9c",
+ "actorDisplayName": null,
+ "threatDisplayName": null,
+ "threatFamilyName": null,
+ "mitreTechniques": [
+ "T1564.001"
+ ],
+ "createdDateTime": "2021-04-27T12:19:27.7211305Z",
+ "lastUpdateDateTime": "2021-05-02T14:19:01.3266667Z",
+ "resolvedDateTime": null,
+ "firstActivityDateTime": "2021-04-26T07:45:50.116Z",
+ "lastActivityDateTime": "2021-05-02T07:56:58.222Z",
+ "comments": [],
+ "evidence": []
+}
+```
v1.0 Security Ediscoverysearch Purgedata https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/security-ediscoverysearch-purgedata.md
doc_type: "apiPageType"
# ediscoverySearch: purgeData Namespace: microsoft.graph.security
-Permanently delete Microsoft Teams messages contained in an [eDiscovery search](../resources/security-ediscoverysearch.md).
+Delete Microsoft Teams messages contained in an [eDiscovery search](../resources/security-ediscoverysearch.md).
>**Note:** This request purges Teams data only. It does not purge other types of data such as mailbox items.
v1.0 Security Incident Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/security-incident-get.md
+
+ Title: "Get incident"
+description: "Retrieve the properties and relationships of an incident object."
Last updated : 11/11/2022+
+ms.localizationpriority: medium
++
+# Get incident
+Namespace: microsoft.graph.security
+
+Retrieve the properties and relationships of an [incident](../resources/security-incident.md) object.
+
+Attacks are typically inflicted on different types of entities, such as devices, users, and mailboxes, resulting in multiple [alert](../resources/security-alert.md) objects. Microsoft 365 Defender correlates alerts with the same attack techniques or the same attacker into an **incident**.
+
+## Permissions
+One of the following permissions is required to 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)|SecurityIncident.Read.All, SecurityIncident.ReadWrite.All|
+|Delegated (personal Microsoft account)|Not supported.|
+|Application|SecurityIncident.Read.All, SecurityIncident.ReadWrite.All|
+
+## HTTP request
+
+<!-- {
+ "blockType": "ignored"
+}
+-->
+``` http
+GET /security/incidents/{incidentId}
+```
++
+## 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 [incident](../resources/security-incident.md) object in the response body.
+
+## Examples
+
+### Request
+
+# [HTTP](#tab/http)
+<!-- {
+ "blockType": "request",
+ "sampleKeys": ["2972395"],
+ "name": "get_incident"
+}
+-->
+``` http
+GET https://graph.microsoft.com/v1.0/security/incidents/2972395
+```
+
+# [C#](#tab/csharp)
+
+# [JavaScript](#tab/javascript)
+
+# [Java](#tab/java)
+
+# [Go](#tab/go)
+
+# [PowerShell](#tab/powershell)
+
+# [PHP](#tab/php)
+++++
+### Response
+>**Note:** The response object shown here might be shortened for readability.
+<!-- {
+ "blockType": "response",
+ "truncated": true,
+ "@odata.type": "microsoft.graph.security.incident"
+}
+-->
+
+``` http
+HTTP/1.1 200 OK
+Content-type: application/json
+
+{
+ "@odata.type": "#microsoft.graph.incident",
+ "id": "2972395",
+ "incidentWebUrl": "https://security.microsoft.com/incidents/2972395?tid=12f988bf-16f1-11af-11ab-1d7cd011db47",
+ "redirectIncidentId": null,
+ "displayName": "Multi-stage incident involving Initial access & Command and control on multiple endpoints reported by multiple sources",
+ "tenantId": "b3c1b5fc-828c-45fa-a1e1-10d74f6d6e9c",
+ "createdDateTime": "2021-08-13T08:43:35.5533333Z",
+ "lastUpdateDateTime": "2021-09-30T09:35:45.1133333Z",
+ "assignedTo": "KaiC@contoso.onmicrosoft.com",
+ "classification": "TruePositive",
+ "determination": "MultiStagedAttack",
+ "status": "Active",
+ "severity": "Medium",
+ "customTags": [
+ "Demo"
+ ],
+ "comments": [
+ {
+ "comment": "Demo incident",
+ "createdBy": "DavidS@contoso.onmicrosoft.com",
+ "createdTime": "2021-09-30T12:07:37.2756993Z"
+ }
+ ]
+}
+```
v1.0 Security Incident Post Comments https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/security-incident-post-comments.md
+
+ Title: "Create comment for incident"
+description: "Adds a comment to the end of the incident comments list"
Last updated : 11/11/2022+
+ms.localizationpriority: medium
++
+# Create comment
+Namespace: microsoft.graph
+
+Create a comment for an existing [incident](../resources/security-incident.md) based on the specified incident **id** property.
+
+## Permissions
+One of the following permissions is required to 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)|SecurityIncident.ReadWrite.All|
+|Delegated (personal Microsoft account)|Not supported.|
+|Application|SecurityIncident.ReadWrite.All|
+
+## HTTP request
+
+<!-- {
+ "blockType": "ignored"
+}
+-->
+``` http
+POST /security/incidents/{incidentId}/comments
+```
+
+## Request headers
+|Name|Description|
+|:|:|
+|Authorization|Bearer {token}. Required.|
+|Content-Type|application/json. Required.|
+
+## Request body
+
+In the request body, use `@odata.type` to specify the parameter type of [alertComment](../resources/security-alertcomment.md), and provide a JSON object for the parameter, `comment`. See an [example](#examples).
+
+| Parameter | Type |Description|
+|:|:--|:-|
+|comment|String|The comment to be added.|
+
+## Response
+
+If successful, this method returns a `200 OK` response code and an updated list of all [alertComment](../resources/security-alertcomment.md) resources of the incident.
+
+## Examples
+
+### Request
+The following is an example of a request.
+
+# [HTTP](#tab/http)
+<!-- {
+ "blockType": "request",
+ "sampleKeys": ["3962396"],
+ "name": "incident_addcomment"
+}
+-->
+``` http
+POST https://graph.microsoft.com/v1.0/security/incidents/3962396/comments
+Content-Type: application/json
+
+{
+ "@odata.type": "microsoft.graph.security.alertComment",
+ "comment": "Demo for docs"
+}
+```
+
+# [JavaScript](#tab/javascript)
+++++
+### Response
+The following is an example of the response
+>**Note:** The response object shown here might be shortened for readability.
+<!-- {
+ "blockType": "response",
+ "@odata.type": "collection(microsoft.graph.security.alertComment)",
+ "truncated": true
+}
+-->
+
+``` http
+HTTP/1.1 200 OK
+Content-type: application/json
+
+{
+ "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#security/alerts_v2('da637865765418431569_-773071023')/comments",
+ "value": [
+ {
+ "comment": "test",
+ "createdByDisplayName": "secAdmin@contoso.onmicrosoft.com",
+ "createdDateTime": "2022-10-13T07:08:45.4626766Z"
+ },
+ {
+ "comment": "Demo for docs",
+ "createdByDisplayName": "secAdmin@contoso.onmicrosoft.com",
+ "createdDateTime": "2022-10-13T07:08:50.5821324Z"
+ }
+ ]
+}
+```
v1.0 Security Incident Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/security-incident-update.md
+
+ Title: "Update incident"
+description: "Update the properties of an incident object."
Last updated : 11/11/2022+
+ms.localizationpriority: medium
++
+# Update incident
+Namespace: microsoft.graph.security
+
+Update the properties of an [incident](../resources/security-incident.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)|SecurityIncident.ReadWrite.All|
+|Delegated (personal Microsoft account)|Not supported.|
+|Application|SecurityIncident.ReadWrite.All|
+
+## HTTP request
+
+<!-- {
+ "blockType": "ignored"
+}
+-->
+``` http
+PATCH /security/incidents/{incidentId}
+```
+
+## Request headers
+|Name|Description|
+|:|:|
+|Authorization|Bearer {token}. Required.|
+|Content-Type|application/json. Required.|
+
+## Request body
++
+|Property|Type|Description|
+|:|:|:|
+|assignedTo|String|Owner of the incident, or null if no owner is assigned. Free editable text.|
+|classification|microsoft.graph.security.alertClassification|The specification for the incident. Possible values are: `unknown`, `falsePositive`, `truePositive`, `informationalExpectedActivity`, `unknownFutureValue`.|
+|determination|microsoft.graph.security.alertDetermination|Specifies the determination of the incident. Possible values are: `unknown`, `apt`, `malware`, `securityPersonnel`, `securityTesting`, `unwantedSoftware`, `other`, `multiStagedAttack`, `compromisedUser`, `phishing`, `maliciousUserActivity`, `clean`, `insufficientData`, `confirmedUserActivity`, `lineOfBusinessApplication`, `unknownFutureValue`.|
+|status|microsoft.graph.security.incidentStatus|The status of the incident. Possible values are: `active`, `resolved`, `redirected`, `unknownFutureValue`.|
+|customTags|String collection|Array of custom tags associated with an incident.|
++
+## Response
+
+If successful, this method returns a `200 OK` response code and an updated [incident](../resources/security-incident.md) object in the response body.
+
+## Examples
+
+### Request
+The following is an example of a request.
+
+# [HTTP](#tab/http)
+<!-- {
+ "blockType": "request",
+ "sampleKeys": ["2972395"],
+ "name": "update_incident"
+}
+-->
+``` http
+PATCH https://graph.microsoft.com/v1.0/security/incidents/2972395
+Content-Type: application/json
+
+{
+ "classification": "TruePositive",
+ "determination": "MultiStagedAttack",
+ "customTags": [
+ "Demo"
+ ]
+}
+```
+
+# [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",
+ "@odata.type": "microsoft.graph.security.incident",
+ "truncated": true
+}
+-->
+``` http
+HTTP/1.1 200 OK
+Content-Type: application/json
+
+{
+ "@odata.type": "#microsoft.graph.incident",
+ "id": "2972395",
+ "incidentWebUrl": "https://security.microsoft.com/incidents/2972395?tid=12f988bf-16f1-11af-11ab-1d7cd011db47",
+ "redirectIncidentId": null,
+ "displayName": "Multi-stage incident involving Initial access & Command and control on multiple endpoints reported by multiple sources",
+ "tenantId": "b3c1b5fc-828c-45fa-a1e1-10d74f6d6e9c",
+ "createdDateTime": "2021-08-13T08:43:35.5533333Z",
+ "lastUpdateDateTime": "2021-09-30T09:35:45.1133333Z",
+ "assignedTo": "KaiC@contoso.onmicrosoft.com",
+ "classification": "TruePositive",
+ "determination": "MultiStagedAttack",
+ "status": "Active",
+ "severity": "Medium",
+ "customTags": [
+ "Demo"
+ ],
+ "comments": [
+ {
+ "comment": "Demo incident",
+ "createdBy": "DavidS@contoso.onmicrosoft.com",
+ "createdTime": "2021-09-30T12:07:37.2756993Z"
+ }
+ ]
+}
+```
+
v1.0 Security List Alerts_V2 https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/security-list-alerts_v2.md
+
+ Title: "List alerts_v2"
+description: "Get a list of the security alert objects and their properties."
Last updated : 11/11/2022+
+ms.localizationpriority: medium
++
+# List alerts_v2
+Namespace: microsoft.graph.security
+
+Get a list of [alert](../resources/security-alert.md) resources that have been created to track suspicious activities in an organization.
+
+This operation lets you filter and sort through alerts to create an informed cyber security response. It exposes a collection of alerts that were flagged in your network, within the time range you specified in your environment retention policy. The most recent alerts are displayed at the top of the list.
+
+## Permissions
+One of the following permissions is required to 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)|SecurityAlert.Read.All, SecurityAlert.ReadWrite.All|
+|Delegated (personal Microsoft account)|Not supported.|
+|Application|SecurityAlert.Read.All, SecurityAlert.ReadWrite.All|
+
+## HTTP request
+
+<!-- {
+ "blockType": "ignored"
+}
+-->
+``` http
+GET /security/alerts_v2
+```
+
+## Optional query parameters
+This method supports the following OData query parameters to help customize the response: `$count`, `$filter`, `$skip`, `$top`.
+
+The following properties support `$filter` : **assignedTo**, **classification**, **determination**, **createdDateTime**, **lastUpdateDateTime**, **severity**, **serviceSource** and **status**.
+
+Use `@odata.nextLink` for pagination.
+
+The following are examples of their use:
+
+<!-- {
+ "blockType": "ignored"
+}
+-->
+``` http
+GET /security/alerts_v2?$filter={property}+eq+'{property-value}'
+GET /security/alerts_V2?$top=100&$skip=200
+```
+
+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 collection of [alert](../resources/security-alert.md) objects in the response body.
+
+## Examples
+
+### Request
+
+# [HTTP](#tab/http)
+<!-- {
+ "blockType": "request",
+ "name": "security_list_alerts"
+}
+-->
+``` http
+GET https://graph.microsoft.com/v1.0/security/alerts_v2
+```
+
+# [C#](#tab/csharp)
+
+# [JavaScript](#tab/javascript)
+
+# [Java](#tab/java)
+
+# [Go](#tab/go)
+
+# [PHP](#tab/php)
++++
+### Response
+>**Note:** The response object shown here might be shortened for readability.
+
+<!-- {
+ "blockType": "response",
+ "truncated": true,
+ "@odata.type": "microsoft.graph.security.alert",
+ "isCollection": true
+}
+-->
+``` http
+HTTP/1.1 200 OK
+Content-type: application/json
+
+{
+ "value": [
+ {
+ "@odata.type": "#microsoft.graph.security.alert",
+ "id": "da637551227677560813_-961444813",
+ "providerAlertId": "da637551227677560813_-961444813",
+ "incidentId": "28282",
+ "status": "new",
+ "severity": "low",
+ "classification": "unknown",
+ "determination": "unknown",
+ "serviceSource": "microsoftDefenderForEndpoint",
+ "detectionSource": "antivirus",
+ "detectorId": "e0da400f-affd-43ef-b1d5-afc2eb6f2756",
+ "tenantId": "b3c1b5fc-828c-45fa-a1e1-10d74f6d6e9c",
+ "title": "Suspicious execution of hidden file",
+ "description": "A hidden file has been launched. This activity could indicate a compromised host. Attackers often hide files associated with malicious tools to evade file system inspection and defenses.",
+ "recommendedActions": "Collect artifacts and determine scope\n�\tReview the machine timeline for suspicious activities that may have occurred before and after the time of the alert, and record additional related artifacts (files, IPs/URLs) \n�\tLook for the presence of relevant artifacts on other systems. Identify commonalities and differences between potentially compromised systems.\n�\tSubmit relevant files for deep analysis and review resulting detailed behavioral information.\n�\tSubmit undetected files to the MMPC malware portal\n\nInitiate containment & mitigation \n�\tContact the user to verify intent and initiate local remediation actions as needed.\n�\tUpdate AV signatures and run a full scan. The scan might reveal and remove previously-undetected malware components.\n�\tEnsure that the machine has the latest security updates. In particular, ensure that you have installed the latest software, web browser, and Operating System versions.\n�\tIf credential theft is suspected, reset all relevant users passwords.\n�\tBlock communication with relevant URLs or IPs at the organization�s perimeter.",
+ "category": "DefenseEvasion",
+ "assignedTo": null,
+ "alertWebUrl": "https://security.microsoft.com/alerts/da637551227677560813_-961444813?tid=b3c1b5fc-828c-45fa-a1e1-10d74f6d6e9c",
+ "incidentWebUrl": "https://security.microsoft.com/incidents/28282?tid=b3c1b5fc-828c-45fa-a1e1-10d74f6d6e9c",
+ "actorDisplayName": null,
+ "threatDisplayName": null,
+ "threatFamilyName": null,
+ "mitreTechniques": [
+ "T1564.001"
+ ],
+ "createdDateTime": "2021-04-27T12:19:27.7211305Z",
+ "lastUpdateDateTime": "2021-05-02T14:19:01.3266667Z",
+ "resolvedDateTime": null,
+ "firstActivityDateTime": "2021-04-26T07:45:50.116Z",
+ "lastActivityDateTime": "2021-05-02T07:56:58.222Z",
+ "comments": [],
+ "evidence": [
+ {
+ "@odata.type": "#microsoft.graph.security.deviceEvidence",
+ "createdDateTime": "2021-04-27T12:19:27.7211305Z",
+ "verdict": "unknown",
+ "remediationStatus": "none",
+ "remediationStatusDetails": null,
+ "firstSeenDateTime": "2020-09-12T07:28:32.4321753Z",
+ "mdeDeviceId": "73e7e2de709dff64ef64b1d0c30e67fab63279db",
+ "azureAdDeviceId": null,
+ "deviceDnsName": "tempDns",
+ "osPlatform": "Windows10",
+ "osBuild": 22424,
+ "version": "Other",
+ "healthStatus": "active",
+ "riskScore": "medium",
+ "rbacGroupId": 75,
+ "rbacGroupName": "UnassignedGroup",
+ "onboardingStatus": "onboarded",
+ "defenderAvStatus": "unknown",
+ "loggedOnUsers": [],
+ "roles": [
+ "compromised"
+ ],
+ "tags": [
+ "Test Machine"
+ ],
+ "vmMetadata": {
+ "vmId": "ca1b0d41-5a3b-4d95-b48b-f220aed11d78",
+ "cloudProvider": "azure",
+ "resourceId": "/subscriptions/8700d3a3-3bb7-4fbe-a090-488a1ad04161/resourceGroups/WdatpApi-EUS-STG/providers/Microsoft.Compute/virtualMachines/NirLaviTests",
+ "subscriptionId": "8700d3a3-3bb7-4fbe-a090-488a1ad04161"
+ }
+ },
+ {
+ "@odata.type": "#microsoft.graph.security.fileEvidence",
+ "createdDateTime": "2021-04-27T12:19:27.7211305Z",
+ "verdict": "unknown",
+ "remediationStatus": "none",
+ "remediationStatusDetails": null,
+ "detectionStatus": "detected",
+ "mdeDeviceId": "73e7e2de709dff64ef64b1d0c30e67fab63279db",
+ "roles": [],
+ "tags": [],
+ "fileDetails": {
+ "sha1": "5f1e8acedc065031aad553b710838eb366cfee9a",
+ "sha256": "8963a19fb992ad9a76576c5638fd68292cffb9aaac29eb8285f9abf6196a7dec",
+ "fileName": "MsSense.exe",
+ "filePath": "C:\\Program Files\\temp",
+ "fileSize": 6136392,
+ "filePublisher": "Microsoft Corporation",
+ "signer": null,
+ "issuer": null
+ }
+ },
+ {
+ "@odata.type": "#microsoft.graph.security.processEvidence",
+ "createdDateTime": "2021-04-27T12:19:27.7211305Z",
+ "verdict": "unknown",
+ "remediationStatus": "none",
+ "remediationStatusDetails": null,
+ "processId": 4780,
+ "parentProcessId": 668,
+ "processCommandLine": "\"MsSense.exe\"",
+ "processCreationDateTime": "2021-08-12T12:43:19.0772577Z",
+ "parentProcessCreationDateTime": "2021-08-12T07:39:09.0909239Z",
+ "detectionStatus": "detected",
+ "mdeDeviceId": "73e7e2de709dff64ef64b1d0c30e67fab63279db",
+ "roles": [],
+ "tags": [],
+ "imageFile": {
+ "sha1": "5f1e8acedc065031aad553b710838eb366cfee9a",
+ "sha256": "8963a19fb992ad9a76576c5638fd68292cffb9aaac29eb8285f9abf6196a7dec",
+ "fileName": "MsSense.exe",
+ "filePath": "C:\\Program Files\\temp",
+ "fileSize": 6136392,
+ "filePublisher": "Microsoft Corporation",
+ "signer": null,
+ "issuer": null
+ },
+ "parentProcessImageFile": {
+ "sha1": null,
+ "sha256": null,
+ "fileName": "services.exe",
+ "filePath": "C:\\Windows\\System32",
+ "fileSize": 731744,
+ "filePublisher": "Microsoft Corporation",
+ "signer": null,
+ "issuer": null
+ },
+ "userAccount": {
+ "accountName": "SYSTEM",
+ "domainName": "NT AUTHORITY",
+ "userSid": "S-1-5-18",
+ "azureAdUserId": null,
+ "userPrincipalName": null
+ }
+ },
+ {
+ "@odata.type": "#microsoft.graph.security.registryKeyEvidence",
+ "createdDateTime": "2021-04-27T12:19:27.7211305Z",
+ "verdict": "unknown",
+ "remediationStatus": "none",
+ "remediationStatusDetails": null,
+ "registryKey": "SYSTEM\\CONTROLSET001\\CONTROL\\WMI\\AUTOLOGGER\\SENSEAUDITLOGGER",
+ "registryHive": "HKEY_LOCAL_MACHINE",
+ "roles": [],
+ "tags": [],
+ }
+ ]
+ }
+ ]
+}
+```
v1.0 Security List Incidents https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/security-list-incidents.md
+
+ Title: "List incidents"
+description: "Get a list of the incident objects and their properties."
Last updated : 11/11/2022+
+ms.localizationpriority: medium
++
+# List incidents
+Namespace: microsoft.graph.security
+
+Get a list of [incident](../resources/security-incident.md) objects that Microsoft 365 Defender has created to track attacks in an organization.
+
+Attacks are typically inflicted on different types of entities, such as devices, users, and mailboxes, resulting in multiple [alert](../resources/security-alert.md) objects. Microsoft 365 Defender correlates alerts with the same attack techniques or the same attacker into an **incident**.
+
+This operation allows you to filter and sort through incidents to create an informed cyber security response. It exposes a collection of incidents that were flagged in your network, within the time range you specified in your environment retention policy. The most recent incidents are displayed at the top of the list.
+
+## Permissions
+One of the following permissions is required to 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)|SecurityIncident.Read.All, SecurityIncident.ReadWrite.All|
+|Delegated (personal Microsoft account)|Not supported.|
+|Application|SecurityIncident.Read.All, SecurityIncident.ReadWrite.All|
+
+## HTTP request
+
+<!-- {
+ "blockType": "ignored"
+}
+-->
+``` http
+GET /security/incidents
+```
+
+## Optional query parameters
+This method supports the following OData query parameters to help customize the response: `$count`, `$filter`, `$skip`, `$top`, `$expand`.
+
+The following properties support `$filter` : **assignedTo**, **classification**, **createdDateTime**, **determination**, **lastUpdateDateTime**, **severity**, and **status**.
+
+Use `@odata.nextLink` for pagination.
+
+The following are examples of their use:
+
+<!-- {
+ "blockType": "ignored"
+}
+-->
+``` http
+GET /security/incidents?$count=true
+GET /security/incidents?$filter={property}+eq+'{property-value}'
+GET /security/incidents?$top=10
+```
+
+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 collection of [incident](../resources/security-incident.md) objects in the response body.
+
+## Examples
+### Example 1: List all incidents
+#### Request
++
+# [HTTP](#tab/http)
+<!-- {
+ "blockType": "request",
+ "name": "list_incident_for_defender"
+}
+-->
+``` http
+GET https://graph.microsoft.com/v1.0/security/incidents
+```
+
+# [C#](#tab/csharp)
+
+# [JavaScript](#tab/javascript)
+
+# [Java](#tab/java)
+
+# [Go](#tab/go)
+
+# [PowerShell](#tab/powershell)
+
+# [PHP](#tab/php)
+++++
+#### Response
+>**Note:** The response object shown here might be shortened for readability.
+
+<!-- {
+ "blockType": "response",
+ "truncated": true,
+ "@odata.type": "microsoft.graph.security.incident",
+ "isCollection": true
+}
+-->
+
+``` http
+HTTP/1.1 200 OK
+Content-Type: application/json
+
+{
+ "value": [
+ {
+ "@odata.type": "#microsoft.graph.security.incident",
+ "id": "2972395",
+ "incidentWebUrl": "https://security.microsoft.com/incidents/2972395?tid=12f988bf-16f1-11af-11ab-1d7cd011db47",
+ "redirectIncidentId": null,
+ "tenantId": "b3c1b5fc-828c-45fa-a1e1-10d74f6d6e9c",
+ "displayName": "Multi-stage incident involving Initial access & Command and control on multiple endpoints reported by multiple sources",
+ "createdDateTime": "2021-08-13T08:43:35.5533333Z",
+ "lastUpdateDateTime": "2021-09-30T09:35:45.1133333Z",
+ "assignedTo": "KaiC@contoso.onmicrosoft.com",
+ "classification": "TruePositive",
+ "determination": "MultiStagedAttack",
+ "status": "Active",
+ "severity": "Medium",
+ "customTags": [
+ "Demo"
+ ],
+ "comments": [
+ {
+ "comment": "Demo incident",
+ "createdBy": "DavidS@contoso.onmicrosoft.com",
+ "createdTime": "2021-09-30T12:07:37.2756993Z"
+ }
+ ]
+ }
+ ]
+}
+```
+
+### Example 2: List all incidents with their alerts
+#### Request
++
+# [HTTP](#tab/http)
+<!-- {
+ "blockType": "request",
+ "name": "list_incident_with_their_alerts"
+}
+-->
+``` http
+GET https://graph.microsoft.com/v1.0/security/incidents?$expand=alerts
+```
+
+# [C#](#tab/csharp)
+
+# [JavaScript](#tab/javascript)
+
+# [Java](#tab/java)
+
+# [Go](#tab/go)
+
+# [PowerShell](#tab/powershell)
+
+# [PHP](#tab/php)
+++++
+#### Response
+>**Note:** The response object shown here might be shortened for readability.
+<!-- {
+ "blockType": "response",
+ "truncated": true,
+ "@odata.type": "microsoft.graph.security.incident",
+ "isCollection": true
+}
+-->
+``` http
+HTTP/1.1 200 OK
+Content-Type: application/json
+
+{
+ "value": [
+ {
+ "@odata.type": "#microsoft.graph.security.incident",
+ "id": "2972395",
+ "incidentWebUrl": "https://security.microsoft.com/incidents/2972395?tid=12f988bf-16f1-11af-11ab-1d7cd011db47",
+ "redirectIncidentId": null,
+ "tenantId": "b3c1b5fc-828c-45fa-a1e1-10d74f6d6e9c",
+ "displayName": "Multi-stage incident involving Initial access & Command and control on multiple endpoints reported by multiple sources",
+ "createdDateTime": "2021-08-13T08:43:35.5533333Z",
+ "lastUpdateDateTime": "2021-09-30T09:35:45.1133333Z",
+ "assignedTo": "KaiC@contoso.onmicrosoft.com",
+ "classification": "truePositive",
+ "determination": "multiStagedAttack",
+ "status": "active",
+ "severity": "medium",
+ "tags": [
+ "Demo"
+ ],
+ "comments": [
+ {
+ "comment": "Demo incident",
+ "createdBy": "DavidS@contoso.onmicrosoft.com",
+ "createdTime": "2021-09-30T12:07:37.2756993Z"
+ }
+ ],
+ "alerts": [
+ {
+ "@odata.type": "#microsoft.graph.security.alert",
+ "id": "da637551227677560813_-961444813",
+ "providerAlertId": "da637551227677560813_-961444813",
+ "incidentId": "28282",
+ "status": "new",
+ "severity": "low",
+ "classification": "unknown",
+ "determination": "unknown",
+ "serviceSource": "microsoftDefenderForEndpoint",
+ "detectionSource": "antivirus",
+ "detectorId": "e0da400f-affd-43ef-b1d5-afc2eb6f2756",
+ "tenantId": "b3c1b5fc-828c-45fa-a1e1-10d74f6d6e9c",
+ "title": "Suspicious execution of hidden file",
+ "description": "A hidden file has been launched. This activity could indicate a compromised host. Attackers often hide files associated with malicious tools to evade file system inspection and defenses.",
+ "recommendedActions": "Collect artifacts and determine scope\n�\tReview the machine timeline for suspicious activities that may have occurred before and after the time of the alert, and record additional related artifacts (files, IPs/URLs) \n�\tLook for the presence of relevant artifacts on other systems. Identify commonalities and differences between potentially compromised systems.\n�\tSubmit relevant files for deep analysis and review resulting detailed behavioral information.\n�\tSubmit undetected files to the MMPC malware portal\n\nInitiate containment & mitigation \n�\tContact the user to verify intent and initiate local remediation actions as needed.\n�\tUpdate AV signatures and run a full scan. The scan might reveal and remove previously-undetected malware components.\n�\tEnsure that the machine has the latest security updates. In particular, ensure that you have installed the latest software, web browser, and Operating System versions.\n�\tIf credential theft is suspected, reset all relevant users passwords.\n�\tBlock communication with relevant URLs or IPs at the organization�s perimeter.",
+ "category": "DefenseEvasion",
+ "assignedTo": null,
+ "alertWebUrl": "https://security.microsoft.com/alerts/da637551227677560813_-961444813?tid=b3c1b5fc-828c-45fa-a1e1-10d74f6d6e9c",
+ "incidentWebUrl": "https://security.microsoft.com/incidents/28282?tid=b3c1b5fc-828c-45fa-a1e1-10d74f6d6e9c",
+ "actorDisplayName": null,
+ "threatDisplayName": null,
+ "threatFamilyName": null,
+ "mitreTechniques": [
+ "T1564.001"
+ ],
+ "createdDateTime": "2021-04-27T12:19:27.7211305Z",
+ "lastUpdateDateTime": "2021-05-02T14:19:01.3266667Z",
+ "resolvedDateTime": null,
+ "firstActivityDateTime": "2021-04-26T07:45:50.116Z",
+ "lastActivityDateTime": "2021-05-02T07:56:58.222Z",
+ "comments": [],
+ "evidence": [
+ {
+ "@odata.type": "#microsoft.graph.security.deviceEvidence",
+ "createdDateTime": "2021-04-27T12:19:27.7211305Z",
+ "verdict": "unknown",
+ "remediationStatus": "none",
+ "remediationStatusDetails": null,
+ "firstSeenDateTime": "2020-09-12T07:28:32.4321753Z",
+ "mdeDeviceId": "73e7e2de709dff64ef64b1d0c30e67fab63279db",
+ "azureAdDeviceId": null,
+ "deviceDnsName": "tempDns",
+ "osPlatform": "Windows10",
+ "osBuild": 22424,
+ "version": "Other",
+ "healthStatus": "active",
+ "riskScore": "medium",
+ "rbacGroupId": 75,
+ "rbacGroupName": "UnassignedGroup",
+ "onboardingStatus": "onboarded",
+ "defenderAvStatus": "unknown",
+ "loggedOnUsers": [],
+ "roles": [
+ "compromised"
+ ],
+ "tags": [
+ "Test Machine"
+ ],
+ "vmMetadata": {
+ "vmId": "ca1b0d41-5a3b-4d95-b48b-f220aed11d78",
+ "cloudProvider": "azure",
+ "resourceId": "/subscriptions/8700d3a3-3bb7-4fbe-a090-488a1ad04161/resourceGroups/WdatpApi-EUS-STG/providers/Microsoft.Compute/virtualMachines/NirLaviTests",
+ "subscriptionId": "8700d3a3-3bb7-4fbe-a090-488a1ad04161"
+ }
+ },
+ {
+ "@odata.type": "#microsoft.graph.security.fileEvidence",
+ "createdDateTime": "2021-04-27T12:19:27.7211305Z",
+ "verdict": "unknown",
+ "remediationStatus": "none",
+ "remediationStatusDetails": null,
+ "detectionStatus": "detected",
+ "mdeDeviceId": "73e7e2de709dff64ef64b1d0c30e67fab63279db",
+ "roles": [],
+ "tags": [],
+ "fileDetails": {
+ "sha1": "5f1e8acedc065031aad553b710838eb366cfee9a",
+ "sha256": "8963a19fb992ad9a76576c5638fd68292cffb9aaac29eb8285f9abf6196a7dec",
+ "fileName": "MsSense.exe",
+ "filePath": "C:\\Program Files\\temp",
+ "fileSize": 6136392,
+ "filePublisher": "Microsoft Corporation",
+ "signer": null,
+ "issuer": null
+ }
+ },
+ {
+ "@odata.type": "#microsoft.graph.security.processEvidence",
+ "createdDateTime": "2021-04-27T12:19:27.7211305Z",
+ "verdict": "unknown",
+ "remediationStatus": "none",
+ "remediationStatusDetails": null,
+ "processId": 4780,
+ "parentProcessId": 668,
+ "processCommandLine": "\"MsSense.exe\"",
+ "processCreationDateTime": "2021-08-12T12:43:19.0772577Z",
+ "parentProcessCreationDateTime": "2021-08-12T07:39:09.0909239Z",
+ "detectionStatus": "detected",
+ "mdeDeviceId": "73e7e2de709dff64ef64b1d0c30e67fab63279db",
+ "roles": [],
+ "tags": [],
+ "imageFile": {
+ "sha1": "5f1e8acedc065031aad553b710838eb366cfee9a",
+ "sha256": "8963a19fb992ad9a76576c5638fd68292cffb9aaac29eb8285f9abf6196a7dec",
+ "fileName": "MsSense.exe",
+ "filePath": "C:\\Program Files\\temp",
+ "fileSize": 6136392,
+ "filePublisher": "Microsoft Corporation",
+ "signer": null,
+ "issuer": null
+ },
+ "parentProcessImageFile": {
+ "sha1": null,
+ "sha256": null,
+ "fileName": "services.exe",
+ "filePath": "C:\\Windows\\System32",
+ "fileSize": 731744,
+ "filePublisher": "Microsoft Corporation",
+ "signer": null,
+ "issuer": null
+ },
+ "userAccount": {
+ "accountName": "SYSTEM",
+ "domainName": "NT AUTHORITY",
+ "userSid": "S-1-5-18",
+ "azureAdUserId": null,
+ "userPrincipalName": null
+ }
+ },
+ {
+ "@odata.type": "#microsoft.graph.security.registryKeyEvidence",
+ "createdDateTime": "2021-04-27T12:19:27.7211305Z",
+ "verdict": "unknown",
+ "remediationStatus": "none",
+ "remediationStatusDetails": null,
+ "registryKey": "SYSTEM\\CONTROLSET001\\CONTROL\\WMI\\AUTOLOGGER\\SENSEAUDITLOGGER",
+ "registryHive": "HKEY_LOCAL_MACHINE",
+ "roles": [],
+ "tags": [],
+ }
+ ]
+ }
+ ]
+ }
+ ]
+}
+```
v1.0 Security Security Runhuntingquery https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/security-security-runhuntingquery.md
+
+ Title: "security: runHuntingQuery"
+description: "Run Hunting query API"
Last updated : 11/11/2022+
+ms.localizationpriority: medium
++
+# security: runHuntingQuery
+Namespace: microsoft.graph.security
+
+Queries a specified set of event, activity, or entity data supported by Microsoft 365 Defender to proactively look for specific threats in your environment.
+
+This is the method for advanced hunting in Microsoft 365 Defender. This method includes a query in Kusto Query Language (KQL). It specifies a data table in the [advanced hunting schema](/microsoft-365/security/defender/advanced-hunting-schema-tables?view=o365-worldwide&preserve-view=true) and a piped sequence of operators to filter or search that data, and format the query output in specific ways.
+
+Find out more about [hunting for threats across devices, emails, apps, and identities](/microsoft-365/security/defender/advanced-hunting-query-emails-devices?view=o365-worldwide&preserve-view=true). Learn about [KQL](/azure/data-explorer/kusto/query/).
+
+For information on using advanced hunting in the [Microsoft 365 Defender portal](/microsoft-365/security/defender/microsoft-365-defender-portal?view=o365-worldwide&preserve-view=true), see [Proactively hunt for threats with advanced hunting in Microsoft 365 Defender](/microsoft-365/security/defender/advanced-hunting-overview?view=o365-worldwide&preserve-view=true).
+
+## Permissions
+One of the following permissions is required to 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)|ThreatHunting.Read.All|
+|Delegated (personal Microsoft account)|Not supported.|
+|Application|ThreatHunting.Read.All|
++
+## HTTP request
+
+<!-- {
+ "blockType": "ignored"
+}
+-->
+``` http
+POST /security/runHuntingQuery
+```
+
+## Request headers
+|Name|Description|
+|:|:|
+|Authorization|Bearer {token}. Required.|
+|Content-Type|application/json. Required.|
+
+## Request body
+
+In the request body, provide a JSON object for the parameter, `Query`.
+
+| Parameter | Type |Description|
+|:|:--|:-|
+|Query|String|The hunting query in Kusto Query Language (KQL). For more information on KQL syntax, see [KQL quick reference](/azure/data-explorer/kql-quick-reference).|
+
+## Response
+
+If successful, this action returns a `200 OK` response code and a [huntingQueryResults](../resources/security-huntingqueryresults.md) in the response body.
+
+## Examples
+
+### Request
+
+This example specifies a KQL query which does the following:
+- Looks into the [DeviceProcessEvents](/microsoft-365/security/defender/advanced-hunting-deviceprocessevents-table?view=o365-worldwide&preserve-view=true) table in the advanced hunting schema.
+- Filters on the condition that the event is initiated by the powershell.exe process.
+- Specifies the output of 3 columns from the same table for each row: `Timestamp`, `FileName`, `InitiatingProcessFileName`.
+- Sorts the output by the `Timestamp` value.
+- Limits the output to 2 records (2 rows).
++
+# [HTTP](#tab/http)
+<!-- {
+ "blockType": "request",
+ "name": "security_runhuntingquery"
+}
+-->
+``` http
+POST https://graph.microsoft.com/v1.0/security/runHuntingQuery
+
+{
+ "Query": "DeviceProcessEvents | where InitiatingProcessFileName =~ \"powershell.exe\" | project Timestamp, FileName, InitiatingProcessFileName | order by Timestamp desc | limit 2"
+}
+```
+
+# [C#](#tab/csharp)
+
+# [JavaScript](#tab/javascript)
+
+# [Java](#tab/java)
+
+# [Go](#tab/go)
+
+# [PHP](#tab/php)
+++++
+### Response
+>**Note:** The response object shown here might be shortened for readability.
+<!-- {
+ "blockType": "response",
+ "@odata.type": "microsoft.graph.security.huntingQueryResults"
+}
+-->
+
+``` http
+HTTP/1.1 200 OK
+Content-type: application/json
+
+{
+ "schema": [
+ {
+ "Name": "Timestamp",
+ "Type": "DateTime"
+ },
+ {
+ "Name": "FileName",
+ "Type": "String"
+ },
+ {
+ "Name": "InitiatingProcessFileName",
+ "Type": "String"
+ }
+ ],
+ "results": [
+ {
+ "Timestamp": "2020-08-30T06:38:35.7664356Z",
+ "FileName": "conhost.exe",
+ "InitiatingProcessFileName": "powershell.exe"
+ },
+ {
+ "Timestamp": "2020-08-30T06:38:30.5163363Z",
+ "FileName": "conhost.exe",
+ "InitiatingProcessFileName": "powershell.exe"
+ }
+ ]
+}
+```
v1.0 Serviceprincipal List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/serviceprincipal-list.md
HTTP/1.1 200 OK
Content-type: application/json {
- "@odata.context":"https://graph.microsoft.com/v1.0/$metadata#servicePrinciples",
+ "@odata.context":"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals",
"@odata.count":1, "value":[ {
v1.0 Serviceprincipal Post Owners https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/serviceprincipal-post-owners.md
Namespace: microsoft.graph
-Use this API to add an owner for the [servicePrincipal](../resources/serviceprincipal.md).
+Use this API to add an owner for the [servicePrincipal](../resources/serviceprincipal.md). Service principal owners can be users, the service principal itself, or other service principals.
## Permissions 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 Serviceprincipalriskdetection Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/serviceprincipalriskdetection-get.md
If successful, this method returns a `200 OK` response code and a [servicePrinci
#### Request +
+# [HTTP](#tab/http)
<!-- { "blockType": "request", "name": "get_serviceprincipalriskdetection"
If successful, this method returns a `200 OK` response code and a [servicePrinci
GET https://graph.microsoft.com/v1.0/identityProtection/servicePrincipalRiskDetections/{servicePrincipalRiskDetectionId} ```
+# [C#](#tab/csharp)
+
+# [JavaScript](#tab/javascript)
+
+# [Java](#tab/java)
+
+# [Go](#tab/go)
+
+# [PowerShell](#tab/powershell)
+
+# [PHP](#tab/php)
++++ #### Response
v1.0 Sites List Followed https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/sites-list-followed.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Sites.Read.All, Sites.ReadWrite.All | |Delegated (personal Microsoft account) | Not supported. |
-|Application | Sites.Read.All, Sites.ReadWrite.All |
+|Application | Not supported. |
## HTTP request
v1.0 Taskfileattachment Createuploadsession https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/taskfileattachment-createuploadsession.md
+
+ Title: "taskFileAttachment: createUploadSession"
+description: "Create an upload session to iteratively upload ranges of a file as an attachment to a Microsoft To Do task."
+
+ms.localizationpriority: medium
++
+# taskFileAttachment: createUploadSession
+Namespace: microsoft.graph
++
+Create an upload session to iteratively upload ranges of a file as an attachment to a [todoTask](../resources/todotask.md).
+
+As part of the response, this action returns an upload URL that you can use in subsequent sequential `PUT` queries. The request headers for each `PUT` operation let you specify the exact range of bytes to be uploaded. This allows the transfer to be resumed, in case the network connection is dropped during the upload.
+
+The following are the steps to attach a file to a Microsoft To Do task using an upload session:
+
+1. Create an upload session.
+2. Within that upload session, iteratively upload ranges of bytes (up to 4 MB each time) until all the bytes of the file have been uploaded, and the file is attached to the **todoTask**.
+3. Optional: Delete the upload session.
+
+>**Note:** Use this approach to attach a file of any supported size between 0 MB to 25 MB.
+
+For an example that describes the end-to-end attachment process, see [attach files to a To Do task](/graph/todo-attachments).
+
+## Permissions
+One of the following permissions is required to 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)|Tasks.ReadWrite|
+|Delegated (personal Microsoft account)|Tasks.ReadWrite|
+|Application|Tasks.ReadWrite.All|
++
+## HTTP request
+
+<!-- {
+ "blockType": "ignored"
+}
+-->
+``` http
+POST /me/todo/lists/{id}/tasks/{id}/attachments/createUploadSession
+POST /users/{id}/todo/lists/{id}/tasks/{id}/attachments/createUploadSession
+```
+
+## 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|
+|:|:|:|
+|attachmentInfo|[attachmentInfo](../resources/attachmentinfo.md)|Represents attributes of the item to be uploaded and attached. At minimum, specify the attachment type (`file`), a name, and the size of the file.|
++
+## Response
+
+If successful, this action returns a `200 OK` response code and a new [uploadSession](../resources/uploadsession.md) in the response body.
+
+## Examples
+
+### Request
+The following is an example of a request to create an upload session.
+<!-- {
+ "blockType": "request",
+ "name": "attachmentbasethis.createuploadsession",
+ "sampleKeys": ["AAMDiFkfh=", "AAMkADliMm="]
+}
+-->
+``` http
+POST https://graph.microsoft.com/v1.0/me/todo/lists/AAMDiFkfh=/tasks/AAMkADliMm=/attachments/createUploadSession
+Content-Type: application/json
+
+{
+ "attachmentInfo": {
+ "attachmentType": "file",
+ "name": "flower",
+ "size": 3483322
+ }
+}
+```
+
+### 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.uploadSession"
+}
+-->
+``` http
+HTTP/1.1 200 OK
+Content-Type: application/json
+
+{
+ "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#microsoft.graph.uploadSession",
+ "uploadUrl": "https://graph.microsoft.com/v1.0/users/6f9a2a92-8527-4d64-837e-b5312852f36d/todo/lists/AAMDiFkfh=/tasks/AAMkADliMm=/attachmentSessions/AAMkADliMm=",
+ "expirationDateTime": "2022-06-09T10:45:27.4324526Z",
+ "nextExpectedRanges": [
+ "0-"
+ ]
+}
+```
v1.0 Taskfileattachment Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/taskfileattachment-delete.md
+
+ Title: "Delete taskFileAttachment"
+description: "Delete a taskFileAttachment object from a todoTask resource."
+
+ms.localizationpriority: medium
++
+# Delete taskFileAttachment
+Namespace: microsoft.graph
+
+Delete a [taskFileAttachment](../resources/taskfileattachment.md) object from a [todoTask](../resources/todotask.md) resource.
+
+## Permissions
+One of the following permissions is required to 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)|Tasks.ReadWrite|
+|Delegated (personal Microsoft account)|Tasks.ReadWrite|
+|Application|Tasks.ReadWrite.All|
+
+## HTTP request
+
+<!-- {
+ "blockType": "ignored"
+}
+-->
+``` http
+DELETE /me/todo/lists/{id}/tasks/{id}/attachments/{id}
+DELETE /users/{id}/todo/lists/{id}/tasks/{id}/attachments/{id}
+```
+
+## 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.
+
+<!-- {
+ "blockType": "request",
+ "name": "delete_taskfileattachment",
+ "sampleKeys": ["AAMehdkfuhgAAA=", "AAMkAGUzY5QKjAAA=", "AAMkAGUzY5QKjAAABEgAQAMkpJI_X-LBFgvrv1PlZYd8="]
+}
+-->
+``` http
+DELETE https://graph.microsoft.com/v1.0/me/todo/lists/AAMehdkfuhgAAA=/tasks/AAMkAGUzY5QKjAAA=/attachments/AAMkAGUzY5QKjAAABEgAQAMkpJI_X-LBFgvrv1PlZYd8=
+```
+
+### Response
+The following is an example of the response.
+<!-- {
+ "blockType": "response",
+ "truncated": true
+}
+-->
+``` http
+HTTP/1.1 204 No Content
+```
+
v1.0 Taskfileattachment Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/taskfileattachment-get.md
+
+ Title: "Get taskFileAttachment"
+description: "Read the properties and relationships of a taskFileAttachment object."
+
+ms.localizationpriority: medium
++
+# Get taskFileAttachment
+Namespace: microsoft.graph
+
+Read the properties and relationships of a [taskFileAttachment](../resources/taskfileattachment.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)|Tasks.Read, Tasks.ReadWrite|
+|Delegated (personal Microsoft account)|Tasks.Read, Tasks.ReadWrite|
+|Application|Tasks.Read.All, Tasks.ReadWrite.All|
+
+## HTTP request
+To get a file attached to a [todoTask](../resources/todotask.md):
+
+<!-- {
+ "blockType": "ignored"
+}
+-->
+```http
+GET /me/todo/lists/{id}/tasks/{id}/attachments/{id}
+GET /users/{id}/todo/lists/{id}/tasks/{id}/attachments/{id}
+```
+
+To get the raw contents of a file attachment (the content type is based on the original content type of the file):
+<!-- {
+ "blockType": "ignored"
+}
+-->
+``http
+GET /me/todo/lists/{id}/tasks/{id}/attachments/{id}/$value
+GET /users/{id}/todo/lists/{id}/tasks/{id}/attachments/{id}/$value
+``
+
+## 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 [taskFileAttachment](../resources/taskfileattachment.md) object in the response body.
+
+## Examples
+
+### Request
+The following is an example of a request.
+
+<!-- {
+ "blockType": "request",
+ "name": "get_taskfileattachment",
+ "sampleKeys": ["AAMehdkfuhgAAA=", "AAMkAGUzY5QKjAAA=", "AAMkAGUzY5QKjAAABEgAQAMkpJI_X-LBFgvrv1PlZYd8="]
+}
+-->
+``` http
+GET https://graph.microsoft.com/v1.0/me/todo/lists/AAMehdkfuhgAAA=/tasks/AAMkAGUzY5QKjAAA=/attachments/AAMkAGUzY5QKjAAABEgAQAMkpJI_X-LBFgvrv1PlZYd8=
+```
+
+### 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.taskFileAttachment"
+}
+-->
+``` http
+HTTP/1.1 200 OK
+Content-Type: application/json
+
+{
+ "value": {
+ "@odata.type": "#microsoft.graph.taskFileAttachment",
+ "id": "AAMkAGUzY5QKjAAABEgAQAMkpJI_X-LBFgvrv1PlZYd8=",
+ "lastModifiedDateTime": "2021-04-02T03:41:29Z",
+ "name": "Q1 Planning.docx",
+ "contentType": "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
+ "size": 29068,
+ "contentBytes": "UEsDBBQABgAIAAAAIQ4AAAAA"
+ }
+}
+```
+
v1.0 Team Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/team-get.md
Content-type: application/json
}, "discoverySettings": { "showInTeamsSearchAndSuggestions": true
+ },
+ "summary": {
+ "ownersCount": 2,
+ "membersCount": 3,
+ "guestsCount": 4,
} } ```
v1.0 Teamwork Sendactivitynotificationtorecipients https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/teamwork-sendactivitynotificationtorecipients.md
POST /teamwork/sendActivityNotificationToRecipients
| Authorization | Bearer {token}. Required. | | Content-Type | application/json. Required. |
+> **Note**: The token provided must be at least 45 minutes away from expiry. The API call will return a `412 Precondition Failed` response if the token expires within 45 minutes.
+ ## Request body In the request body, supply a JSON representation of the parameters.
v1.0 Termstore Group Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/termstore-group-delete.md
DELETE https://graph.microsoft.com/v1.0/sites/microsoft.sharepoint.com,b9b0bc03-
[!INCLUDE [sample-code](../includes/snippets/go/delete-group-from-store-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/delete-group-from-store-php-snippets.md)] [!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
v1.0 Termstore Group Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/termstore-group-get.md
GET https://graph.microsoft.com/v1.0/sites/microsoft.sharepoint.com,b9b0bc03-cbc
[!INCLUDE [sample-code](../includes/snippets/go/get-group-3-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/get-group-3-php-snippets.md)] [!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
GET https://graph.microsoft.com/v1.0/sites/mycompany.sharepoint.com,8f03a01c-dcf
[!INCLUDE [sample-code](../includes/snippets/go/get-group-termstore-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/get-group-termstore-php-snippets.md)] [!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
v1.0 Termstore Group List Sets https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/termstore-group-list-sets.md
GET https://graph.microsoft.com/v1.0/sites/microsoft.sharepoint.com,b9b0bc03-cbc
[!INCLUDE [sample-code](../includes/snippets/go/get-set-1-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/get-set-1-php-snippets.md)] [!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
v1.0 Termstore List Groups https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/termstore-list-groups.md
GET https://graph.microsoft.com/v1.0/sites/microsoft.sharepoint.com,b9b0bc03-cbc
[!INCLUDE [sample-code](../includes/snippets/go/get-group-2-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/get-group-2-php-snippets.md)] [!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
v1.0 Termstore Set Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/termstore-set-delete.md
DELETE https://graph.microsoft.com/v1.0/sites/microsoft.sharepoint.com,b9b0bc03-
[!INCLUDE [sample-code](../includes/snippets/go/delete-set-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/delete-set-php-snippets.md)] [!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
v1.0 Termstore Set Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/termstore-set-get.md
GET https://graph.microsoft.com/v1.0/sites/microsoft.sharepoint.com,b9b0bc03-cbc
[!INCLUDE [sample-code](../includes/snippets/go/get-set-2-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/get-set-2-php-snippets.md)] [!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
v1.0 Termstore Set Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/termstore-set-update.md
Content-Type: application/json
[!INCLUDE [sample-code](../includes/snippets/go/update-set-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/update-set-php-snippets.md)] [!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
v1.0 Termstore Store Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/termstore-store-get.md
GET https://graph.microsoft.com/v1.0/sites/microsoft.sharepoint.com,b9b0bc03-cbc
[!INCLUDE [sample-code](../includes/snippets/go/get-store-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/get-store-php-snippets.md)] [!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
v1.0 Termstore Store Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/termstore-store-update.md
Content-Type: application/json
[!INCLUDE [sample-code](../includes/snippets/go/update-store-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/update-store-php-snippets.md)] [!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
v1.0 Termstore Term Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/termstore-term-delete.md
DELETE https://graph.microsoft.com/v1.0/sites/microsoft.sharepoint.com,b9b0bc03-
[!INCLUDE [sample-code](../includes/snippets/go/delete-term-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/delete-term-php-snippets.md)] [!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
v1.0 Termstore Term Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/termstore-term-get.md
GET https://graph.microsoft.com/v1.0/sites/microsoft.sharepoint.com,b9b0bc03-cbc
[!INCLUDE [sample-code](../includes/snippets/go/get-term-1-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/get-term-1-php-snippets.md)] [!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
v1.0 Termstore Term List Children https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/termstore-term-list-children.md
GET https://graph.microsoft.com/v1.0/sites/microsoft.sharepoint.com,b9b0bc03-cbc
[!INCLUDE [sample-code](../includes/snippets/go/get-term-2-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/get-term-2-php-snippets.md)] [!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
v1.0 Termstore Term List Relations https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/termstore-term-list-relations.md
GET https://graph.microsoft.com/v1.0/sites/microsoft.sharepoint.com,b9b0bc03-cbc
[!INCLUDE [sample-code](../includes/snippets/go/get-relation-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/get-relation-php-snippets.md)] [!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
v1.0 Termstore Term Post https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/termstore-term-post.md
Content-Type: application/json
[!INCLUDE [sample-code](../includes/snippets/go/create-term-from--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/create-term-from--php-snippets.md)] [!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
v1.0 Termstore Term Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/termstore-term-update.md
Content-Type: application/json
[!INCLUDE [sample-code](../includes/snippets/go/update-term-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/update-term-php-snippets.md)] [!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
v1.0 Todo List Lists https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/todo-list-lists.md
One of the following permissions is required to call this API. To learn more, in
|Permission type|Permissions (from least to most privileged)| |:|:|
-|Delegated (work or school account)|Tasks.ReadWrite|
-|Delegated (personal Microsoft account)|Tasks.ReadWrite|
-|Application|Not supported|
+|Delegated (work or school account)|Tasks.Read, Tasks.ReadWrite|
+|Delegated (personal Microsoft account)|Tasks.Read, Tasks.ReadWrite|
+|Application| Tasks.Read.All, Tasks.ReadWrite.All|
## HTTP request
v1.0 Todo Post Lists https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/todo-post-lists.md
One of the following permissions is required to call this API. To learn more, in
|:|:| |Delegated (work or school account)|Tasks.ReadWrite| |Delegated (personal Microsoft account)|Tasks.ReadWrite|
-|Application|Not supported|
+|Application| Tasks.ReadWrite.All|
## HTTP request
v1.0 Todotask Delta https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/todotask-delta.md
One of the following permissions is required to call this API. To learn more, in
|:--|:| |Delegated (work or school account) | Tasks.ReadWrite | |Delegated (personal Microsoft account) | Tasks.ReadWrite |
-|Application | Not supported |
+|Application| Tasks.ReadWrite.All|
## HTTP request <!-- { "blockType": "ignored" } -->
v1.0 Todotask Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/todotask-get.md
One of the following permissions is required to call this API. To learn more, in
|:|:| |Delegated (work or school account)|Tasks.ReadWrite| |Delegated (personal Microsoft account)|Tasks.ReadWrite|
-|Application|Not supported|
+|Application|Not supported.|
## HTTP request
If successful, this method returns a `200 OK` response code and a [todoTask](../
### Request
+The following is an example of a request.
# [HTTP](#tab/http) <!-- {
GET https://graph.microsoft.com/v1.0/me/todo/lists/AAMkADA1MTHgwAAA=/tasks/721a3
### Response
-**Note:** The response object shown here might be shortened for readability.
+
+The following is an example of the request.
+
+> **Note:** The response object shown here might be shortened for readability.
<!-- { "blockType": "response", "truncated": true,
HTTP/1.1 200 OK
Content-Type: application/json {
- "@odata.context": "https://graph.microsoft.com/beta/$metadata#tasks/$entity",
+ "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#tasks/$entity",
"@odata.etag": "W/\"s8/ERWT3WEeFpBGD0bDgAA+TWq9g==\"", "importance": "low", "isReminderOn": false,
Content-Type: application/json
"dueDateTime": { "dateTime": "2020-08-25T04:00:00.0000000", "timeZone": "UTC"
+ },
+ "startDateTime": {
+ "dateTime": "2020-06-23T04:00:00.0000000",
+ "timeZone": "UTC"
} } ```
v1.0 Todotask List Attachments https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/todotask-list-attachments.md
+
+ Title: "List taskFileAttachments"
+description: "Get a list of the taskFileAttachment objects and their properties."
+
+ms.localizationpriority: medium
++
+# List taskFileAttachments
+Namespace: microsoft.graph
+
+Get a list of the [taskFileAttachment](../resources/taskfileattachment.md) objects and their properties. The **contentBytes** property will not be returned in the response. Use the [Get attachment](../api/attachment-get.md) API to view the **contentBytes**.
+
+## Permissions
+One of the following permissions is required to 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)|Tasks.Read, Tasks.ReadWrite|
+|Delegated (personal Microsoft account)|Tasks.Read, Tasks.ReadWrite|
+|Application|Tasks.Read.All, Tasks.ReadWrite.All|
+
+## HTTP request
+
+<!-- {
+ "blockType": "ignored"
+}
+-->
+``` http
+GET /me/todo/lists/{todoTaskListId}/tasks/{todoTaskId}/attachments
+GET /users/{id}/todo/lists/{id}/tasks/{id}/attachments
+```
+
+## 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 collection of [taskFileAttachment](../resources/taskfileattachment.md) objects in the response body.
+
+## Examples
+
+### Request
+The following is an example of a request.
+
+<!-- {
+ "blockType": "request",
+ "name": "list_taskfileattachment",
+ "sampleKeys": ["AAMehdkfuhgAAA=", "AAMkAGUzY5QKjAAA="]
+}
+-->
+``` http
+GET https://graph.microsoft.com/v1.0/me/todo/lists/AAMehdkfuhgAAA=/tasks/AAMkAGUzY5QKjAAA=/attachments
+```
+
+### 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.taskFileAttachment",
+ "isCollection": true
+}
+-->
+``` http
+HTTP/1.1 200 OK
+Content-Type: application/json
+
+{
+ "value": [
+ {
+ "@odata.type": "#microsoft.graph.taskFileAttachment",
+ "id": "AAMkADliMm=",
+ "name": "flower.md",
+ "size": 2814,
+ "lastModifiedDateTime": "2022-06-09T10:40:52Z",
+ "contentType": "application/octet-stream"
+ },
+ {
+ "@odata.type": "#microsoft.graph.taskFileAttachment",
+ "id": "AAMkADliMmU5YjJlLTVmMmQtNGQzNS1iYjA0LTdmZTA2NTI0MTE5YwBGAAAAAADdOMUbUmCfTKa7OC-fqjkdBwBnu3olF7NfToRyJ2f__TNcAAAAAAESAABnu3olF7NfToRyJ2f__TNcAAHmG2K0AAABEgAQAFWmGvX71MhOrjRDhWM95yY=",
+ "name": "tree.jpg",
+ "size": 8591,
+ "lastModifiedDateTime": "2022-06-09T10:40:59Z",
+ "contentType": "image/jpeg"
+ }
+ ]
+}
+```
v1.0 Todotask List Checklistitems https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/todotask-list-checklistitems.md
One of the following permissions is required to call this API. To learn more, in
|:|:| |Delegated (work or school account)|Tasks.Read, Tasks.ReadWrite| |Delegated (personal Microsoft account)|Tasks.Read, Tasks.ReadWrite|
-|Application|Tasks.Read, Tasks.ReadWrite|
+|Application|Tasks.Read.All, Tasks.ReadWrite.All|
## HTTP request
v1.0 Todotask List Linkedresources https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/todotask-list-linkedresources.md
One of the following permissions is required to call this API. To learn more, in
|Permission type|Permissions (from least to most privileged)| |:|:|
-|Delegated (work or school account)|Tasks.ReadWrite|
-|Delegated (personal Microsoft account)|Tasks.ReadWrite|
-|Application|Not supported.|
+|Delegated (work or school account)|Tasks.Read, Tasks.ReadWrite|
+|Delegated (personal Microsoft account)|Tasks.Read, Tasks.ReadWrite|
+|Application| Tasks.Read.All, Tasks.ReadWrite.All|
## HTTP request
v1.0 Todotask Post Attachments https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/todotask-post-attachments.md
+
+ Title: "Create taskFileAttachment"
+description: "Add a new taskFileAttachment object to a todoTask."
+
+ms.localizationpriority: medium
++
+# Create taskFileAttachment
+Namespace: microsoft.graph
+
+Add a new [taskFileAttachment](../resources/taskfileattachment.md) object to a [todoTask](../resources/todotask.md).
+
+This operation limits the size of the attachment you can add to under 3 MB. If the size of the file attachments is more than 3 MB, [create an upload session](../api/taskfileattachment-createuploadsession.md) to upload the attachments.
++
+## Permissions
+One of the following permissions is required to 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)|Tasks.ReadWrite|
+|Delegated (personal Microsoft account)|Tasks.ReadWrite|
+|Application|Tasks.ReadWrite.All|
+
+## HTTP request
+
+<!-- {
+ "blockType": "ignored"
+}
+-->
+``` http
+POST /me/todo/lists/{id}/tasks/{id}/attachments
+POST /users/{id}/todo/lists/{id}/tasks/{id}/attachments
+```
+
+## 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 [taskFileAttachment](../resources/taskfileattachment.md) object.
+
+When you create a file attachment, include `"@odata.type": "#microsoft.graph.taskFileAttachment"` and the required properties.
+
+|Property|Type|Description|
+|:|:|:|
+|contentBytes|Binary|The base64-encoded contents of the file. Required.|
+|contentType|String|The content type of the attachment. |
+|name|String|The name of the text displayed under the icon that represents the embedded attachment. This does not need to be the actual file name. Required. |
+|size|Int32|The size in bytes of the attachment. |
+
+## Response
+
+If successful, this method returns a `201 Created` response code and a [taskFileAttachment](../resources/taskfileattachment.md) object in the response body.
+
+## Examples
+
+### Request
+The following is an example of a request.
+
+<!-- {
+ "blockType": "request",
+ "name": "create_taskFileAttachment_from_",
+ "sampleKeys": ["AAMkpsDRVK=", "AAKdfjhgsjhgJ="]
+}
+-->
+``` http
+POST https://graph.microsoft.com/v1.0/me/todo/lists/AAMkpsDRVK=/tasks/AAKdfjhgsjhgJ=/attachments
+Content-Type: application/json
+
+{
+ "@odata.type": "#microsoft.graph.taskFileAttachment",
+ "name": "smile",
+ "contentBytes": "a0b1c76de9f7=",
+ "contentType": "image/gif"
+}
+```
+
+### 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.taskFileAttachment"
+}
+-->
+``` http
+HTTP/1.1 201 Created
+Content-Type: application/json
+
+{
+ "@odata.type": "#microsoft.graph.taskFileAttachment",
+ "id": "AAMkADNkN2R",
+ "lastModifiedDateTime": "2017-01-26T08:48:28Z",
+ "name": "smile",
+ "contentType": "image/gif",
+ "size": 1008
+}
+```
+
v1.0 Todotask Post Checklistitems https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/todotask-post-checklistitems.md
One of the following permissions is required to call this API. To learn more, in
|:|:| |Delegated (work or school account)|Tasks.ReadWrite| |Delegated (personal Microsoft account)|Tasks.ReadWrite|
-|Application|Tasks.ReadWrite|
+|Application| Tasks.ReadWrite.All|
## HTTP request
v1.0 Todotask Post Linkedresources https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/todotask-post-linkedresources.md
One of the following permissions is required to call this API. To learn more, in
|:|:| |Delegated (work or school account)|Tasks.ReadWrite| |Delegated (personal Microsoft account)|Tasks.ReadWrite|
-|Application|Not supported.|
+|Application| Tasks.ReadWrite.All|
## HTTP request
v1.0 Todotask Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/todotask-update.md
One of the following permissions is required to call this API. To learn more, in
|:|:| |Delegated (work or school account)|Tasks.ReadWrite| |Delegated (personal Microsoft account)|Tasks.ReadWrite|
-|Application|Not supported|
+|Application| Tasks.ReadWrite.All|
## HTTP request
The following table shows the properties that are required when you create the [
|isReminderOn|Boolean|Set to true if an alert is set to remind the user of the task.| |recurrence|[patternedRecurrence](../resources/patternedrecurrence.md)|The recurrence pattern for the task.| |reminderDateTime|[dateTimeTimeZone](../resources/datetimetimezone.md)|The date and time for a reminder alert of the task to occur.|
+|startDateTime|[dateTimeTimeZone](../resources/datetimetimezone.md)|The date in the specified time zone at which the task is scheduled to start.|
|status|taskStatus|Indicates state or progress of the task. Possible values are: `notStarted`, `inProgress`, `completed`, `waitingOnOthers`, `deferred`.| |title|String|A brief description of the task.| |createdDateTime|DateTimeOffset|The date and time when the task was created. By default, it is in UTC. You can provide a custom time zone in the request header.|
v1.0 Todotasklist Delete https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/todotasklist-delete.md
One of the following permissions is required to call this API. To learn more, in
|Permission type|Permissions (from least to most privileged)| |:|:|
-|Delegated (work or school account)|Tasks.Read|
-|Delegated (personal Microsoft account)|Tasks.Read|
-|Application|Not supported|
+|Delegated (work or school account)|Tasks.ReadWrite|
+|Delegated (personal Microsoft account)|Tasks.ReadWrite|
+|Application| Tasks.ReadWrite.All|
## HTTP request
v1.0 Todotasklist Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/todotasklist-get.md
One of the following permissions is required to call this API. To learn more, in
|Permission type|Permissions (from least to most privileged)| |:|:|
-|Delegated (work or school account)|Tasks.ReadWrite|
-|Delegated (personal Microsoft account)|Tasks.ReadWrite|
-|Application|Not supported.|
+|Delegated (work or school account)|Tasks.Read, Tasks.ReadWrite|
+|Delegated (personal Microsoft account)|Tasks.Read, Tasks.ReadWrite|
+|Application|Tasks.Read.All, Tasks.ReadWrite.All|
## HTTP request
v1.0 Todotasklist List Tasks https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/todotasklist-list-tasks.md
One of the following permissions is required to call this API. To learn more, in
|Permission type|Permissions (from least to most privileged)| |:|:|
-|Delegated (work or school account)|Tasks.ReadWrite|
-|Delegated (personal Microsoft account)|Tasks.ReadWrite|
-|Application|Not supported|
+|Delegated (work or school account)|Tasks.Read, Tasks.ReadWrite|
+|Delegated (personal Microsoft account)|Tasks.Read, Tasks.ReadWrite|
+|Application| Tasks.Read.All, Tasks.ReadWrite.All|
## HTTP request
v1.0 Todotasklist Post Tasks https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/todotasklist-post-tasks.md
One of the following permissions is required to call this API. To learn more, in
|:|:| |Delegated (work or school account)|Tasks.ReadWrite| |Delegated (personal Microsoft account)|Tasks.ReadWrite|
-|Application|Not supported.|
+|Application|Tasks.ReadWrite.All|
## HTTP request
The following table shows the properties that are required when you create the [
|isReminderOn|Boolean|Set to true if an alert is set to remind the user of the task.| |recurrence|[patternedRecurrence](../resources/patternedrecurrence.md)|The recurrence pattern for the task.| |reminderDateTime|[dateTimeTimeZone](../resources/datetimetimezone.md)|The date and time for a reminder alert of the task to occur.|
+|startDateTime|[dateTimeTimeZone](../resources/datetimetimezone.md)|The date in the specified time zone at which the task is scheduled to start.|
|status|taskStatus|Indicates the state or progress of the task. Possible values are: `notStarted`, `inProgress`, `completed`, `waitingOnOthers`, `deferred`.| |title|String|A brief description of the task.| |createdDateTime|DateTimeOffset|The date and time when the task was created. By default, it is in UTC. You can provide a custom time zone in the request header. The property value uses ISO 8601 format. For example, midnight UTC on Jan 1, 2020 would look like this: '2020-01-01T00:00:00Z'.|
v1.0 Todotasklist Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/todotasklist-update.md
One of the following permissions is required to call this API. To learn more, in
|:|:| |Delegated (work or school account)|Tasks.ReadWrite| |Delegated (personal Microsoft account)|Tasks.ReadWrite|
-|Application|Not supported|
+|Application|Tasks.ReadWrite.All|
## HTTP request
v1.0 User Get https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/user-get.md
Title: "Get a user"
+ Title: "Get user"
description: "Retrieve the properties and relationships of user object." ms.localizationpriority: high
ms.prod: "users"
doc_type: apiPageType
-# Get a user
+# Get user
Namespace: microsoft.graph
Content-type: application/json
"suppressions": [ ] }-->+
+### Example 5: Use `$filter` to retrieve specific users based on a property value
+
+This example shows how to use the `$filter` query parameter along with the `endswith` clause to retrieve a user with a specific value in the **mail** attribute. This request filters and returns all users with a mail address ending with contoso.com.
+
+#### Request
++
+# [HTTP](#tab/http)
+<!-- {
+ "blockType": "request",
+ "name": "get_user_filter"
+} -->
+```msgraph-interactive
+GET https://graph.microsoft.com/v1.0/users?$count=true&ConsistencyLevel=eventual&$filter=endsWith(mail,'@contoso.com')
+```
+
+# [C#](#tab/csharp)
+
+# [JavaScript](#tab/javascript)
+
+# [Java](#tab/java)
+
+# [Go](#tab/go)
+
+# [PowerShell](#tab/powershell)
+
+# [PHP](#tab/php)
++++
+#### Response
+
+<!-- {
+ "blockType": "response",
+ "truncated": true,
+ "@odata.type": "microsoft.graph.user"
+} -->
+```http
+HTTP/1.1 200 OK
+Content-type: application/json
+
+{
+
+ "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#users",
+ "@odata.count": 1350,
+ "@odata.nextLink": "https://graph.microsoft.com/v1.0/users?$count=true&$filter=endsWith(mail,'@contoso.com')&ConsistencyLevel=eventual&$skiptoken=m~AQAnOzEyN2NjN2I3NTQzYzQ0YzA4NjlhYjU5MzUzYmNhNGI2OzswOzA7",
+ "value": [
+ {
+ "businessPhones": [],
+ "displayName": "Phantom Space",
+ "givenName": "Space",
+ "jobTitle": null,
+ "mail": "Space.Phantom@cloudezzy.com",
+ "mobilePhone": null,
+ "officeLocation": null,
+ "preferredLanguage": null,
+ "surname": "Phantom",
+ "userPrincipalName": "Space.Phantom@contoso.com",
+ "id": "00111916-c5c5-4dd2-9e31-aab96af7511e"
+ }
+ ]
+}
+```
v1.0 User List Agreementacceptances https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/user-list-agreementacceptances.md
GET https://graph.microsoft.com/v1.0/me/agreementAcceptances
[!INCLUDE [sample-code](../includes/snippets/go/get-agreementacceptances-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/get-agreementacceptances-php-snippets.md)] [!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
v1.0 User List Contactfolders https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/user-list-contactfolders.md
doc_type: apiPageType
Namespace: microsoft.graph Get the contact folder collection in the default Contacts folder of the signed-in user.+ ## Permissions One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference).
GET /users/{id | userPrincipalName}/contactFolders
``` ## Optional query parameters This method supports the [OData Query Parameters](/graph/query-parameters) to help customize the response.+ ## Request headers | Header | Value | |:|:--|
Do not supply a request body for this method.
## Response
-If successful, this method returns a `200 OK` response code and collection of [ContactFolder](../resources/contactfolder.md) objects in the response body.
+If successful, this method returns a `200 OK` response code and a collection of [contactFolder](../resources/contactfolder.md) objects in the response body.
+ ## Example
-##### Request
-Here is an example of the request.
+### Request
+The following is an example of the request.
# [HTTP](#tab/http) <!-- {
GET https://graph.microsoft.com/v1.0/me/contactFolders
-##### Response
-Here is an example of the response. Note: The response object shown here might be shortened for readability.
+### Response
+The following is an example of the response.
+>**Note:** The response object shown here might be shortened for readability.
<!-- { "blockType": "response", "truncated": true,
v1.0 User List Mailfolders https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/user-list-mailfolders.md
If successful, this method returns a `200 OK` response code and a collection of
This example includes a **mailSearchFolder** object in the response. The mail search folder is a child folder under the Inbox with the display name "Weekly digests". #### Request
-Here is an example of the request.
+The following is an example of the request.
# [HTTP](#tab/http) <!-- {
GET https://graph.microsoft.com/v1.0/me/mailFolders
-##### Response
-Here is an example of the response which includes a **mailSearchFolder** that is a child folder under the Inbox. Note: The response object shown here may be truncated for brevity. All of the properties will be returned from an actual call.
+#### Response
+The following is an example of the response, which includes a **mailSearchFolder** that is a child folder under the Inbox.
>**Note:** The response object shown here might be shortened for readability. <!-- {
Content-type: application/json
### Example 2: Include hidden folders in the signed-in user's mailbox
-The next example uses the `includeHiddenFolders` query parameter to get a list of mail folders including hidden mail folders. The response includes the "Clutters" folder that has the **isHidden** set to true.
+This example uses the `includeHiddenFolders` query parameter to get a list of mail folders including hidden mail folders. The response includes the "Clutters" folder that has the **isHidden** set to `true`.
#### Request
GET https://graph.microsoft.com/beta/me/mailFolders/?includeHiddenFolders=true
#### Response
-Here is an example of the response.
+The following is an example of the response.
>**Note:** The response object shown here is shortened for readability, and doesn't include all the default folders in a user mailbox. <!-- {
v1.0 User Sendmail https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/user-sendmail.md
Content-type: application/json
"toRecipients": [ { "emailAddress": {
- "address": "fannyd@contoso.onmicrosoft.com"
+ "address": "frannis@contoso.onmicrosoft.com"
} } ],
v1.0 User Update https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/user-update.md
You can update or assign a value to a single property or all properties in the e
#### Request -
-# [HTTP](#tab/http)
<!-- { "blockType": "request", "name": "update_schemaextension_for_userID"
Content-type: application/json
} ```
-# [C#](#tab/csharp)
-
-# [JavaScript](#tab/javascript)
-
-# [Java](#tab/java)
-
-# [Go](#tab/go)
-
-# [PowerShell](#tab/powershell)
-
-# [PHP](#tab/php)
---
+To remove the value of the schema extension from the user object, set the **ext55gb1l09_msLearnCourses** property to `null`.
#### Response
Content-type: application/json
HTTP/1.1 204 No Content ```
->**Note:** To remove the value of the schema extension from the user object, set the property to `null`. For example:
->
->```http
->PATCH https://graph.microsoft.com/v1.0/users/4562bcc8-c436-4f95-b7c0-4f8ce89dca5e
->Content-type: application/json
->
->{
-> "ext55gb1l09_msLearnCourses": null
->}
->```
- ## See also - [Add custom data to resources using extensions](/graph/extensibility-overview)
v1.0 Workbook Createsession https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/api/workbook-createsession.md
If successful, this method returns a `201 Created` response code and a [workbook
### Example 1: Session creation with long-running operation pattern #### Request+
+# [HTTP](#tab/http)
<!-- { "blockType": "request", "name": "create_excel_session_with_long_running"
Content-type: application/json
} ```
+# [C#](#tab/csharp)
+
+# [JavaScript](#tab/javascript)
+
+# [Java](#tab/java)
++++ #### Response >**Note:** The response object shown here might be shortened for readability.
v1.0 Link Validation Config.Json https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/config/link-validation-config.json a/api-reference/v1.0/config/link-validation-config.json
"/cloud-app-security", "/concepts", "/defender-for-identity",
+ "/deployedge",
"/dotnet", "/dynamics-nav", "/exchange",
"/skypeforbusiness", "/sharepoint", "/universal-print",
+ "/training",
"/troubleshoot", "/windows",
- "/windows-hardware",
- "/deployedge"
+ "/windows-hardware"
] }
v1.0 Aaduserconversationmember https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/aaduserconversationmember.md
This type inherits from [conversationMember](conversationmember.md).
| Property | Type |Description| |:|:--|:-|
-|id|String| Read-only. Unique ID of the user.|
|displayName| string | The display name of the user. |
-|roles| string collection | The roles for that user. |
-|userId| string | The guid of the user. |
|email| string | The email address of the user. |
+|id|String| Read-only. Unique ID of the user.|
+|roles| string collection | The roles for that user. |
|tenantId| string | TenantId which the Azure AD user belongs to. |
+|userId| string | The guid of the user. |
|visibleHistoryStartDateTime| DateTimeOffset | The timestamp denoting how far back a conversation's history is shared with the conversation member. This property is settable only for members of a chat.| ## JSON representation
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.aadUserConversationMember",
- "id": "string (identifier)",
"displayName" : "string",
- "visibleHistoryStartDateTime": "string (timestamp)",
+ "email" : "string",
+ "id": "string (identifier)",
"roles" : ["string"],
+ "tenantId": "string",
"userId" : "string",
- "email" : "string",
- "tenantId": "string"
+ "visibleHistoryStartDateTime": "string (timestamp)"
} ```
v1.0 Accesspackage https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/accesspackage.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.accessPackage",
- "id": "String (identifier)",
- "displayName": "String",
+ "createdDateTime": "String (timestamp)",
"description": "String",
+ "displayName": "String",
+ "id": "String (identifier)",
"isHidden": "Boolean",
- "createdDateTime": "String (timestamp)",
"modifiedDateTime": "String (timestamp)" } ```
v1.0 Accesspackageapprovalstage https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/accesspackageapprovalstage.md
The following is a JSON representation of the resource.
{ "@odata.type": "#microsoft.graph.accessPackageApprovalStage", "durationBeforeAutomaticDenial": "String (duration)",
- "isApproverJustificationRequired": "Boolean",
- "isEscalationEnabled": "Boolean",
"durationBeforeEscalation": "String (duration)",
- "primaryApprovers": [
+ "escalationApprovers": [
{ "@odata.type": "microsoft.graph.singleUser" } ],
- "fallbackPrimaryApprovers": [
+ "fallbackEscalationApprovers": [
{ "@odata.type": "microsoft.graph.singleUser" } ],
- "escalationApprovers": [
+ "fallbackPrimaryApprovers": [
{ "@odata.type": "microsoft.graph.singleUser" } ],
- "fallbackEscalationApprovers": [
+ "isApproverJustificationRequired": "Boolean",
+ "isEscalationEnabled": "Boolean",
+ "primaryApprovers": [
{ "@odata.type": "microsoft.graph.singleUser" } ]
+
} ```
v1.0 Accesspackageassignment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/accesspackageassignment.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.accessPackageAssignment",
- "id": "String (identifier)",
- "state": "String",
- "status": "String",
"expiredDateTime": "String (timestamp)",
+ "id": "String (identifier)",
"schedule": { "@odata.type": "microsoft.graph.entitlementManagementSchedule"
- }
+ },
+ "state": "String",
+ "status": "String"
} ```
v1.0 Accesspackageassignmentpolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/accesspackageassignmentpolicy.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.accessPackageAssignmentPolicy",
- "id": "String (identifier)",
- "displayName": "String",
- "description": "String",
"allowedTargetScope": "String", "automaticRequestSettings": { "@odata.type": "microsoft.graph.accessPackageAutomaticRequestSettings" },
- "specificAllowedTargets": [
- {
- "@odata.type": "microsoft.graph.singleUser"
- }
- ],
+ "createdDateTime": "String (timestamp)",
+ "description": "String",
+ "displayName": "String",
"expiration": { "@odata.type": "microsoft.graph.expirationPattern" },
+ "id": "String (identifier)",
+ "modifiedDateTime": "String (timestamp)",
"requestorSettings": { "@odata.type": "microsoft.graph.accessPackageAssignmentRequestorSettings" },
The following is a JSON representation of the resource.
"reviewSettings": { "@odata.type": "microsoft.graph.accessPackageAssignmentReviewSettings" },
- "createdDateTime": "String (timestamp)",
- "modifiedDateTime": "String (timestamp)"
+ "specificAllowedTargets": [
+ {
+ "@odata.type": "microsoft.graph.singleUser"
+ }
+ ]
+
} ```
v1.0 Accesspackageassignmentrequest https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/accesspackageassignmentrequest.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.accessPackageAssignmentRequest",
+ "completedDateTime": "String (timestamp)",
+ "createdDateTime": "String (timestamp)",
"id": "String (identifier)", "requestType": "String",
- "state": "String",
- "status": "String",
- "createdDateTime": "String (timestamp)",
- "completedDateTime": "String (timestamp)",
"schedule": { "@odata.type": "microsoft.graph.entitlementManagementSchedule"
- }
+ },
+ "state": "String",
+ "status": "String"
} ```
v1.0 Accesspackageassignmentrequestorsettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/accesspackageassignmentrequestorsettings.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.accessPackageAssignmentRequestorSettings",
- "enableTargetsToSelfAddAccess": "Boolean",
- "enableTargetsToSelfUpdateAccess": "Boolean",
- "enableTargetsToSelfRemoveAccess": "Boolean",
"allowCustomAssignmentSchedule": "Boolean", "enableOnBehalfRequestorsToAddAccess": "Boolean",
- "enableOnBehalfRequestorsToUpdateAccess": "Boolean",
"enableOnBehalfRequestorsToRemoveAccess": "Boolean",
+ "enableOnBehalfRequestorsToUpdateAccess": "Boolean",
+ "enableTargetsToSelfAddAccess": "Boolean",
+ "enableTargetsToSelfRemoveAccess": "Boolean",
+ "enableTargetsToSelfUpdateAccess": "Boolean",
"onBehalfRequestors": [ { "@odata.type": "microsoft.graph.singleUser" }
- ]
+ ],
} ```
v1.0 Accesspackageassignmentrequestrequirements https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/accesspackageassignmentrequestrequirements.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.accessPackageAssignmentRequestRequirements",
- "policyId": "String",
- "policyDisplayName": "String",
- "policyDescription": "String",
+ "allowCustomAssignmentSchedule": "Boolean",
"isApprovalRequiredForAdd": "Boolean", "isApprovalRequiredForUpdate": "Boolean",
- "allowCustomAssignmentSchedule": "Boolean",
+ "policyDisplayName": "String",
+ "policyDescription": "String",
+ "policyId": "String",
"schedule": { "@odata.type": "microsoft.graph.entitlementManagementSchedule" }
v1.0 Accesspackageassignmentreviewsettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/accesspackageassignmentreviewsettings.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.accessPackageAssignmentReviewSettings",
- "isEnabled": "Boolean",
- "schedule": {
- "@odata.type": "microsoft.graph.entitlementManagementSchedule"
- },
- "isSelfReview": "Boolean",
- "primaryReviewers": [
+ "expirationBehavior": "String",
+ "fallbackReviewers": [
{ "@odata.type": "microsoft.graph.singleUser" } ],
- "fallbackReviewers": [
+ "isEnabled": "Boolean",
+ "isRecommendationEnabled": "Boolean",
+ "isReviewerJustificationRequired": "Boolean",
+ "isSelfReview": "Boolean",
+ "primaryReviewers": [
{ "@odata.type": "microsoft.graph.singleUser" } ],
- "expirationBehavior": "String",
- "isRecommendationEnabled": "Boolean",
- "isReviewerJustificationRequired": "Boolean"
+ "schedule": {
+ "@odata.type": "microsoft.graph.entitlementManagementSchedule"
+ }
+
} ```
v1.0 Accesspackagecatalog https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/accesspackagecatalog.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.accessPackageCatalog",
- "id": "String (identifier)",
- "displayName": "String",
- "description": "String",
"catalogType": "String",
- "state": "String",
- "isExternallyVisible": "Boolean",
"createdDateTime": "String (timestamp)",
- "modifiedDateTime": "String (timestamp)"
+ "description": "String",
+ "displayName": "String",
+ "id": "String (identifier)",
+ "isExternallyVisible": "Boolean",
+ "modifiedDateTime": "String (timestamp)",
+ "state": "String",
} ```
v1.0 Accesspackagesubject https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/accesspackagesubject.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.accessPackageSubject",
+ "displayName": "String",
+ "email": "String",
"id": "String (identifier)", "objectId": "String", "onPremisesSecurityIdentifier": "String",
- "displayName": "String",
"principalName": "String",
- "email": "String",
"subjectType": "String" } ```
v1.0 Accessreviewhistorydefinition https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/accessreviewhistorydefinition.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.accessReviewHistoryDefinition",
- "id": "String (identifier)",
- "displayName": "String",
- "reviewHistoryPeriodStartDateTime": "String (timestamp)",
- "reviewHistoryPeriodEndDateTime": "String (timestamp)",
- "status": "String",
- "decisions": [
- "String"
- ],
- "createdDateTime": "String (timestamp)",
"createdBy": { "@odata.type": "microsoft.graph.userIdentity" },
+ "createdDateTime": "String (timestamp)",
+ "decisions": [
+ "String"
+ ],
+ "displayName": "String",
+ "id": "String (identifier)",
+ "reviewHistoryPeriodEndDateTime": "String (timestamp)",
+ "reviewHistoryPeriodStartDateTime": "String (timestamp)",
"scopes": [ { "@odata.type": "microsoft.graph.accessReviewScope"
The following is a JSON representation of the resource.
], "scheduleSettings": { "@odata.type": "microsoft.graph.accessReviewHistoryScheduleSettings"
- }
+ },
+ "status": "String",
} ```
v1.0 Accessreviewhistoryinstance https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/accessreviewhistoryinstance.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.accessReviewHistoryInstance",
+ "downloadUri": "String",
+ "expirationDateTime": "String (timestamp)",
+ "fulfilledDateTime": "String (timestamp)",
"id": "String (identifier)",
- "reviewHistoryPeriodStartDateTime": "String (timestamp)",
"reviewHistoryPeriodEndDateTime": "String (timestamp)",
- "status": "String",
+ "reviewHistoryPeriodStartDateTime": "String (timestamp)",
"runDateTime": "String (timestamp)",
- "fulfilledDateTime": "String (timestamp)",
- "downloadUri": "String",
- "expirationDateTime": "String (timestamp)"
+ "status": "String"
+
} ```
v1.0 Accessreviewhistoryschedulesettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/accessreviewhistoryschedulesettings.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.accessReviewHistoryScheduleSettings",
- "reportRange": "String",
"recurrence": { "@odata.type": "microsoft.graph.patternedRecurrence"
- }
+ },
+ "reportRange": "String"
+
} ```
v1.0 Accessreviewinactiveusersqueryscope https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/accessreviewinactiveusersqueryscope.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.accessReviewInactiveUsersQueryScope",
+ "inactiveDuration": "String (duration)",
"query": "String",
- "queryType": "String",
"queryRoot": "String",
- "inactiveDuration": "String (duration)"
+ "queryType": "String"
+
} ```
v1.0 Accessreviewinstance https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/accessreviewinstance.md
Inherits from [entity](../resources/entity.md).
| endDateTime | DateTimeOffset | DateTime when review instance is scheduled to end.The DatetimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is `2014-01-01T00:00:00Z`. Supports `$select`. Read-only.| | fallbackReviewers |[accessReviewReviewerScope](../resources/accessreviewreviewerscope.md) collection| This collection of reviewer scopes is used to define the list of fallback reviewers. These fallback reviewers will be notified to take action if no users are found from the list of reviewers specified. This could occur when either the group owner is specified as the reviewer but the group owner does not exist, or manager is specified as reviewer but a user's manager does not exist. Supports `$select`.| | id | String | Unique identifier of the instance. Supports `$select`. Read-only.|
+| reviewers |[accessReviewReviewerScope](../resources/accessreviewreviewerscope.md) collection| This collection of access review scopes is used to define who the reviewers are. Supports `$select`. For examples of options for assigning reviewers, see [Assign reviewers to your access review definition using the Microsoft Graph API](/graph/accessreviews-scope-concept).|
| scope | [accessReviewScope](accessreviewscope.md) | Created based on **scope** and **instanceEnumerationScope** at the accessReviewScheduleDefinition level. Defines the scope of users reviewed in a group. Supports `$select` and `$filter` (`contains` only). Read-only. | | startDateTime | DateTimeOffset | DateTime when review instance is scheduled to start. May be in the future. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is `2014-01-01T00:00:00Z`. Supports `$select`. Read-only. | | status | String | Specifies the status of an accessReview. Possible values: `Initializing`, `NotStarted`, `Starting`, `InProgress`, `Completing`, `Completed`, `AutoReviewing`, and `AutoReviewed`. Supports `$select`, `$orderby`, and `$filter` (`eq` only). Read-only.|
-| reviewers |[accessReviewReviewerScope](../resources/accessreviewreviewerscope.md) collection| This collection of access review scopes is used to define who the reviewers are. Supports `$select`. For examples of options for assigning reviewers, see [Assign reviewers to your access review definition using the Microsoft Graph API](/graph/accessreviews-scope-concept).|
- ## Relationships
Here is a JSON representation of the resource.
```json { "@odata.type": "#microsoft.graph.accessReviewInstance",
- "id": "string (identifier)",
+ "contactedReviewers": [
+ {
+ "@odata.type": "microsoft.graph.accessReviewReviewer"
+ }
+ ],
"displayName": "string",
- "startDateTime": "string (timestamp)",
"endDateTime": "string (timestamp)",
- "status": "string",
- "scope": {
- "@odata.type": "microsoft.graph.accessReviewScope"
- },
- "reviewers": [
+ "fallbackReviewers": [
{ "@odata.type": "microsoft.graph.accessReviewReviewerScope" } ],
- "fallbackReviewers": [
+ "id": "string (identifier)",
+ "reviewers": [
{ "@odata.type": "microsoft.graph.accessReviewReviewerScope" } ],
- "contactedReviewers": [
- {
- "@odata.type": "microsoft.graph.accessReviewReviewer"
- }
- ]
+ "scope": {
+ "@odata.type": "microsoft.graph.accessReviewScope"
+ },
+ "startDateTime": "string (timestamp)",
+ "status": "string"
+
} ```
v1.0 Accessreviewinstancedecisionitem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/accessreviewinstancedecisionitem.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.accessReviewInstanceDecisionItem",
- "id": "String (identifier)",
"accessReviewId": "String",
- "reviewedBy": {
- "@odata.type": "microsoft.graph.userIdentity"
- },
- "reviewedDateTime": "String (timestamp)",
- "decision": "String",
- "justification": "String",
"appliedBy": { "@odata.type": "microsoft.graph.userIdentity" }, "appliedDateTime": "String (timestamp)", "applyResult": "String",
- "recommendation": "String",
+ "decision": "String",
+ "id": "String (identifier)",
+ "justification": "String",
"principal": { "@odata.type": "microsoft.graph.identity" }, "principalLink": "String",
+ "reviewedBy": {
+ "@odata.type": "microsoft.graph.userIdentity"
+ },
+ "reviewedDateTime": "String (timestamp)",
+ "recommendation": "String",
"resource": { "@odata.type": "microsoft.graph.accessReviewInstanceDecisionItemResource" },
v1.0 Accessreviewinstancedecisionitemaccesspackageassignmentpolicyresource https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/accessreviewinstancedecisionitemaccesspackageassignmentpolicyresource.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.accessReviewInstanceDecisionItemAccessPackageAssignmentPolicyResource",
- "id": "String (identifier)",
- "displayName": "String",
- "type": "String",
+ "accessPackageDisplayName": "String",
"accessPackageId": "String",
- "accessPackageDisplayName": "String"
+ "displayName": "String",
+ "id": "String (identifier)",
+ "type": "String"
} ```
v1.0 Accessreviewinstancedecisionitemazureroleresource https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/accessreviewinstancedecisionitemazureroleresource.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.accessReviewInstanceDecisionItemAzureRoleResource",
- "id": "String (identifier)",
"displayName": "String",
- "type": "String",
+ "id": "String (identifier)",
"scope": { "@odata.type": "microsoft.graph.accessReviewInstanceDecisionItemResource"
- }
+ },
+ "type": "String",
} ```
v1.0 Accessreviewinstancedecisionitemresource https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/accessreviewinstancedecisionitemresource.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.accessReviewInstanceDecisionItemResource",
- "id": "String (identifier)",
"displayName": "String",
+ "id": "String (identifier)",
"type": "String" } ```
v1.0 Accessreviewinstancedecisionitemserviceprincipalresource https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/accessreviewinstancedecisionitemserviceprincipalresource.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.accessreviewinstancedecisionitemserviceprincipalresource",
- "id": "String (identifier)",
+ "appId": "String",
"displayName": "String",
- "type": "String",
- "appId": "String"
+ "id": "String (identifier)",
+ "type": "String"
} ```
v1.0 Accessreviewnotificationrecipientitem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/accessreviewnotificationrecipientitem.md
Represents an Azure AD [access review](accessreviewsv2-overview.md) notification
| Property | Type | Description | | : | : | :- |
-| notificationTemplateType |String | Indicates the type of access review email to be sent. Supported template type is `CompletedAdditionalRecipients`, which sends review completion notifications to the recipients.|
| notificationRecipientScope |[accessReviewNotificationRecipientScope](../resources/accessreviewnotificationrecipientscope.md) | Determines the recipient of the notification email.|
+| notificationTemplateType |String | Indicates the type of access review email to be sent. Supported template type is `CompletedAdditionalRecipients`, which sends review completion notifications to the recipients.|
## Relationships None.
v1.0 Accessreviewnotificationrecipientqueryscope https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/accessreviewnotificationrecipientqueryscope.md
Inherits from [accessReviewNotificationRecipientScope](../resources/accessreview
| Property | Type | Description | | :-| :- | :- | | query | String | Represents the query for who the recipients are. For example, `/groups/{group id}/members` for group members and `/users/{user id}` for a specific user. |
-| queryType | String | Indicates the type of query. Allowed value is `MicrosoftGraph`. |
| queryRoot | String | In the scenario where reviewers need to be specified dynamically, indicates the relative source of the query. This property is only required if a relative query (that is, `./manager`) is specified. |-
+| queryType | String | Indicates the type of query. Allowed value is `MicrosoftGraph`. |
## Relationships None.
The following is a JSON representation of the resource.
{ "@odata.type": "#microsoft.graph.accessReviewNotificationRecipientQueryScope", "query": "String",
+ "queryRoot": "String",
"queryType": "String",
- "queryRoot": "String"
} ```
v1.0 Accessreviewqueryscope https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/accessreviewqueryscope.md
The following is a JSON representation of the resource.
{ "@odata.type": "#microsoft.graph.accessReviewQueryScope", "query": "String",
- "queryType": "String",
- "queryRoot": "String"
+ "queryRoot": "String",
+ "queryType": "String"
} ```
v1.0 Accessreviewreviewer https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/accessreviewreviewer.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.accessReviewReviewer",
- "id": "String",
- "displayName": "String",
- "userPrincipalName": "String",
"createdDateTime": "String (timestamp)",
+ "displayName": "String",
+ "id": "String",
+ "userPrincipalName": "String"
} ```
v1.0 Accessreviewreviewerscope https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/accessreviewreviewerscope.md
Inherits from [accessReviewScope](../resources/accessreviewscope.md).
| Property | Type | Description | | :-| :- | :- | | query | String | The query specifying who will be the reviewer.|
-| queryType | String | The type of query. Examples include `MicrosoftGraph` and `ARM`. |
| queryRoot | String | In the scenario where reviewers need to be specified dynamically, this property is used to indicate the relative source of the query. This property is only required if a relative query, for example, `./manager`, is specified. Possible value: `decisions`. |
+| queryType | String | The type of query. Examples include `MicrosoftGraph` and `ARM`. |
For more about configuration options for **reviewers**, see [Assign reviewers to your access review definition using the Microsoft Graph API](/graph/accessreviews-reviewers-concept). - ## Relationships None.
The following is a JSON representation of the resource.
{ "@odata.type": "#microsoft.graph.accessReviewReviewerScope", "query": "String",
- "queryType": "String",
- "queryRoot": "String"
+ "queryRoot": "String",
+ "queryType": "String"
} ```
v1.0 Accessreviewscheduledefinition https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/accessreviewscheduledefinition.md
An accessReviewScheduleDefinition contains a list of [accessReviewInstance](acce
| Property | Type | Description | | :| :-- | :- | | additionalNotificationRecipients |[accessReviewNotificationRecipientItem](../resources/accessReviewNotificationRecipientItem.md) collection| Defines the list of additional users or group members to be notified of the access review progress. |
+| backupReviewers (deprecated) |[accessReviewReviewerScope](../resources/accessreviewreviewerscope.md) collection| This collection of reviewer scopes is used to define the list of fallback reviewers. These fallback reviewers will be notified to take action if no users are found from the list of reviewers specified. This could occur when either the group owner is specified as the reviewer but the group owner does not exist, or manager is specified as reviewer but a user's manager does not exist. Supports `$select`. <br>**Note:** This property has been replaced by **fallbackReviewers**. However, specifying either **backupReviewers** or **fallbackReviewers** automatically populates the same values to the other property. |
| createdBy |[userIdentity](../resources/useridentity.md) | User who created this review. Read-only. | | createdDateTime |DateTimeOffset | Timestamp when the access review series was created. Supports `$select`. Read-only. | | descriptionForAdmins |String | Description provided by review creators to provide more context of the review to admins. Supports `$select`. |
An accessReviewScheduleDefinition contains a list of [accessReviewInstance](acce
| lastModifiedDateTime | DateTimeOffset | Timestamp when the access review series was last modified. Supports `$select`. Read-only.| | reviewers |[accessReviewReviewerScope](../resources/accessreviewreviewerscope.md) collection| This collection of access review scopes is used to define who are the reviewers. The reviewers property is only updatable if individual users are assigned as reviewers. Required on create. Supports `$select`. For examples of options for assigning reviewers, see [Assign reviewers to your access review definition using the Microsoft Graph API](/graph/accessreviews-reviewers-concept). <br/><br/>**NOTE:** The value of this property will be ignored if reviewers are assigned through the **stageSettings** property. | | scope |[accessReviewScope](../resources/accessreviewscope.md) | Defines the entities whose access is reviewed. For supported scopes, see [accessReviewScope](accessreviewscope.md). Required on create. Supports `$select` and `$filter` (`contains` only). For examples of options for configuring scope, see [Configure the scope of your access review definition using the Microsoft Graph API](/graph/accessreviews-scope-concept). |
-|stageSettings|[accessReviewStageSettings](../resources/accessreviewstagesettings.md) collection| Required only for a multi-stage access review to define the stages and their settings. You can break down each review instance into up to three sequential stages, where each stage can have a different set of reviewers, fallback reviewers, and settings. Stages will be created sequentially based on the **dependsOn** property. Optional. <br/><br/>When this property is defined, its settings are used instead of the corresponding settings in the [accessReviewScheduleDefinition](accessreviewscheduledefinition.md) object and its **settings**, **reviewers**, and **fallbackReviewers** properties. |
| settings |[accessReviewScheduleSettings](../resources/accessreviewschedulesettings.md)| The settings for an access review series, see type definition below. Supports `$select`. Required on create. |
+|stageSettings|[accessReviewStageSettings](../resources/accessreviewstagesettings.md) collection| Required only for a multi-stage access review to define the stages and their settings. You can break down each review instance into up to three sequential stages, where each stage can have a different set of reviewers, fallback reviewers, and settings. Stages will be created sequentially based on the **dependsOn** property. Optional. <br/><br/>When this property is defined, its settings are used instead of the corresponding settings in the [accessReviewScheduleDefinition](accessreviewscheduledefinition.md) object and its **settings**, **reviewers**, and **fallbackReviewers** properties. |
| status |String | This read-only field specifies the status of an access review. The typical states include `Initializing`, `NotStarted`, `Starting`, `InProgress`, `Completing`, `Completed`, `AutoReviewing`, and `AutoReviewed`. <br>Supports `$select`, `$orderby`, and `$filter` (`eq` only). Read-only. |
-| backupReviewers (deprecated) |[accessReviewReviewerScope](../resources/accessreviewreviewerscope.md) collection| This collection of reviewer scopes is used to define the list of fallback reviewers. These fallback reviewers will be notified to take action if no users are found from the list of reviewers specified. This could occur when either the group owner is specified as the reviewer but the group owner does not exist, or manager is specified as reviewer but a user's manager does not exist. Supports `$select`. <br>**Note:** This property has been replaced by **fallbackReviewers**. However, specifying either **backupReviewers** or **fallbackReviewers** automatically populates the same values to the other property. |
## Relationships | Relationship | Type |Description|
v1.0 Accessreviewschedulesettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/accessreviewschedulesettings.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.accessReviewScheduleSettings",
- "mailNotificationsEnabled": "Boolean",
- "reminderNotificationsEnabled": "Boolean",
- "justificationRequiredOnApproval": "Boolean",
- "defaultDecisionEnabled": "Boolean",
- "defaultDecision": "String",
- "instanceDurationInDays": "Integer",
- "recurrence": {
- "@odata.type": "microsoft.graph.patternedRecurrence"
- },
- "autoApplyDecisionsEnabled": "Boolean",
+
"applyActions": [ { "@odata.type": "microsoft.graph.removeAccessApplyAction" } ],
+ "autoApplyDecisionsEnabled": "Boolean",
+ "defaultDecision": "String",
+ "defaultDecisionEnabled": "Boolean",
+ "decisionHistoriesForReviewersEnabled": "Boolean",
+ "instanceDurationInDays": "Integer",
+ "justificationRequiredOnApproval": "Boolean",
+ "mailNotificationsEnabled": "Boolean",
"recommendationsEnabled": "Boolean",
- "decisionHistoriesForReviewersEnabled": "Boolean"
+ "recurrence": {
+ "@odata.type": "microsoft.graph.patternedRecurrence"
+ },
+ "reminderNotificationsEnabled": "Boolean"
} ```
v1.0 Accessreviewstage https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/accessreviewstage.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.accessReviewStage",
- "id": "String (identifier)",
- "startDateTime": "String (timestamp)",
"endDateTime": "String (timestamp)",
- "status": "String",
- "reviewers": [
+ "fallbackReviewers": [
{ "@odata.type": "microsoft.graph.accessReviewReviewerScope" } ],
- "fallbackReviewers": [
+ "id": "String (identifier)",
+ "reviewers": [
{ "@odata.type": "microsoft.graph.accessReviewReviewerScope" }
- ]
+ ],
+ "startDateTime": "String (timestamp)",
+
+ "status": "String"
+
} ```
v1.0 Accessreviewstagesettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/accessreviewstagesettings.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.accessReviewStageSettings",
- "stageId": "String",
"dependsOn": [ "String" ], "durationInDays": "Integer",
- "recommendationsEnabled": "Boolean",
"decisionsThatWillMoveToNextStage": [ "String" ],
- "reviewers": [
+ "fallbackReviewers": [
{ "@odata.type": "microsoft.graph.accessReviewReviewerScope" } ],
- "fallbackReviewers": [
+ "recommendationsEnabled": "Boolean",
+
+ "reviewers": [
{ "@odata.type": "microsoft.graph.accessReviewReviewerScope" }
- ]
+ ],
+ "stageId": "String"
} ```
v1.0 Activitybasedtimeoutpolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/activitybasedtimeoutpolicy.md
Inherits from [stsPolicy](stsPolicy.md).
| Property | Type | Description | |:-|:|:|
-|id|String| Unique identifier for this policy. Read-only.|
|definition|String collection| A string collection containing a JSON string that defines the rules and settings for this policy. See below for more details about the JSON schema for this property. Required.| |description|String| Description for this policy.| |displayName|String| Display name for this policy. Required.|
+|id|String| Unique identifier for this policy. Read-only.|
|isOrganizationDefault|Boolean|If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false.|
The properties below form the JSON object that represents an activity-based time
| Property | Type |Description| |:-|:|:|
-|Version|Integer|Policy version. Set value of 1. Required.|
|ApplicationPolicies|JSON object|Collection of application policy. An application policy, is a combination of an ApplicationId and a WebSessionIdleTimeout: <br> <ul><li>**ApplicationId**: Allowed values:<ul><li> default: applies the policy to all applications that support activity-based timeout functionality but do not have application-specific override</li><li> c44b4083-3bb0-49c1-b47d-974e53cbdf3c: applies the policy to the Azure Portal</li></ul></li><li>**WebSessionIdleTimeout**: The period of user inactivity after which the user's web session is considered expired. The minimum value is 5 minutes; the maximum value is 1 day.</li></ul> |
+|Version|Integer|Policy version. Set value of 1. Required.|
## Relationships
v1.0 Adminconsentrequestpolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/adminconsentrequestpolicy.md
The following is a JSON representation of the resource.
{ "@odata.type": "#microsoft.graph.adminConsentRequestPolicy", "isEnabled": "Boolean",
- "version": "Integer",
"notifyReviewers": "Boolean", "remindersEnabled": "Boolean", "requestDurationInDays": "Integer",
The following is a JSON representation of the resource.
{ "@odata.type": "microsoft.graph.accessReviewReviewerScope" }
- ]
+ ],
+ "version": "Integer"
} ```
v1.0 Administrativeunit https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/administrativeunit.md
This resource supports:
## Relationships | Relationship | Type |Description| |:|:--|:-|
-|extensions|[extension](extension.md) collection|The collection of open extensions defined for this administrative unit. Nullable.|
|members|[directoryObject](directoryobject.md) collection|Users and groups that are members of this administrative unit. Supports `$expand`.|
+|extensions|[extension](extension.md) collection|The collection of open extensions defined for this administrative unit. Nullable.|
|scopedRoleMembers|[scopedRoleMembership](scopedrolemembership.md) collection| Scoped-role members of this administrative unit. | ## JSON representation
v1.0 Aggregationoption https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/aggregationoption.md
The following is a JSON representation of the resource.
```json {
+ "bucketDefinition": {"@odata.type": "microsoft.graph.bucketAggregationDefinition"},
"field": "String",
- "size": 1024,
- "bucketDefinition": {"@odata.type": "microsoft.graph.bucketAggregationDefinition"}
+ "size": 1024
} ```
v1.0 Agreement https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/agreement.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.agreement",
- "id": "String (identifier)",
"displayName": "String",
+ "id": "String (identifier)",
+ "isPerDeviceAcceptanceRequired": "Boolean",
+ "isViewingBeforeAcceptanceRequired": "Boolean",
"termsExpiration": { "@odata.type": "microsoft.graph.termsExpiration" },
- "userReacceptRequiredFrequency": "String (duration)",
- "isViewingBeforeAcceptanceRequired": "Boolean",
- "isPerDeviceAcceptanceRequired": "Boolean"
+ "userReacceptRequiredFrequency": "String (duration)"
} ```
v1.0 Agreementacceptance https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/agreementacceptance.md
The following is a JSON representation of the resource.
```json {
- "id": "String (identifier)",
+ "@odata.type": "microsoft.graph.agreementAcceptance",
+ "agreementFileId": "String",
"agreementId": "String",
- "userId": "String",
- "deviceId": "String",
"deviceDisplayName": "String",
+ "deviceId": "String",
"deviceOSType": "String", "deviceOSVersion": "String",
- "agreementFileId": "String",
+ "expirationDateTime": "String",
+ "id": "String (identifier)",
+ "recordedDateTime": "String (timestamp)",
+ "state": "String",
"userDisplayName": "String",
- "userPrincipalName": "String",
"userEmail": "String",
- "recordedDateTime": "String (timestamp)",
- "expirationDateTime": "String",
- "state": "String"
+ "userId": "String",
+ "userPrincipalName": "String",
} ```
v1.0 Agreementfileproperties https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/agreementfileproperties.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.agreementFileProperties",
- "id": "String (identifier)",
- "fileName": "String",
- "language": "String",
- "isDefault": "Boolean",
- "isMajorVersion": "Boolean",
"createdDateTime": "String (timestamp)", "displayName": "String", "fileData": { "@odata.type": "microsoft.graph.agreementFileData"
- }
+ },
+ "fileName": "String",
+ "id": "String (identifier)",
+ "isDefault": "Boolean",
+ "isMajorVersion": "Boolean",
+ "language": "String"
} ```
v1.0 Alert https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/alert.md
Title: "alert resource type"
-description: "Represents potential security issues within a customer's tenant that Microsoft or partner security solutions have identified. Use alerts to unify and streamline security issue management across all integrated solutions. To learn more, see the sample queries in Graph Explorer."
+description: "Represents potential security issues within a customer's tenant that Microsoft or partner security solutions have identified."
ms.localizationpriority: high ms.prod: "security"
doc_type: resourcePageType
Namespace: microsoft.graph
-Represents potential security issues within a customer's tenant that Microsoft or partner security solutions have identified. Use alerts to unify and streamline security issue management across all integrated solutions.
+This resource corresponds to the first generation of alerts in the Microsoft Graph security API, representing potential security issues within a customer's tenant that Microsoft or a partner security solution has identified.
-Alerts can be retrieved from different security providers listed in [Use the Microsoft Graph security API](security-api-overview.md). To learn more, see the sample queries in [Graph Explorer](https://developer.microsoft.com/graph/graph-explorer).
+This type of alerts federates calling of supported Azure and Microsoft 365 Defender security providers listed in [Use the Microsoft Graph security API](security-api-overview.md#legacy-alerts). It aggregates common alert data among the different domains to allow applications to unify and streamline management of security issues across all integrated solutions.
+
+To learn more, see the sample queries in [Graph Explorer](https://developer.microsoft.com/graph/graph-explorer).
+ ## Methods
v1.0 Alternativesecurityid https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/alternativeSecurityId.md
For internal use only. This complex type will be deprecated in the future.
## Properties | Property | Type | Description |:--|:--|:
-| type | Int32 | For internal use only
| identityProvider | string | For internal use only | key | Edm.Binary | For internal use only
+| type | Int32 | For internal use only
v1.0 Appconsentrequest https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/appconsentrequest.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.appConsentRequest",
- "id": "String (identifier)",
- "appId": "String",
"appDisplayName": "String",
+ "appId": "String",
+ "id": "String (identifier)",
"pendingScopes": [ { "@odata.type": "microsoft.graph.appConsentRequestScope"
v1.0 Applemanagedidentityprovider https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/applemanagedidentityprovider.md
Inherits from [identityProviderBase](../resources/identityproviderbase.md).
|[Delete](../api/identityproviderbase-delete.md)|None|Delete the Apple identity provider configuration.| |[List available provider types](../api/identityproviderbase-availableprovidertypes.md)|String collection|Retrieve all available identity provider types available in the tenant.| + ## Properties |Property|Type|Description|
The following is a JSON representation of the resource.
```json {
- "id": "String",
+ "certificateData": "String",
"displayName": "String", "developerId": "String",
- "serviceId": "String",
+ "id": "String",
"keyId": "String",
- "certificateData": "String"
+ "serviceId": "String"
} ```
v1.0 Applicationserviceprincipal https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/applicationserviceprincipal.md
The following is a JSON representation of the resource.
```json {
- "servicePrincipal": { "@odata.type": "microsoft.graph.servicePrincipal" },
- "application": { "@odata.type": "microsoft.graph.application" }
+ "application": { "@odata.type": "microsoft.graph.application" },
+ "servicePrincipal": { "@odata.type": "microsoft.graph.servicePrincipal" }
} ```
v1.0 Applicationtemplate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/applicationtemplate.md
The following is a JSON representation of the resource.
```json {
- "id": "id-value",
+ "categories": ["categories-value"],
+ "description": "description-value",
"displayName": "displayName-value", "homePageUrl": "homePageUrl-value",
- "supportedSingleSignOnModes": ["supportedSingleSignOnModes-value"],
+ "id": "id-value",
"logoUrl": "logoUrl-value",
- "categories": ["categories-value"],
"publisher": "publisher-value",
- "description": "description-value"
+ "supportedSingleSignOnModes": ["supportedSingleSignOnModes-value"]
} ```
v1.0 Approleassignment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/approleassignment.md
An app role assignment where the assigned principal is a service principal is an
|:|:--|:-| | appRoleId | Guid | The identifier (**id**) for the [app role](approle.md) which is assigned to the principal. This app role must be exposed in the **appRoles** property on the resource application's service principal (**resourceId**). If the resource application has not declared any app roles, a default app role ID of `00000000-0000-0000-0000-000000000000` can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create. | | createdDateTime | DateTimeOffset | The time when the app role assignment was created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is `2014-01-01T00:00:00Z`. Read-only. |
+| deletedDateTime | DateTimeOffset | The date and time when the app role assignment was deleted. Always `null` for an appRoleAssignment object that hasn't been deleted. Inherited from [directoryObject](directoryobject.md). |
| id | String | A unique identifier for the **appRoleAssignment** key. Not nullable. Read-only. | | principalDisplayName | String |The display name of the user, group, or service principal that was granted the app role assignment. Read-only. Supports `$filter` (`eq` and `startswith`). | | principalId | Guid | The unique identifier (**id**) for the [user](user.md), [security group](group.md), or [service principal](serviceprincipal.md) being granted the app role. Security groups with dynamic memberships are supported. Required on create. |
The following is a JSON representation of the resource.
{ "appRoleId": "Guid", "createdDateTime": "String (timestamp)",
+ "deletedDateTime": "String (timestamp)",
"id": "String", "principalDisplayName": "String", "principalId": "Guid",
v1.0 Approvalsettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/approvalsettings.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.approvalSettings",
- "isApprovalRequired": "Boolean",
- "isApprovalRequiredForExtension": "Boolean",
- "isRequestorJustificationRequired": "Boolean",
"approvalMode": "String", "approvalStages": [ { "@odata.type": "microsoft.graph.unifiedApprovalStage"
- }
- ]
+ }],
+ "isApprovalRequired": "Boolean",
+ "isApprovalRequiredForExtension": "Boolean",
+ "isRequestorJustificationRequired": "Boolean"
} ```
v1.0 Approvalstage https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/approvalstage.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.approvalStage",
- "id": "String (identifier)",
- "displayName": "String",
- "status": "String",
"assignedToMe": "Boolean",
+ "displayName": "String",
+ "id": "String (identifier)",
+ "justification": "String",
"reviewedBy": { "@odata.type": "microsoft.graph.identity" }, "reviewedDateTime": "String (timestamp)", "reviewResult": "String",
- "justification": "String"
+ "status": "String"
} ```
v1.0 Appscope https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/appscope.md
The following is a JSON representation of the resource.
```json {
+ "displayName": "String",
"id": "String (identifier)",
- "type": "String",
- "displayName": "String"
+ "type": "String"
} ```
v1.0 Archivedprintjob https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/archivedprintjob.md
A record of a "final state" (completed, aborted, or canceled) print job that is
## Properties | Property | Type | Description | |:-|:|:|
-|id|String|The archived print job's GUID. Read-only.|
-|printerId|String|The printer ID that the job was queued for. Read-only.|
-|processingState|printJobProcessingState|The print job's final processing state. Read-only.|
-|createdDateTime|DateTimeOffset|The dateTimeOffset when the job was created. Read-only.|
+|acquiredByPrinter|Boolean|True if the job was acquired by a printer; false otherwise. Read-only.|
|acquiredDateTime|DateTimeOffset|The dateTimeOffset when the job was acquired by the printer, if any. Read-only.| |completionDateTime|DateTimeOffset|The dateTimeOffset when the job was completed, canceled or aborted. Read-only.|
-|acquiredByPrinter|Boolean|True if the job was acquired by a printer; false otherwise. Read-only.|
|copiesPrinted|Int32|The number of copies that were printed. Read-only.| |createdBy|[userIdentity](useridentity.md)|The user who created the print job. Read-only.|
+|createdDateTime|DateTimeOffset|The dateTimeOffset when the job was created. Read-only.|
+|id|String|The archived print job's GUID. Read-only.|
+|printerId|String|The printer ID that the job was queued for. Read-only.|
+|processingState|printJobProcessingState|The print job's final processing state. Read-only.|
## JSON representation
The following is a JSON representation of the resource.
}--> ```json {
- "@odata.type": "#microsoft.graph.archivedPrintJob",
- "id": "String (identifier)",
- "printerId": "String",
- "processingState": "String",
- "createdDateTime": "String (timestamp)",
+ "@odata.type": "#microsoft.graph.archivedPrintJob",
+ "acquiredByPrinter": "Boolean",
"acquiredDateTime": "String (timestamp)", "completionDateTime": "String (timestamp)",
- "acquiredByPrinter": "Boolean",
"copiesPrinted": "Integer", "createdBy": { "@odata.type": "microsoft.graph.userIdentity"
- }
+ },
+ "createdDateTime": "String (timestamp)",
+ "id": "String (identifier)",
+ "printerId": "String",
+ "processingState": "String"
} ```
v1.0 Assignedlabel https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/assignedlabel.md
Represents a sensitivity label assigned to an Microsoft 365 group. Sensitivity l
| Property | Type | Description | | :- | :-- | :- |
-| labelId | String | The unique identifier of the label. |
| displayName | String | The display name of the label. Read-only. |
+| labelId | String | The unique identifier of the label. |
## JSON representation
Here is a JSON representation of the resource.
```json {
- "labelId": "String",
- "displayName": "String"
+ "displayName": "String",
+ "labelId": "String"
} ```
v1.0 Assignedplan https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/assignedplan.md
The following table describes the possible statuses for the **capabilityStatus**
| LockedOut | Unavailable for all administrators and users for assignment but any data associated with the capability must be preserved. This is the state after `Suspended` and if the license isn't renewed, it is the final state before the plan is `Deleted`. | | Deleted | Unavailable and any data associated with the capability may be deleted. | + ## JSON representation Here is a JSON representation of the resource
v1.0 Attachmentbase https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/attachmentbase.md
+
+ Title: "attachmentBase resource type"
+description: "Represents an abstract base type for an attachment."
+
+ms.localizationpriority: medium
++
+# attachmentBase resource type
+
+Namespace: microsoft.graph
+
+Represents an abstract base type for an attachment. You can add related content to a [todoTask](../resources/todotask.md) in the form of an attachment.
+
+Base type of [taskFileAttachment](../resources/taskfileattachment.md).
+
+Inherits from [entity](../resources/entity.md).
++
+## Properties
+|Property|Type|Description|
+|:|:|:|
+|contentType|String|The MIME type.|
+|id|String|Unique identifier for the attachment. Read-only. Inherited from [entity](../resources/entity.md).|
+|lastModifiedDateTime|DateTimeOffset|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`.|
+|name|String|The display name of the attachment. This does not need to be the actual file name.|
+|size|Int32|The length of the attachment in bytes.|
+
+## Relationships
+None.
+
+## JSON representation
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "keyProperty": "id",
+ "@odata.type": "microsoft.graph.attachmentBase",
+ "baseType": "microsoft.graph.entity",
+ "openType": false
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.attachmentBase",
+ "contentType": "String",
+ "id": "String (identifier)",
+ "lastModifiedDateTime": "String (timestamp)",
+ "name": "String",
+ "size": "Int32"
+}
+```
+
v1.0 Attachmentinfo https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/attachmentinfo.md
+
+ Title: "attachmentInfo resource type"
+description: "Represents the attributes of an attachment."
+
+ms.localizationpriority: medium
++
+# attachmentInfo resource type
+
+Namespace: microsoft.graph
+
+Represents the attributes of an attachment.
+
+## Properties
+|Property|Type|Description|
+|:|:|:|
+|attachmentType|attachmentType|The type of the attachment. The possible values are: `file`, `item`, `reference`. Required.|
+|contentType|String|The nature of the data in the attachment. Optional.|
+|name|String|The display name of the attachment. This can be a descriptive string and does not have to be the actual file name. Required.|
+|size|Int64|The length of the attachment in bytes. Required.|
+
+## Relationships
+None.
+
+## JSON representation
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.attachmentInfo"
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.attachmentInfo",
+ "attachmentType": "String",
+ "contentType": "String",
+ "name": "String",
+ "size": "Int64"
+}
+```
+
v1.0 Attachmentsession https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/attachmentsession.md
+
+ Title: "attachmentSession resource type"
+description: "Represents a resource that uploads large attachments to a todoTask."
+
+ms.localizationpriority: medium
++
+# attachmentSession resource type
+
+Namespace: microsoft.graph
+
+Represents a resource that uploads large attachments to a [todoTask](../resources/todotask.md).
+
+Inherits from [entity](../resources/entity.md).
+
+## Properties
+|Property|Type|Description|
+|:|:|:|
+|content|Stream|The content streams that are uploaded.|
+|expirationDateTime|DateTimeOffset| The date and time in UTC when the upload session will expire. The complete file must be uploaded before this expiration time is reached.|
+|id|String|Unique identifier for the attachment session. Read-only. Inherited from [entity](../resources/entity.md).|
+|nextExpectedRanges|String collection|Indicates a single value `{start}` that represents the location in the file where the next upload should begin.|
+
+## Relationships
+None.
+
+## JSON representation
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "keyProperty": "id",
+ "@odata.type": "microsoft.graph.attachmentSession",
+ "baseType": "microsoft.graph.entity",
+ "openType": false
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.attachmentSession",
+ "content": "Stream",
+ "expirationDateTime": "String (timestamp)",
+ "id": "String (identifier)",
+ "nextExpectedRanges": [
+ "String"
+ ]
+}
+```
+
v1.0 Attendanceinterval https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/attendanceinterval.md
The following is a JSON representation of the resource.
```json {
+ "durationInSeconds": "Int32",
"joinDateTime": "String (timestamp)",
- "leaveDateTime": "String (timestamp)",
- "durationInSeconds": "Int32"
+ "leaveDateTime": "String (timestamp)"
} ```
v1.0 Attendancerecord https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/attendancerecord.md
The following is a JSON representation of the resource.
```json { "@odata.type": "#microsoft.graph.attendanceRecord",
- "emailAddress": "String",
- "totalAttendanceInSeconds": "Int32",
- "role": "String(None|Attendee|Presenter|Organizer)",
- "identity": {
- "@odata.type": "#microsoft.graph.identity"
- },
"attendanceIntervals": [ { "@odata.type": "#microsoft.graph.attendanceInterval" }
- ]
+ ],
+ "emailAddress": "String",
+ "identity": {
+ "@odata.type": "#microsoft.graph.identity"
+ },
+ "role": "String(None|Attendee|Presenter|Organizer)",
+ "totalAttendanceInSeconds": "Int32"
} ```
v1.0 Attendeebase https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/attendeebase.md
Here is a JSON representation of the resource
## Properties | Property | Type |Description| |:|:--|:-|
-|type|attendeeType| The type of attendee. The possible values are: `required`, `optional`, `resource`. Currently if the attendee is a person, [findMeetingTimes](../api/user-findmeetingtimes.md) always considers the person is of the `Required` type.|
|emailAddress|[emailAddress](emailaddress.md)|Includes the name and SMTP address of the attendee.|
+|type|attendeeType| The type of attendee. The possible values are: `required`, `optional`, `resource`. Currently if the attendee is a person, [findMeetingTimes](../api/user-findmeetingtimes.md) always considers the person is of the `Required` type.|
<!-- uuid: 8fcb5dbc-d5aa-4681-8e31-b001d5168d79 2015-10-25 14:57:30 UTC -->
v1.0 Audioconferencing https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/audioconferencing.md
Represents phone access information for an [onlineMeeting](onlinemeeting.md).
| Property | Type | Description | | :-- | :- | :-- |
-| dialinUrl | String | A URL to the externally-accessible web page that contains dial-in information. |
| conferenceId | String | The conference id of the online meeting. |
+| dialinUrl | String | A URL to the externally-accessible web page that contains dial-in information. |
| tollFreeNumbers | String collection | List of toll-free numbers that are displayed in the meeting invite. | | tollNumbers | String collection | List of toll numbers that are displayed in the meeting invite. | | tollFreeNumber (deprecated) | String | The toll-free number that connects to the Audio Conference Provider. |
The following is a JSON representation of the resource.
}--> ```json {
- "dialinUrl": "String",
"conferenceId": "String",
+ "dialinUrl": "String",
"tollFreeNumbers": [ "String" ], "tollNumbers": [ "String" ] }
v1.0 Authenticationcontextclassreference https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/authenticationcontextclassreference.md
Represents an Azure Active Directory authentication context class reference. Aut
| Property | Type | Description | |:-|:|:|
-|id|String| Identifier used to reference the authentication context class. The id is used to trigger step-up authentication for the referenced authentication requirements and is the value that will be issued in the `acrs` claim of an access token. This value in the claim is used to verify that the required authentication context has been satisfied. The allowed values are `c1` through `c25`. <br/> Supports `$filter` (`eq`).|
-|displayName|String| The display name is the friendly name of the authenticationContextClassReference object. This value should be used to identify the authentication context class reference when building user-facing admin experiences. For example, a selection UX.|
|description|String| A short explanation of the policies that are enforced by authenticationContextClassReference. This value should be used to provide secondary text to describe the authentication context class reference when building user-facing admin experiences. For example, a selection UX.|
+|displayName|String| The display name is the friendly name of the authenticationContextClassReference object. This value should be used to identify the authentication context class reference when building user-facing admin experiences. For example, a selection UX.|
+|id|String| Identifier used to reference the authentication context class. The id is used to trigger step-up authentication for the referenced authentication requirements and is the value that will be issued in the `acrs` claim of an access token. This value in the claim is used to verify that the required authentication context has been satisfied. The allowed values are `c1` through `c25`. <br/> Supports `$filter` (`eq`).|
|isAvailable|Boolean| Indicates whether the authenticationContextClassReference has been published by the security admin and is ready for use by apps. When it is set to `false`, it should not be shown in authentication context selection UX, or used to protect app resources. It will be shown and available for Conditional Access policy authoring. The default value is `false`. <br/> Supports `$filter` (`eq`). | ## Relationships
The following is a JSON representation of the resource.
```json {
- "id": "String",
- "displayName": "String",
"description": "String",
+ "displayName": "String",
+ "id": "String",
"isAvailable": "Boolean", }
v1.0 Authenticationflowspolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/authenticationflowspolicy.md
Represents the [policy configuration of self-service sign-up experience](../reso
|Property|Type|Description| |:-|:|:-|
-|id|String| Inherited property. The identifier of the authentication flows policy. Optional. Read-only.
-|displayName|String| Inherited property. The human-readable name of the policy. Optional. Read-only.|
|description|String|Inherited property. A description of the policy. Optional. Read-only.|
+|displayName|String| Inherited property. The human-readable name of the policy. Optional. Read-only.|
+|id|String| Inherited property. The identifier of the authentication flows policy. Optional. Read-only.|
|selfServiceSignUp|[selfServiceSignUpAuthenticationFlowConfiguration](../resources/selfservicesignupauthenticationflowconfiguration.md) |Contains [selfServiceSignUpAuthenticationFlowConfiguration](../resources/selfservicesignupauthenticationflowconfiguration.md) settings that convey whether self-service sign-up is enabled or disabled. Optional. Read-only. | ## Relationships
The following is a JSON representation of the resource.
``` json {
- "id":"String (identifier)",
- "displayName":"String",
"description":"String",
+ "displayName":"String",
+ "id":"String (identifier)",
"selfServiceSignUp":{ "@odata.type":"#microsoft.graph.selfServiceSignUpAuthenticationFlowConfiguration" }
v1.0 Authenticationmethod https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/authenticationmethod.md
Namespace: microsoft.graph
Represents an authentication method registered to a user. An [authentication method](/azure/active-directory/authentication/concept-authentication-methods) is something used by a user to authenticate or otherwise prove their identity to the system. Some examples include password, phone (usable via SMS or voice call), FIDO2 security keys, and more.
+The **authenticationMethod** resource type is an abstract type that's inherited by the following derived types:
+++ [emailAuthenticationMethod](emailauthenticationmethod.md)++ [fido2AuthenticationMethod](fido2authenticationmethod.md)++ [microsoftAuthenticatorAuthenticationMethod](microsoftauthenticatorauthenticationmethod.md)++ [passwordAuthenticationMethod](passwordauthenticationmethod.md)++ [phoneAuthenticationMethod](phoneauthenticationmethod.md)++ [softwareOathAuthenticationMethod](softwareoathauthenticationmethod.md)++ [temporaryAccessPassAuthenticationMethod](temporaryaccesspassauthenticationmethod.md)++ [windowsHelloForBusinessAuthenticationMethod](windowshelloforbusinessauthenticationmethod.md)+ > [!IMPORTANT] > Listing users' authentication methods only returns methods supported on this API version and registered to the user. See [Azure AD authentication methods API overview](authenticationmethods-overview.md) for a list of currently supported methods.
v1.0 Authenticationmethodfeatureconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/authenticationmethodfeatureconfiguration.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.authenticationMethodFeatureConfiguration",
- "state": "String",
- "includeTarget": {
+ "excludeTarget": {
"@odata.type": "microsoft.graph.featureTarget" },
- "excludeTarget": {
+ "includeTarget": {
"@odata.type": "microsoft.graph.featureTarget"
- }
+ },
+ "state": "String"
} ```
v1.0 Authenticationmethods Overview https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/authenticationmethods-overview.md
ms.localizationpriority: medium
ms.prod: "identity-and-sign-in" doc_type: "conceptualPageType" Last updated : 10/21/2022 # Azure AD authentication methods API overview
v1.0 Authenticationmethodspolicies Overview https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/authenticationmethodspolicies-overview.md
ms.localizationpriority: medium
ms.prod: "identity-and-sign-in" doc_type: "conceptualPageType" Last updated : 08/17/2022 # Azure AD authentication methods policies API overview
v1.0 Authenticationmethodspolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/authenticationmethodspolicy.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.authenticationMethodsPolicy",
- "id": "String (identifier)",
- "displayName": "String",
"description": "String",
+ "displayName": "String",
+ "id": "String (identifier)",
"lastModifiedDateTime": "String (timestamp)", "policyVersion": "String", "registrationEnforcement": {
v1.0 Authenticationmethodsregistrationcampaignincludetarget https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/authenticationmethodsregistrationcampaignincludetarget.md
The following is a JSON representation of the resource.
{ "@odata.type": "#microsoft.graph.authenticationMethodsRegistrationCampaignIncludeTarget", "id": "String (identifier)",
- "targetType": "String",
- "targetedAuthenticationMethod": "String"
+ "targetedAuthenticationMethod": "String",
+ "targetType": "String"
} ```
v1.0 Authenticationmethodtarget https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/authenticationmethodtarget.md
Title: "authenticationMethodTarget resource type"
-description: "A collection of users or groups enabled to use an authentication method as part of an authentication method policy."
+description: "A collection of groups that are enabled to use an authentication method as part of an authentication method policy."
ms.localizationpriority: medium ms.prod: "identity-and-sign-in"
doc_type: "apiPageType"
Namespace: microsoft.graph
-A collection of users or groups enabled to use an authentication method as part of an authentication method policy in Azure AD.
+A collection of groups that are enabled to use an authentication method as part of an authentication method policy in Azure AD.
## Properties
The following is a JSON representation of the resource.
{ "@odata.type": "#microsoft.graph.authenticationMethodTarget", "id": "String (identifier)",
- "targetType": "String",
"isRegistrationRequired": "Boolean",
+ "targetType": "String",
"useForSignIn": "Boolean" } ```
v1.0 Authorizationpolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/authorizationpolicy.md
The following is a JSON representation of the resource.
```json {
- "id": "String (identifier)",
- "description": "String",
- "displayName": "String",
- "blockMsolPowerShell": true,
- "defaultUserRolePermissions": {"@odata.type": "microsoft.graph.defaultUserRolePermissions"},
- "allowedToUseSSPR": true,
"allowedToSignUpEmailBasedSubscriptions": true,
+ "allowedToUseSSPR": true,
"allowEmailVerifiedUsersToJoinOrganization": true, "allowInvitesFrom": "String",
+ "blockMsolPowerShell": true,
+ "description": "String",
+ "defaultUserRolePermissions": {"@odata.type": "microsoft.graph.defaultUserRolePermissions"},
+ "displayName": "String",
+ "id": "String (identifier)",
"guestUserRoleId": "Guid" } ```
v1.0 Availabilityitem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/availabilityitem.md
The following is a JSON representation of the resource.
{ "endDateTime": "DateTimeInfo", "serviceId": "String",
- "status": "String",
- "startDateTime": "DateTimeInfo"
+ "startDateTime": "DateTimeInfo",
+ "status": "String"
} ```
v1.0 Averagecomparativescore https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/averagecomparativescore.md
Contains various different scores based on different scopes (for example, averag
|Property |Type |Description | |:--|:--|:--|
-|basis|String|Scope type. The possible values are: `AllTenants`, `TotalSeats`, `IndustryTypes`.|
|averageScore|Double|Average score within specified basis.|
+|basis|String|Scope type. The possible values are: `AllTenants`, `TotalSeats`, `IndustryTypes`.|
## JSON representation
The following is a JSON representation of the resource.
```json {
- "basis": "String",
- "averageScore": "Double"
+ "averageScore": "Double",
+ "basis": "String"
} ```
v1.0 Azure Ad Auditlog Overview https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/azure-ad-auditlog-overview.md
ms.localizationpriority: high
ms.prod: "identity-and-access-reports" doc_type: conceptualPageType Last updated : 09/16/2022 # Activity reports API overview
v1.0 Azure Ad Overview https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/azure-ad-overview.md
ms.localizationpriority: high
ms.prod: "identity-and-access" doc_type: conceptualPageType Last updated : 07/07/2022 # Working with Azure Active Directory resources in Microsoft Graph
v1.0 Azureactivedirectorytenant https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/azureactivedirectorytenant.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.azureActiveDirectoryTenant",
- "tenantId": "String",
- "displayName": "String"
+ "displayName": "String",
+ "tenantId": "String"
} ```
v1.0 B2xidentityuserflow https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/b2xidentityuserflow.md
Inherits from base class [identityUserFlow](../resources/identityuserflow.md).
|Property|Type|Description| |:|:--|:-|
+|apiConnectorConfiguration|[userFlowApiConnectorConfiguration](../resources/userflowapiconnectorconfiguration.md)|Configuration for enabling an API connector for use as part of the self-service sign-up user flow. You can only obtain the value of this object using [Get userFlowApiConnectorConfiguration](../api/b2xidentityuserflow-get-apiConnectorConfiguration.md).|
|id|String|The name of the user flow. This is a required value and is immutable after it's created. The name will be prefixed with the value of `B2X_1_` after creation.| |userFlowType|userFlowType|The type of user flow. For self-service sign-up user flows, the value can only be `signUpOrSignIn` and cannot be modified after creation.| |userFlowTypeVersion|Single|The version of the user flow. For self-service sign-up user flows, the version is always `1`.|
-|apiConnectorConfiguration|[userFlowApiConnectorConfiguration](../resources/userflowapiconnectorconfiguration.md)|Configuration for enabling an API connector for use as part of the self-service sign-up user flow. You can only obtain the value of this object using [Get userFlowApiConnectorConfiguration](../api/b2xidentityuserflow-get-apiConnectorConfiguration.md).|
## Relationships | Relationship | Type |Description| |:|:--|:-| |identityProviders|[identityProvider](../resources/identityprovider.md) collection|The identity providers included in the user flow.|
-|userAttributeAssignments|[identityUserFlowAttributeAssignment](../resources/identityuserflowattributeassignment.md) collection|The user attribute assignments included in the user flow.|
|languages|[userFlowLanguageConfiguration](../resources/userflowlanguageconfiguration.md) collection|The languages supported for customization within the user flow. Language customization is enabled by default in self-service sign-up user flow. You cannot create custom languages in self-service sign-up user flows.|
+|userAttributeAssignments|[identityUserFlowAttributeAssignment](../resources/identityuserflowattributeassignment.md) collection|The user attribute assignments included in the user flow.|
## JSON representation
The following is a JSON representation of the resource.
```json {
+ "apiConnectorConfiguration": {
+ "@odata.type": "microsoft.graph.userFlowApiConnectorConfiguration"
+ },
"id": "String (identifier)",
- "userFlowType": "String",
- "userFlowTypeVersion": "Single",
"identityProviders": [{"@odata.type": "microsoft.graph.identityProvider"}],
- "userAttributeAssignments": [{"@odate.type": "microsoft.graph.identityUserFlowAttributeAssignment"}],
"languages": [{"@odata.type": "microsoft.graph.userFlowLanguageConfiguration"}],
- "apiConnectorConfiguration": {
- "@odata.type": "microsoft.graph.userFlowApiConnectorConfiguration"
- }
+ "userAttributeAssignments": [{"@odate.type": "microsoft.graph.identityUserFlowAttributeAssignment"}],
+ "userFlowType": "String",
+ "userFlowTypeVersion": "Single"
} ```
v1.0 Baseitem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/baseitem.md
Here is a JSON representation of a **baseItem** resource.
```json {
- "id": "string (identifier)",
"createdBy": { "@odata.type": "microsoft.graph.identitySet" }, "createdDateTime": "datetime", "description": "string", "eTag": "string",
+ "id": "string (identifier)",
"lastModifiedBy": { "@odata.type": "microsoft.graph.identitySet" }, "lastModifiedDateTime": "datetime", "name": "string",
Here is a JSON representation of a **baseItem** resource.
| Property | Type | Description | | :- | :- | :- |
-| id | string | The unique identifier of the drive. Read-only. |
| createdBy | [identitySet][] | Identity of the user, device, or application which created the item. Read-only. | | createdDateTime | dateTimeOffset | Date and time of item creation. Read-only. | | description | String | Provides a user-visible description of the item. Optional. | | eTag | string | ETag for the item. Read-only. |
+| id | string | The unique identifier of the drive. Read-only. |
| lastModifiedBy | [identitySet][] | Identity of the user, device, and application which last modified the item. Read-only. | | lastModifiedDateTime | dateTimeOffset | Date and time the item was last modified. Read-only. | | name | string | The name of the item. Read-write. |
v1.0 Basicauthentication https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/basicauthentication.md
Inherits from [apiAuthenticationConfigurationBase](../resources/apiauthenticatio
|Property|Type|Description| |:|:|:|
-|username|String| The username. |
|password|String| The password. It is not returned in the responses. |
+|username|String| The username. |
## Relationships
v1.0 Bitlockerrecoverykey https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/bitlockerrecoverykey.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.bitlockerRecoveryKey",
- "id": "String (identifier)",
"createdDateTime": "String (timestamp)",
- "volumeType": "String",
"deviceId": "String",
- "key": "String"
+ "id": "String (identifier)",
+ "key": "String",
+ "volumeType": "String"
} ```
v1.0 Bookingcustomer https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/bookingcustomer.md
Inherits from [bookingCustomerBase](bookingcustomerbase.md).
## Properties | Property | Type |Description| |:|:--|:-|
+|addresses|[physicalAddress](../resources/physicaladdress.md) collection|Addresses associated with the customer. The attribute **type** of physicalAddress is not supported in v1.0. Internally we map the addresses to the type `others`.|
|displayName|String|The name of the customer.| |emailAddress|String|The SMTP address of the customer.| |id|String| The ID of the customer. Read-only.|
-|addresses|[physicalAddress](../resources/physicaladdress.md) collection|Addresses associated with the customer. The attribute **type** of physicalAddress is not supported in v1.0. Internally we map the addresses to the type `others`.|
|phones|[phone](../resources/phone.md) collection|Phone numbers associated with the customer, including home, business and mobile numbers.| ## Relationships
The following is a JSON representation of the resource.
```json {
- "displayName": "String",
- "emailAddress": "String",
- "id": "String (identifier)",
"addresses": [ { "@odata.type": "microsoft.graph.physicalAddress" } ],
+ "displayName": "String",
+ "emailAddress": "String",
+ "id": "String (identifier)",
+
"phones": [ { "@odata.type": "microsoft.graph.phone"
v1.0 Bookingcustomquestion https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/bookingcustomquestion.md
The following is a JSON representation of the resource.
```json { "@odata.type": "#microsoft.graph.bookingCustomQuestion",
- "id": "String (identifier)",
- "displayName": "String",
"answerInputType": {"@odata.type": "microsoft.graph.answerInputType"},
- "answerOptions": ["String"]
+ "answerOptions": ["String"],
+ "displayName": "String",
+ "id": "String (identifier)"
} ```
v1.0 Bookingquestionanswer https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/bookingquestionanswer.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.bookingQuestionAnswer",
- "questionId": "String",
- "question": "String",
+ "answer": "String",
"answerInputType": {"@odata.type": "microsoft.graph.answerInputType"}, "answerOptions": [ "String" ], "isRequired": "Boolean",
- "answer": "String",
+ "question": "String",
+ "questionId": "String",
"selectedOptions": [ "String" ]
v1.0 Bookingquestionassignment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/bookingquestionassignment.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.bookingQuestionAssignment",
- "questionId": "String",
- "isRequired": "Boolean"
+ "isRequired": "Boolean",
+ "questionId": "String"
} ```
v1.0 Broadcastmeetingsettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/broadcastmeetingsettings.md
The following is a JSON representation of the resource.
{ "@odata.type": "#microsoft.graph.broadcastMeetingSettings", "allowedAudience": "everyone | organization | roleIsAttendee | unknownFutureValue",
- "isRecordingEnabled": "Boolean",
- "isAttendeeReportEnabled": "Boolean",
- "isQuestionAndAnswerEnabled": "Boolean",
- "isVideoOnDemandEnabled": "Boolean",
"captions": { "@odata.type": "microsoft.graph.broadcastMeetingCaptionSettings"
- }
+ },
+ "isAttendeeReportEnabled": "Boolean",
+ "isQuestionAndAnswerEnabled": "Boolean",
+ "isRecordingEnabled": "Boolean",
+ "isVideoOnDemandEnabled": "Boolean"
} ```
v1.0 Bucketaggregationdefinition https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/bucketaggregationdefinition.md
The following is a JSON representation of the resource.
```json {
- "sortBy": "String",
"isDescending": true,
- "prefixFilter": "String",
"minimumCount": 1024,
- "ranges": [{"@odata.type": "microsoft.graph.bucketAggregationRange"}]
+ "prefixFilter": "String",
+ "ranges": [{"@odata.type": "microsoft.graph.bucketAggregationRange"}],
+ "sortBy": "String"
} ```
v1.0 Builtinidentityprovider https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/builtinidentityprovider.md
This type inherits from [identityProviderBase](../resources/identityproviderbase
|Property|Type|Description| |:|:--|:-|
-|id|String|The identifier of the identity provider. Inherited from [identityProviderBase](../resources/identityproviderbase.md). Read-only.|
|displayName|String|The display name of the identity provider. Inherited from [identityProviderBase](../resources/identityproviderbase.md).|
+|id|String|The identifier of the identity provider. Inherited from [identityProviderBase](../resources/identityproviderbase.md). Read-only.|
|identityProviderType|String|The identity provider type. For a B2B scenario, possible values: `AADSignup`, `MicrosoftAccount`, `EmailOTP`. Required.| ## JSON representation
The following is a JSON representation of the resource.
```json {
- "id": "String",
- "identityProviderType": "String",
"displayName": "String",
+ "id": "String",
+ "identityProviderType": "String"
} ```
v1.0 Bundle https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/bundle.md
Note that the `bundle` resource type itself is not an entity of its own, and is
| Property name | Type | Description |:--|:-|:
-| childCount | Int32 | Number of children contained immediately within this container.
-| album | [album][] | If the bundle is an [album][], then the `album` property is included
+| album | [album][] | If the bundle is an [album][], then the `album` property is included|
+| childCount | Int32 | Number of children contained immediately within this container.|
## JSON representation <!-- { "blockType": "resource", "@odata.type": "microsoft.graph.bundle" } --> ```json {
- "childCount": 3,
"album": { "@odata.type": "microsoft.graph.album" },
+ "childCount": 3
} ```
v1.0 Call https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/call.md
https://teams.microsoft.com/l/meetup-join/19:meeting_NTg0NmQ3NTctZDVkZC00YzRhLTh
| Property | Type | Description | | : | :| :-- |
-| callbackUri | String | The callback URL on which callbacks will be delivered. Must be `https`. |
+| callbackUri | String | The callback URL on which callbacks will be delivered. Must be `https`. |
| callChainId | String | A unique identifier for all the participant calls in a conference or a unique identifier for two participant calls in a P2P call. This needs to be copied over from `Microsoft.Graph.Call.CallChainId`. |
-| callOptions | [outgoingCallOptions](outgoingcalloptions.md) | Contains the optional features for the call. |
-| callRoutes | [callRoute](callRoute.md) collection | The routing information on how the call was retargeted. Read-only. |
-| chatInfo | [chatInfo](chatinfo.md) | The chat information. Required information for joining a meeting. |
-| direction | callDirection | The direction of the call. The possible value are `incoming` or `outgoing`. Read-only. |
-| id | String | The unique identifier for the call. Read-only. |
-|incomingContext | [incomingContext](incomingContext.md) | Call context associated with an incoming call. |
-| mediaConfig | [appHostedMediaConfig](apphostedmediaconfig.md) or [serviceHostedMediaConfig](servicehostedmediaconfig.md) | The media configuration. Required. |
-| mediaState | [callMediaState](callmediastate.md) | Read-only. The call media state. |
-| meetingInfo | [organizerMeetingInfo](organizermeetinginfo.md) or [tokenMeetingInfo](tokenmeetinginfo.md) | The meeting information that's required for joining a meeting. |
-| myParticipantId | String | Read-only. |
-| requestedModalities | modality collection | The list of requested modalities. Possible values are: `unknown`, `audio`, `video`, `videoBasedScreenSharing`, `data`. |
-| resultInfo | [resultInfo](resultinfo.md) | The result information. For example can hold termination reason. Read-only. |
+| callOptions | [outgoingCallOptions](outgoingcalloptions.md) | Contains the optional features for the call. |
+| callRoutes | [callRoute](callRoute.md) collection | The routing information on how the call was retargeted. Read-only. |
+| chatInfo | [chatInfo](chatinfo.md) | The chat information. Required information for joining a meeting. |
+| direction | callDirection | The direction of the call. The possible value are `incoming` or `outgoing`. Read-only. |
+| id | String | The unique identifier for the call. Read-only. |
+|incomingContext | [incomingContext](incomingContext.md) | Call context associated with an incoming call. |
+| mediaConfig | [appHostedMediaConfig](apphostedmediaconfig.md) or [serviceHostedMediaConfig](servicehostedmediaconfig.md) | The media configuration. Required. |
+| mediaState | [callMediaState](callmediastate.md) | Read-only. The call media state. |
+| meetingInfo | [organizerMeetingInfo](organizermeetinginfo.md), [tokenMeetingInfo](tokenmeetinginfo.md), or [joinMeetingIdMeetingInfo](joinmeetingidmeetinginfo.md) | The meeting information. Required information for meeting scenarios. |
+| myParticipantId | String | Read-only. |
+| requestedModalities | modality collection | The list of requested modalities. Possible values are: `unknown`, `audio`, `video`, `videoBasedScreenSharing`, `data`. |
+| resultInfo | [resultInfo](resultinfo.md) | The result information. For example can hold termination reason. Read-only. |
| source | [participantInfo](participantinfo.md) | The originator of the call. |
-| state | callState | The call state. Possible values are: `incoming`, `establishing`, `ringing`, `established`, `hold`, `transferring`, `transferAccepted`, `redirecting`, `terminating`, `terminated`. Read-only. |
+| state | callState | The call state. Possible values are: `incoming`, `establishing`, `ringing`, `established`, `hold`, `transferring`, `transferAccepted`, `redirecting`, `terminating`, `terminated`. Read-only. |
| subject | String | The subject of the conversation. |
-| targets | [invitationParticipantInfo](participantinfo.md) collection | The targets of the call. Required information for creating peer to peer call. |
-|toneInfo | [toneInfo](toneinfo.md) | Read-only. |
-|transcription | [callTranscriptionInfo](calltranscriptioninfo.md) | The transcription information for the call. Read-only. |
+| targets | [invitationParticipantInfo](participantinfo.md) collection | The targets of the call. Required information for creating peer to peer call. |
+|toneInfo | [toneInfo](toneinfo.md) | Read-only. |
+|transcription | [callTranscriptionInfo](calltranscriptioninfo.md) | The transcription information for the call. Read-only. |
## Relationships
The following is a JSON representation of the resource.
"id": "String (identifier)", "mediaConfig": {"@odata.type": "#microsoft.graph.mediaConfig"}, "mediaState": {"@odata.type": "#microsoft.graph.callMediaState"},
- "meetingInfo": {"@odata.type": "#microsoft.graph.meetingInfo"},
- "transcription": {"@odata.type": "#microsoft.graph.callTranscriptionInfo"},
- "myParticipantId": "String",
+ "meetingInfo": {"@odata.type": "#microsoft.graph.meetingInfo"},
+ "myParticipantId": "String",
"replacesContext": "String", "requestedModalities": ["String"], "resultInfo": {"@odata.type": "#microsoft.graph.resultInfo"},
The following is a JSON representation of the resource.
"state": "String", "subject": "String", "targets": [{"@odata.type": "#microsoft.graph.invitationParticipantInfo"}],
- "toneInfo": {"@odata.type": "#microsoft.graph.toneInfo"}
+ "toneInfo": {"@odata.type": "#microsoft.graph.toneInfo"},
+ "transcription": {"@odata.type": "#microsoft.graph.callTranscriptionInfo"},
} ```
v1.0 Callendedeventmessagedetail https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/callendedeventmessagedetail.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.callEndedEventMessageDetail",
+ "callDuration": "String (duration)",
+ "callEventType": "String",
"callId": "String", "callParticipants": [ {
The following is a JSON representation of the resource.
], "initiator": { "@odata.type": "microsoft.graph.identitySet"
- },
- "callDuration": "String (duration)",
- "callEventType": "String"
+ }
} ```
v1.0 Callrecordingeventmessagedetail https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/callrecordingeventmessagedetail.md
The following is a JSON representation of the resource.
"@odata.type": "#microsoft.graph.callRecordingEventMessageDetail", "callId": "String", "callRecordingDisplayName": "String",
- "callRecordingUrl": "String",
"callRecordingDuration": "String (duration)", "callRecordingStatus": "String",
- "meetingOrganizer": {
+ "callRecordingUrl": "String",
+ "initiator": {
"@odata.type": "microsoft.graph.identitySet" },
- "initiator": {
+ "meetingOrganizer": {
"@odata.type": "microsoft.graph.identitySet" } }
v1.0 Callrecords Clientuseragent https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/callrecords-clientuseragent.md
the [userAgent](callrecords-useragent.md) type.
| Property | Type | Description | |:-|:|:| |applicationVersion|String|Identifies the version of application software used by this endpoint.|
+|azureADAppId|String|The unique identifier of the Azure AD application used by this endpoint.|
+|communicationServiceId|String|Immutable resource identifier of the Azure Communication Service associated with this endpoint based on [Communication Services APIs](https://azure.microsoft.com/services/communication-services/).|
|headerValue|String|User-agent header value reported by this endpoint.| |platform|microsoft.graph.callRecords.clientPlatform|Identifies the platform used by this endpoint. Possible values are: `unknown`, `windows`, `macOS`, `iOS`, `android`, `web`, `ipPhone`, `roomSystem`, `surfaceHub`, `holoLens`, `unknownFutureValue`.| |productFamily|microsoft.graph.callRecords.productFamily|Identifies the family of application software used by this endpoint. Possible values are: `unknown`, `teams`, `skypeForBusiness`, `lync`, `unknownFutureValue`, `azureCommunicationServices`. Note that you must use the `Prefer: include-unknown-enum-members` request header to get the following value(s) in this [evolvable enum](/graph/best-practices-concept#handling-future-members-in-evolvable-enumerations): `azureCommunicationServices`.|
-|communicationServiceId|String|Immutable resource identifier of the Azure Communication Service associated with this endpoint based on [Communication Services APIs](https://azure.microsoft.com/en-us/services/communication-services/).|
-|azureADAppId|String|The unique identifier of the Azure AD application used by this endpoint.|
## JSON representation
The following is a JSON representation of the resource.
```json { "applicationVersion": "String",
+ "azureADAppId": "String",
+ "communicationServiceId": "String",
"headerValue": "String", "platform": "String",
- "productFamily": "String",
- "communicationServiceId": "String",
- "azureADAppId": "String"
+ "productFamily": "String"
} ```
v1.0 Callrecords Directroutinglogrow https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/callrecords-directroutinglogrow.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.callRecords.directRoutingLogRow",
- "id": "String (identifier)",
+ "calleeNumber": "String",
+ "callEndSubReason": "Integer",
+ "callerNumber": "String",
+ "callType": "String",
"correlationId": "String",
- "userId": "String",
- "userPrincipalName": "String",
- "userDisplayName": "String",
- "startDateTime": "String (timestamp)",
- "inviteDateTime": "String (timestamp)",
- "failureDateTime": "String (timestamp)",
- "endDateTime": "String (timestamp)",
"duration": "Integer",
- "callType": "String",
- "successfulCall": "Boolean",
- "callerNumber": "String",
- "calleeNumber": "String",
- "mediaPathLocation": "String",
- "signalingLocation": "String",
+ "endDateTime": "String (timestamp)",
+ "failureDateTime": "String (timestamp)",
"finalSipCode": "Integer",
- "callEndSubReason": "Integer",
"finalSipCodePhrase": "String",
+ "id": "String (identifier)",
+ "inviteDateTime": "String (timestamp)",
+ "mediaBypassEnabled": "Boolean",
+ "mediaPathLocation": "String",
+ "signalingLocation": "String",
+ "startDateTime": "String (timestamp)",
+ "successfulCall": "Boolean",
"trunkFullyQualifiedDomainName": "String",
- "mediaBypassEnabled": "Boolean"
+ "userDisplayName": "String",
+ "userId": "String",
+ "userPrincipalName": "String"
} ```
v1.0 Callrecords Feedbacktokenset https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/callrecords-feedbacktokenset.md
The following is a JSON representation of the resource.
```json {
+ "BackgroundNoise": true,
"DistortedSpeech": true,
+ "Echo": false,
"ElectronicFeedback": false,
- "BackgroundNoise": true,
- "MuffledSpeech": true,
- "Echo": false
+ "MuffledSpeech": true
} ```
v1.0 Callrecords Media https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/callrecords-media.md
Represents the media (audio, video, video-based screen-sharing, etc.) used in a
| Property | Type | Description | |:-|:|:|
-|label|String|How the media was identified during media negotiation stage.|
-|callerDevice|[microsoft.graph.callRecords.deviceInfo](callrecords-deviceinfo.md)|Device information associated with the caller endpoint of this media.|
-|callerNetwork|[microsoft.graph.callRecords.networkInfo](callrecords-networkinfo.md)|Network information associated with the caller endpoint of this media.|
|calleeDevice|[microsoft.graph.callRecords.deviceInfo](callrecords-deviceinfo.md)|Device information associated with the callee endpoint of this media.| |calleeNetwork|[microsoft.graph.callRecords.networkInfo](callrecords-networkinfo.md)|Network information associated with the callee endpoint of this media.|
+|callerDevice|[microsoft.graph.callRecords.deviceInfo](callrecords-deviceinfo.md)|Device information associated with the caller endpoint of this media.|
+|callerNetwork|[microsoft.graph.callRecords.networkInfo](callrecords-networkinfo.md)|Network information associated with the caller endpoint of this media.|
+|label|String|How the media was identified during media negotiation stage.|
|streams|[microsoft.graph.callRecords.mediaStream](callrecords-mediastream.md) collection|Network streams associated with this media.| ## JSON representation
The following is a JSON representation of the resource.
```json {
- "label": "String",
- "callerDevice": {"@odata.type": "microsoft.graph.callRecords.deviceInfo"},
- "callerNetwork": {"@odata.type": "microsoft.graph.callRecords.networkInfo"},
"calleeDevice": {"@odata.type": "microsoft.graph.callRecords.deviceInfo"}, "calleeNetwork": {"@odata.type": "microsoft.graph.callRecords.networkInfo"},
+ "callerDevice": {"@odata.type": "microsoft.graph.callRecords.deviceInfo"},
+ "callerNetwork": {"@odata.type": "microsoft.graph.callRecords.networkInfo"},
+ "label": "String",
"streams": [{"@odata.type": "microsoft.graph.callRecords.mediaStream"}] } ```
v1.0 Callrecords Participantendpoint https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/callrecords-participantendpoint.md
a user or user-like entity. Inherits from [endpoint](callrecords-endpoint.md) ty
| Property | Type | Description | |:-|:|:|
-|userAgent|[microsoft.graph.callRecords.userAgent](callrecords-useragent.md)|User-agent reported by this endpoint.|
|feedback|[microsoft.graph.callRecords.userFeedback](callrecords-userfeedback.md)|The feedback provided by the user of this endpoint about the quality of the session.| |identity|[identitySet](identityset.md)|Identity associated with the endpoint.|
+|userAgent|[microsoft.graph.callRecords.userAgent](callrecords-useragent.md)|User-agent reported by this endpoint.|
## JSON representation
The following is a JSON representation of the resource.
```json {
- "userAgent": {"@odata.type": "microsoft.graph.callRecords.userAgent"},
"feedback": {"@odata.type": "microsoft.graph.callRecords.userFeedback"},
- "identity": {"@odata.type": "microsoft.graph.identitySet"}
+ "identity": {"@odata.type": "microsoft.graph.identitySet"},
+ "userAgent": {"@odata.type": "microsoft.graph.callRecords.userAgent"}
} ```
v1.0 Callrecords Pstncalllogrow https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/callrecords-pstncalllogrow.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.callRecords.pstnCallLogRow",
- "id": "String (identifier)",
+ "callDurationSource": "String",
+ "calleeNumber": "String",
"callId": "String",
- "userId": "String",
- "userPrincipalName": "String",
- "userDisplayName": "String",
- "startDateTime": "String (timestamp)",
- "endDateTime": "String (timestamp)",
- "duration": "Integer",
- "charge": "Double",
+ "callerNumber": "String",
"callType": "String",
- "currency": "String",
- "calleeNumber": "String",
- "usageCountryCode": "String",
- "tenantCountryCode": "String",
+ "charge": "Double",
"connectionCharge": "Double",
- "callerNumber": "String",
+ "conferenceId": "String",
+ "currency": "String",
"destinationContext": "String", "destinationName": "String",
- "conferenceId": "String",
- "licenseCapability": "String",
+ "duration": "Integer",
+ "endDateTime": "String (timestamp)",
+ "id": "String (identifier)",
"inventoryType": "String",
+ "licenseCapability": "String",
"operator": "String",
- "callDurationSource": "String"
+ "startDateTime": "String (timestamp)",
+ "tenantCountryCode": "String",
+ "usageCountryCode": "String",
+ "userDisplayName": "String",
+ "userId": "String",
+ "userPrincipalName": "String"
} ```
v1.0 Callrecords Segment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/callrecords-segment.md
api with `$expand=sessions($expand=segments)` or the [List session](../api/callr
| Property | Type | Description | |:-|:|:|
-|id|String|Unique identifier for the segment. Read-only.|
-|caller|[microsoft.graph.callRecords.endpoint](callrecords-endpoint.md)|Endpoint that initiated this segment.|
|callee|[microsoft.graph.callRecords.endpoint](callrecords-endpoint.md)|Endpoint that answered this segment.|
+|caller|[microsoft.graph.callRecords.endpoint](callrecords-endpoint.md)|Endpoint that initiated this segment.|
+|endDateTime|DateTimeOffset|UTC time when the segment ended. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is `2014-01-01T00:00:00Z`|
|failureInfo|[microsoft.graph.callRecords.failureInfo](callrecords-failureinfo.md)|Failure information associated with the segment if it failed.|
+|id|String|Unique identifier for the segment. Read-only.|
|media|[microsoft.graph.callRecords.media](callrecords-media.md) collection|Media associated with this segment.| |startDateTime|DateTimeOffset|UTC time when the segment started. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is `2014-01-01T00:00:00Z`|
-|endDateTime|DateTimeOffset|UTC time when the segment ended. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is `2014-01-01T00:00:00Z`|
## Relationships
The following is a JSON representation of the resource.
```json {
- "id": "String (identifier)",
- "caller": {"@odata.type": "microsoft.graph.callRecords.endpoint"},
"callee": {"@odata.type": "microsoft.graph.callRecords.endpoint"},
+ "caller": {"@odata.type": "microsoft.graph.callRecords.endpoint"},
+ "endDateTime": "String (timestamp)",
"failureInfo": {"@odata.type": "microsoft.graph.callRecords.failureInfo"},
+ "id": "String (identifier)",
"media": [{"@odata.type": "microsoft.graph.callRecords.media"}],
- "startDateTime": "String (timestamp)",
- "endDateTime": "String (timestamp)"
+ "startDateTime": "String (timestamp)"
} ```
v1.0 Callstartedeventmessagedetail https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/callstartedeventmessagedetail.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.callStartedEventMessageDetail",
+ "callEventType": "String",
"callId": "String", "initiator": { "@odata.type": "microsoft.graph.identitySet"
- },
- "callEventType": "String"
+ }
} ```
v1.0 Calltranscriptioninfo https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/calltranscriptioninfo.md
Represents a single DTMF event.
| Property | Type | Description| |:|:--|:-|
-| state | String | Possible values are: `notStarted`, `active`, `inactive`. |
| lastModifiedDateTime | DateTime | The state modified time in UTC. |
+| state | String | Possible values are: `notStarted`, `active`, `inactive`. |
## JSON representation
The following is a JSON representation of the resource.
}--> ```json {
- "state": "notStarted | active | inactive",
- "lastModifiedDateTime": "String (timestamp)"
+ "lastModifiedDateTime": "String (timestamp)",
+ "state": "notStarted | active | inactive"
} ```
v1.0 Certification https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/certification.md
The following is a JSON representation of the resource.
```json {
- "isPublisherAttested": "Boolean",
- "isCertifiedByMicrosoft": "Boolean",
"certificationDetailsUrl": "String",
- "lastCertificationDateTime": "DateTimeOffset",
- "certificationExpirationDateTime": "DateTimeOffset"
+ "certificationExpirationDateTime": "DateTimeOffset",
+ "isCertifiedByMicrosoft": "Boolean",
+ "isPublisherAttested": "Boolean",
+ "lastCertificationDateTime": "DateTimeOffset"
} ```
v1.0 Changenotification https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/changenotification.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.changeNotification",
- "id": "String (identifier)",
- "subscriptionId": "Guid",
- "subscriptionExpirationDateTime": "String (timestamp)",
- "clientState": "String",
"changeType": "String",
- "resource": "String",
- "tenantId": "Guid",
+ "clientState": "String",
"encryptedContent": { "@odata.type": "microsoft.graph.changeNotificationEncryptedContent" },
+ "id": "String (identifier)",
"lifecycleEvent": "String",
+ "resource": "String",
"resourceData": { "@odata.type": "microsoft.graph.resourceData"
- }
+ },
+ "subscriptionExpirationDateTime": "String (timestamp)",
+ "subscriptionId": "Guid",
+ "tenantId": "Guid"
} ```
v1.0 Changenotificationcollection https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/changenotificationcollection.md
None.
| Property | Type | Description | |:|:--|:|
-| validationTokens | collection(string) | Contains an array of JWT tokens generated by Microsoft Graph for the application to validate the origin of the notifications. Microsoft Graph generates a single token for each distinct app and tenant pair for an item if it exists in the value array. Keep in mind that notifications can contain a mix of items for various apps and tenants that subscribed using the same notification URL. Only provided for [change notifications with resource data](/graph/webhooks-with-resource-data) Optional. |
+| validationTokens | collection(string) | Contains an array of JWT tokens generated by Microsoft Graph for the application to validate the origin of the notifications. Microsoft Graph generates a single token for each distinct app and tenant pair for an item if it exists in the value array. Keep in mind that notifications can contain a mix of items for various apps and tenants that subscribed using the same notification URL. Only provided for [change notifications with resource data](/graph/webhooks-with-resource-data). Optional. |
| value | collection([changeNotification](changenotification.md)) | The set of notifications being sent to the notification URL. Required. | ## Relationships
v1.0 Changenotificationencryptedcontent https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/changenotificationencryptedcontent.md
For more information, see [Set up change notifications that include resource dat
| Property | Type | Description | |:|:--|:| | data | string | Base64-encoded encrypted data that produces a full resource respresented as JSON. The data has been encrypted with the provided `dataKey` using an `AES/CBC/PKCS5PADDING` cipher suite. |
-| dataSignature | string | Base64-encoded HMAC-SHA256 hash of the data for validation purposes. |
| dataKey | string | Base64-encoded symmetric key generated by Microsoft Graph to encrypt the data value and to generate the data signature. This key is encrypted with the certificate public key that was provided during the subscription. It must be decrypted with the certificate private key before it can be used to decrypt the data or verify the signature. This key has been encrypted with the following cipher suite: `RSA/ECB/OAEPWithSHA1AndMGF1Padding`. |
+| dataSignature | string | Base64-encoded HMAC-SHA256 hash of the data for validation purposes. |
| encryptionCertificateId | string | ID of the certificate used to encrypt the `dataKey`. | | encryptionCertificateThumbprint | string | Hexadecimal representation of the thumbprint of the certificate used to encrypt the `dataKey`. |
The following is a JSON representation of the resource.
{ "@odata.type": "#microsoft.graph.changeNotificationEncryptedContent", "data": "String",
- "dataSignature": "String",
"dataKey": "String",
+ "dataSignature": "String",
"encryptionCertificateId": "String", "encryptionCertificateThumbprint": "String" }
v1.0 Channel https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/channel.md
where files are shared, and where tabs are added.
| Property | Type |Description| |:|:--|:-|
+|createdDateTime|dateTimeOffset|Read only. Timestamp at which the channel was created.|
|description|String|Optional textual description for the channel.| |displayName|String|Channel name as it will appear to the user in Microsoft Teams. The maximum length is 50 characters.|
+|email|String| The email address for sending messages to the channel. Read-only.|
|id|String|The channel's unique identifier. Read-only.| |isFavoriteByDefault|Boolean|Indicates whether the channel should automatically be marked 'favorite' for all members of the team. Can only be set programmatically with [Create team](../api/team-post.md). Default: `false`.|
-|email|String| The email address for sending messages to the channel. Read-only.|
-|webUrl|String|A hyperlink that will go to the channel in Microsoft Teams. This is the URL that you get when you right-click a channel in Microsoft Teams and select Get link to channel. This URL should be treated as an opaque blob, and not parsed. Read-only.|
|membershipType|[channelMembershipType](../resources/channel.md#channelmembershiptype-values)|The type of the channel. Can be set during creation and can't be changed. The possible values are: `standard`, `private`, `unknownFutureValue`, `shared`. The default value is `standard`. Note that you must use the `Prefer: include-unknown-enum-members` request header to get the following value in this [evolvable enum](/graph/best-practices-concept#handling-future-members-in-evolvable-enumerations): `shared`.|
-|createdDateTime|dateTimeOffset|Read only. Timestamp at which the channel was created.|
|tenantId |string | The ID of the Azure Active Directory tenant. |
+|webUrl|String|A hyperlink that will go to the channel in Microsoft Teams. This is the URL that you get when you right-click a channel in Microsoft Teams and select Get link to channel. This URL should be treated as an opaque blob, and not parsed. Read-only.|
### channelMembershipType values
where files are shared, and where tabs are added.
| unknownFutureValue | Evolvable enumeration sentinel value. Do not use. | | shared | Members can be directly added to the channel without adding them to the team. | + ### Instance attributes Instance attributes are properties with special behaviors. These properties are temporary and either a) define behavior the service should perform or b) provide short-term property values, like a download URL for an item that expires.
For a POST request example, see [Request (create channel in migration state)](/m
| Relationship | Type |Description| |:|:--|:-|
-|messages|[chatMessage](chatmessage.md) collection|A collection of all the messages in the channel. A navigation property. Nullable.|
-|tabs|[teamsTab](../resources/teamstab.md) collection|A collection of all the tabs in the channel. A navigation property.|
-|members|[conversationMember](conversationmember.md) collection|A collection of membership records associated with the channel.|
|[filesFolder](../api/channel-get-filesfolder.md)|[driveItem](driveitem.md)|Metadata for the location where the channel's files are stored.|
+|members|[conversationMember](conversationmember.md) collection|A collection of membership records associated with the channel.|
+|messages|[chatMessage](chatmessage.md) collection|A collection of all the messages in the channel. A navigation property. Nullable.|
|operations|[teamsAsyncOperation](teamsasyncoperation.md) collection| The async operations that ran or are running on this team. | |sharedWithTeams|[sharedWithChannelTeamInfo](../resources/sharedwithchannelteaminfo.md) collection|A collection of teams with which a channel is shared.|
+|tabs|[teamsTab](../resources/teamstab.md) collection|A collection of all the tabs in the channel. A navigation property.|
## JSON representation
The following is a JSON representation of the resource.
```json {
+ "createdDateTime": "string (timestamp)",
"description": "string", "displayName": "string",
+ "email": "string",
"id": "string (identifier)", "isFavoriteByDefault": true,
- "email": "string",
- "webUrl": "string",
"membershipType": "String",
- "createdDateTime": "string (timestamp)"
+ "webUrl": "string"
} ```
v1.0 Channeladdedeventmessagedetail https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/channeladdedeventmessagedetail.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.channelAddedEventMessageDetail",
- "channelId": "String",
"channelDisplayName": "String", "initiator": { "@odata.type": "microsoft.graph.identitySet"
- }
+ },
+ "channelId": "String"
} ```
v1.0 Channeldeletedeventmessagedetail https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/channeldeletedeventmessagedetail.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.channelDeletedEventMessageDetail",
- "channelId": "String",
"channelDisplayName": "String",
+ "channelId": "String",
"initiator": { "@odata.type": "microsoft.graph.identitySet" }
v1.0 Channeldescriptionupdatedeventmessagedetail https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/channeldescriptionupdatedeventmessagedetail.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.channelDescriptionUpdatedEventMessageDetail",
- "channelId": "String",
"channelDescription": "String",
+ "channelId": "String",
"initiator": { "@odata.type": "microsoft.graph.identitySet" }
v1.0 Channelrenamedeventmessagedetail https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/channelrenamedeventmessagedetail.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.channelRenamedEventMessageDetail",
- "channelId": "String",
"channelDisplayName": "String", "initiator": { "@odata.type": "microsoft.graph.identitySet"
- }
+ },
+ "channelId": "String"
} ```
v1.0 Chartaxis https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/chartaxis.md
Here is a JSON representation of the resource.
```json {
+ "format": {"@odata.type": "microsoft.graph.workbookChartAxisFormat"},
"id": "string",
+ "majorGridlines": {"@odata.type": "microsoft.graph.workbookChartGridlines"},
"majorUnit": "string", "maximum": "string", "minimum": "string",
- "minorUnit": "string",
- "format": {"@odata.type": "microsoft.graph.workbookChartAxisFormat"},
- "majorGridlines": {"@odata.type": "microsoft.graph.workbookChartGridlines"},
"minorGridlines": {"@odata.type": "microsoft.graph.workbookChartGridlines"},
+ "minorUnit": "string",
"title": {"@odata.type": "microsoft.graph.workbookChartAxisTitle"} }
v1.0 Chartaxistitle https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/chartaxistitle.md
Here is a JSON representation of the resource.
```json {
+ "format": {"@odata.type":"microsoft.graph.workbookChartAxisTitleFormat"},
"text": "string",
- "visible": true,
- "format": {"@odata.type":"microsoft.graph.workbookChartAxisTitleFormat"}
+ "visible": true
} ```
v1.0 Chartlegend https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/chartlegend.md
Here is a JSON representation of the resource.
```json {
+ "format": {"@odata.type":"microsoft.graph.workbookChartLegendFormat"},
"overlay": true, "position": "string",
- "visible": true,
- "format": {"@odata.type":"microsoft.graph.workbookChartLegendFormat"}
+ "visible": true
} ```
v1.0 Chartpoint https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/chartpoint.md
Represents a point of a series in a chart.
## Properties | Property | Type |Description| |:|:--|:-|
-|value|Json|Returns the value of a chart point. Read-only.|
|id|string|unique identifier|
+|value|Json|Returns the value of a chart point. Read-only.|
## Relationships | Relationship | Type |Description|
Here is a JSON representation of the resource.
```json {
- "value": "string",
- "id": "string"
+ "id": "string",
+ "value": "string"
} ```
v1.0 Chat https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/chat.md
The following is a JSON representation of the resource.
```json {
- "id": "string (identifier)",
- "topic": "string",
"createdDateTime": "dateTimeOffset",
- "lastUpdatedDateTime": "dateTimeOffset",
"chatType": "string",
- "webUrl": "string",
+ "id": "string (identifier)",
+ "lastUpdatedDateTime": "dateTimeOffset",
+ "onlineMeetingInfo": {
+ "@odata.type": "microsoft.graph.teamworkOnlineMeetingInfo"
+ },
"tenantId": "string",
+ "topic": "string",
+
"viewpoint": { "@odata.type": "microsoft.graph.chatViewpoint" },
- "onlineMeetingInfo": {
- "@odata.type": "microsoft.graph.teamworkOnlineMeetingInfo"
- }
+ "webUrl": "string",
} ```
v1.0 Chatmessage https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/chatmessage.md
Represents an individual chat message within a [channel](channel.md) or [chat](c
|[Get message in channel](../api/chatmessage-get.md) | [chatMessage](chatmessage.md) | Get a single root message in a channel.| |[Send message in channel](../api/chatmessage-post.md) | [chatMessage](chatmessage.md)| Create a new root message in a channel.| |[Update message in channel](../api/chatmessage-update.md)|[chatMessage](chatmessage.md)| Update the **policyViolation** property of a chat message.|
+|[Delete message in channel](../api/chatmessage-softdelete.md)|[chatMessage](chatmessage.md)| Delete the message in a channel.|
+|[Undo the deletion of a message in channel](../api/chatmessage-undoSoftdelete.md)|[chatMessage](chatmessage.md)| Undelete the message in a channel.|
|**Channel message replies**| | | |[List replies to message](../api/chatmessage-list-replies.md) | [chatMessage](chatmessage.md) collection| List of all replies to a chat message in channel.| |[Get reply message in channel](../api/chatmessage-get.md) | [chatMessage](chatmessage.md) | Get a single reply message in a channel.| |[Reply to a message in channel](../api/chatmessage-post-replies.md) | [chatMessage](chatmessage.md)| Reply to an existing chat message in a channel.| |[Update reply message](../api/chatmessage-update.md)|[chatMessage](chatmessage.md)| Update the **policyViolation** property of a chat message.|
+|[Delete reply message in channel](../api/chatmessage-softdelete.md)|[chatMessage](chatmessage.md)| Delete the single reply message in a channel.|
+|[Undo deletion of a reply message in channel](../api/chatmessage-undoSoftdelete.md)|[chatMessage](chatmessage.md)| Undelete the single reply message in a channel.
|**Chat messages**| | | |[List messages in chat](../api/chat-list-messages.md) | [chatMessage](../resources/chatmessage.md) | List chat messages in a chat. | |[Get message in chat](../api/chatmessage-get.md) | [chatMessage](../resources/chatmessage.md) | Get a single chat message in a chat. |
Represents an individual chat message within a [channel](channel.md) or [chat](c
|[Create subscription for new chat messages](../api/subscription-post-subscriptions.md) | [subscription](subscription.md) | Listen for new, edited, and deleted chat messages, and reactions to them. | |[Send message in chat](../api/chat-post-messages.md) | [chatMessage](chatmessage.md)| Send a chat message in an existing 1:1 or group chat conversation.| |[Update message in chat](../api/chatmessage-update.md)|[chatMessage](chatmessage.md)| Update the **policyViolation** property of a chat message.|
+|[Delete message in chat](../api/chatmessage-softdelete.md)|[chatMessage](chatmessage.md)| Delete the message of a chat.|
+|[Undo the deletion of a message in chat](../api/chatmessage-undoSoftdelete.md)|[chatMessage](chatmessage.md)| Undelete the message in a chat.|
|**Hosted content**| | | |[List all hosted content](../api/chatmessage-list-hostedcontents.md) | [chatMessageHostedContent](../resources/chatmessagehostedcontent.md) collection| Get all hosted contents associated with a message.| |[Get hosted content](../api/chatmessagehostedcontent-get.md) | [chatMessageHostedContent](../resources/chatmessagehostedcontent.md) | Get hosted content (and its bytes) for a message.|
Represents an individual chat message within a [channel](channel.md) or [chat](c
| Property | Type |Description| |:|:--|:-|
-|id|String| Read-only. Unique ID of the message. IDs are unique within a chat/channel/reply-to-message, but might be duplicated in other chats/channels/reply-to-messages. |
-|replyToId| string | Read-only. ID of the parent chat message or root chat message of the thread. (Only applies to chat messages in channels, not chats.) |
-|from|[chatMessageFromIdentitySet](chatmessagefromidentityset.md)| Details of the sender of the chat message. Can only be set during [migration](/microsoftteams/platform/graph-api/import-messages/import-external-messages-to-teams).|
-|etag| string | Read-only. Version number of the chat message. |
-|messageType|chatMessageType|The type of chat message. The possible values are: `message`, `chatEvent`, `typing`, `unknownFutureValue`, `systemEventMessage`. Note that you must use the `Prefer: include-unknown-enum-members` request header to get the following value in this [evolvable enum](/graph/best-practices-concept#handling-future-members-in-evolvable-enumerations): `systemEventMessage`.|
+|attachments|[chatMessageAttachment](chatmessageattachment.md) collection |References to attached objects like files, tabs, meetings etc.|
+|body|[itemBody](itembody.md)|Plaintext/HTML representation of the content of the chat message. Representation is specified by the contentType inside the body. The content is always in HTML if the chat message contains a [chatMessageMention](chatmessagemention.md). |
+|chatId|string|If the message was sent in a chat, represents the identity of the chat.|
+|channelIdentity|[channelIdentity](channelidentity.md)|If the message was sent in a channel, represents identity of the channel.|
|createdDateTime|dateTimeOffset|Timestamp of when the chat message was created.|
-|lastModifiedDateTime|dateTimeOffset|Read only. Timestamp when the chat message is created (initial setting) or modified, including when a reaction is added or removed. |
-|lastEditedDateTime|dateTimeOffset|Read only. Timestamp when edits to the chat message were made. Triggers an "Edited" flag in the Teams UI. If no edits are made the value is `null`.|
|deletedDateTime|dateTimeOffset|Read only. Timestamp at which the chat message was deleted, or null if not deleted. |
-|subject|string| The subject of the chat message, in plaintext.|
-|body|[itemBody](itembody.md)|Plaintext/HTML representation of the content of the chat message. Representation is specified by the contentType inside the body. The content is always in HTML if the chat message contains a [chatMessageMention](chatmessagemention.md). |
-|summary|string| Summary text of the chat message that could be used for push notifications and summary views or fall back views. Only applies to channel chat messages, not chat messages in a chat. |
-|attachments|[chatMessageAttachment](chatmessageattachment.md) collection |References to attached objects like files, tabs, meetings etc.|
-|mentions|[chatMessageMention](chatmessagemention.md) collection| List of entities mentioned in the chat message. Supported entities are: user, bot, team, and channel.|
+|etag| string | Read-only. Version number of the chat message. |
+|eventDetail|[eventMessageDetail](../resources/eventmessagedetail.md)|Read-only. If present, represents details of an event that happened in a **chat**, a **channel**, or a **team**, for example, adding new members. For event messages, the **messageType** property will be set to `systemEventMessage`.|
+|from|[chatMessageFromIdentitySet](chatmessagefromidentityset.md)| Details of the sender of the chat message. Can only be set during [migration](/microsoftteams/platform/graph-api/import-messages/import-external-messages-to-teams).|
+|id|String| Read-only. Unique ID of the message. IDs are unique within a chat/channel/reply-to-message, but might be duplicated in other chats/channels/reply-to-messages. |
|importance|string | The importance of the chat message. The possible values are: `normal`, `high`, `urgent`.|
-|reactions| [chatMessageReaction](chatmessagereaction.md) collection | Reactions for this chat message (for example, Like).|
+|lastModifiedDateTime|dateTimeOffset|Read only. Timestamp when the chat message is created (initial setting) or modified, including when a reaction is added or removed. |
+|lastEditedDateTime|dateTimeOffset|Read only. Timestamp when edits to the chat message were made. Triggers an "Edited" flag in the Teams UI. If no edits are made the value is `null`.|
|locale|string|Locale of the chat message set by the client. Always set to `en-us`.|
+|mentions|[chatMessageMention](chatmessagemention.md) collection| List of entities mentioned in the chat message. Supported entities are: user, bot, team, and channel.|
+|messageType|chatMessageType|The type of chat message. The possible values are: `message`, `chatEvent`, `typing`, `unknownFutureValue`, `systemEventMessage`. Note that you must use the `Prefer: include-unknown-enum-members` request header to get the following value in this [evolvable enum](/graph/best-practices-concept#handling-future-members-in-evolvable-enumerations): `systemEventMessage`.|
|policyViolation | [chatMessagePolicyViolation](chatmessagepolicyviolation.md) |Defines the properties of a policy violation set by a data loss prevention (DLP) application.|
-|chatId|string|If the message was sent in a chat, represents the identity of the chat.|
-|channelIdentity|[channelIdentity](channelidentity.md)|If the message was sent in a channel, represents identity of the channel.|
+|reactions| [chatMessageReaction](chatmessagereaction.md) collection | Reactions for this chat message (for example, Like).|
+|replyToId| string | Read-only. ID of the parent chat message or root chat message of the thread. (Only applies to chat messages in channels, not chats.) |
+|subject|string| The subject of the chat message, in plaintext.|
+|summary|string| Summary text of the chat message that could be used for push notifications and summary views or fall back views. Only applies to channel chat messages, not chat messages in a chat. |
|webUrl|string|Read-only. Link to the message in Microsoft Teams.|
-|eventDetail|[eventMessageDetail](../resources/eventmessagedetail.md)|Read-only. If present, represents details of an event that happened in a **chat**, a **channel**, or a **team**, for example, adding new members. For event messages, the **messageType** property will be set to `systemEventMessage`.|
## Relationships | Relationship | Type | Description | |:|:--|:-|
-|replies|[chatMessage](chatmessage.md)| Replies for a specified message. Supports `$expand` for channel messages. |
|hostedContents|[chatMessageHostedContent](chatmessagehostedcontent.md)| Content in a message hosted by Microsoft Teams - for example, images or code snippets. |
+|replies|[chatMessage](chatmessage.md)| Replies for a specified message. Supports `$expand` for channel messages. |
## JSON representation
The following is a JSON representation of the resource.
```json {
- "id": "string (identifier)",
- "replyToId": "string (identifier)",
- "from": {"@odata.type": "microsoft.graph.chatMessageFromIdentitySet"},
- "etag": "string",
- "messageType": "string",
+ "attachments": [{"@odata.type": "microsoft.graph.chatMessageAttachment"}],
+ "body": {"@odata.type": "microsoft.graph.itemBody"},
+ "channelIdentity": {"@odata.type": "microsoft.graph.channelIdentity"},
+ "chatId": "string",
"createdDateTime": "string (timestamp)",
- "lastModifiedDateTime": "string (timestamp)",
- "lastEditedDateTime": "string (timestamp)",
"deletedDateTime": "string (timestamp)",
- "subject": "string",
- "body": {"@odata.type": "microsoft.graph.itemBody"},
- "summary": "string",
- "attachments": [{"@odata.type": "microsoft.graph.chatMessageAttachment"}],
- "mentions": [{"@odata.type": "microsoft.graph.chatMessageMention"}],
+ "etag": "string",
+ "eventDetail": {
+ "@odata.type": "microsoft.graph.eventMessageDetail"
+ },
+ "from": {"@odata.type": "microsoft.graph.chatMessageFromIdentitySet"},
+ "id": "string (identifier)",
"importance": "string",
- "reactions": [{"@odata.type": "microsoft.graph.chatMessageReaction"}],
+ "lastEditedDateTime": "string (timestamp)",
+ "lastModifiedDateTime": "string (timestamp)",
"locale": "string",
+ "mentions": [{"@odata.type": "microsoft.graph.chatMessageMention"}],
+ "messageType": "string",
"policyViolation": {"@odata.type": "microsoft.graph.chatMessagePolicyViolation"},
- "chatId": "string",
- "channelIdentity": {"@odata.type": "microsoft.graph.channelIdentity"},
- "webUrl": "string",
- "eventDetail": {
- "@odata.type": "microsoft.graph.eventMessageDetail"
- }
+ "reactions": [{"@odata.type": "microsoft.graph.chatMessageReaction"}],
+ "replyToId": "string (identifier)",
+ "subject": "string",
+ "summary": "string",
+ "webUrl": "string"
} ```
v1.0 Chatmessageattachment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/chatmessageattachment.md
An entity of type `chatMessageAttachment` is returned as part of the [Get channe
## Properties | Property | Type |Description| |:|:--|:-|
-|id|string| Read-only. Unique id of the attachment.|
+|content|string|The content of the attachment. If the attachment is a [rich card](/microsoftteams/platform/task-modules-and-cards/cards/cards-reference), set the property to the rich card object. This property and contentUrl are mutually exclusive.|
|contentType| string | The media type of the content attachment. It can have the following values: <br><ul><li>`reference`: Attachment is a link to another file. Populate the contentURL with the link to the object.</li><li>Any contentTypes supported by the Bot Framework's [Attachment object](/azure/bot-service/rest-api/bot-framework-rest-connector-api-reference?#attachment-object)</li><li>`application/vnd.microsoft.card.codesnippet`: A code snippet. </li><li>`application/vnd.microsoft.card.announcement`: An announcement header. </li>| |contentUrl|string|URL for the content of the attachment. Supported protocols: http, https, file and data.|
-|content|string|The content of the attachment. If the attachment is a [rich card](/microsoftteams/platform/task-modules-and-cards/cards/cards-reference), set the property to the rich card object. This property and contentUrl are mutually exclusive.|
+|id|string| Read-only. Unique id of the attachment.|
|name|string|Name of the attachment.|
+|teamsAppId| string |The ID of the Teams app that is associated with the attachment. The property is specifically used to attribute a Teams message card to the specified app.|
|thumbnailUrl| string |URL to a thumbnail image that the channel can use if it supports using an alternative, smaller form of content or contentUrl. For example, if you set contentType to application/word and set contentUrl to the location of the Word document, you might include a thumbnail image that represents the document. The channel could display the thumbnail image instead of the document. When the user clicks the image, the channel would open the document.| ## JSON representation
An entity of type `chatMessageAttachment` is returned as part of the [Get channe
"optionalProperties": [ "thumbnailUrl", "content",
- "contentUrl"
+ "contentUrl",
+ "teamsAppId"
], "keyProperty": "id", "@odata.type": "microsoft.graph.chatMessageAttachment"
An entity of type `chatMessageAttachment` is returned as part of the [Get channe
```json {
- "id": "string (identifier)",
+ "content": "string",
"contentType": "string", "contentUrl": "string",
- "content": "string",
+ "id": "string (identifier)",
"name": "string",
+ "teamsAppId": "string",
"thumbnailUrl": "string" }
v1.0 Chatmessagefromidentityset https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/chatmessagefromidentityset.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.chatMessageFromIdentitySet",
- "user": {
- "@odata.type": "microsoft.graph.identity"
- },
"application": { "@odata.type": "microsoft.graph.identity" }, "device": { "@odata.type": "microsoft.graph.identity"
+ },
+ "user": {
+ "@odata.type": "microsoft.graph.identity"
} } ```
v1.0 Chatmessagehostedcontent https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/chatmessagehostedcontent.md
chatMessageHostedContent derives from [teamworkHostedContent](teamworkhostedcont
| Property | Type | Description | |:-|:|:|
-|id |String | Read-only. Represents the chat message hosted content identifier.|
|contentBytes |Edm.Binary | Write-only. When posting new chat message hosted content, represents the bytes of the payload. These are represented as a base64Encoded string.| |contentType |String | Write-only. When posting new chat message hosted content, represents the type of content, such as image/png.|
+|id |String | Read-only. Represents the chat message hosted content identifier.|
### Instance attributes
The following is a JSON representation of the resource.
```json { "@microsoft.graph.temporaryId": "String (identifier)",
- "id": "String (identifier)",
"contentBytes": "String (binary)",
- "contentType": "String"
+ "contentType": "String",
+ "id": "String (identifier)"
} ```
v1.0 Chatmessageinfo https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/chatmessageinfo.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.chatMessageInfo",
- "id": "String (identifier)",
"body": { "@odata.type": "microsoft.graph.itemBody" },
+ "createdDateTime": "String (timestamp)",
+ "eventDetail": {
+ "@odata.type": "microsoft.graph.eventMessageDetail"
+ },
"from": { "@odata.type": "microsoft.graph.chatMessageFromIdentitySet" },
- "createdDateTime": "String (timestamp)",
+ "id": "String (identifier)",
"isDeleted": "Boolean",
- "messageType": "String",
- "eventDetail": {
- "@odata.type": "microsoft.graph.eventMessageDetail"
- }
+ "messageType": "String"
} ```
v1.0 Chatmessagemention https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/chatmessagemention.md
For a fuller context of the example, see [List channel message replies](../api/c
| Property | Type |Description| |:|:--|:-| |id|Int32|Index of an entity being mentioned in the specified **chatMessage**. Matches the {index} value in the corresponding `<at id="{index}">` tag in the message body.|
-|mentionText|string|String used to represent the mention. For example, a user's display name, a team name.|
|mentioned|[chatMessageMentionedIdentitySet](chatmessagementionedidentityset.md)|The entity (user, application, team, or channel) that was @mentioned.|
+|mentionText|string|String used to represent the mention. For example, a user's display name, a team name.|
## JSON representation
The following is a JSON representation of the resource.
```json { "id": 1024,
- "mentionText": "string",
- "mentioned": {"@odata.type": "microsoft.graph.chatMessageMentionedIdentitySet"}
+ "mentioned": {"@odata.type": "microsoft.graph.chatMessageMentionedIdentitySet"},
+ "mentionText": "string"
} ```
v1.0 Chatmessagementionedidentityset https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/chatmessagementionedidentityset.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.chatMessageMentionedIdentitySet",
- "user": {
- "@odata.type": "microsoft.graph.identity"
- },
"application": { "@odata.type": "microsoft.graph.identity" },
+ "conversation": {
+ "@odata.type": "microsoft.graph.teamworkConversationIdentity"
+ },
"device": { "@odata.type": "microsoft.graph.identity" },
- "conversation": {
- "@odata.type": "microsoft.graph.teamworkConversationIdentity"
+ "user": {
+ "@odata.type": "microsoft.graph.identity"
} } ```
v1.0 Chatmessagereactionidentityset https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/chatmessagereactionidentityset.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.chatMessageReactionIdentitySet",
- "user": {
- "@odata.type": "microsoft.graph.identity"
- },
"application": { "@odata.type": "microsoft.graph.identity" }, "device": { "@odata.type": "microsoft.graph.identity"
+ },
+ "user": {
+ "@odata.type": "microsoft.graph.identity"
} } ```
v1.0 Chatrenamedeventmessagedetail https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/chatrenamedeventmessagedetail.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.chatRenamedEventMessageDetail",
- "chatId": "String",
"chatDisplayName": "String",
+ "chatId": "String",
"initiator": { "@odata.type": "microsoft.graph.identitySet" }
v1.0 Checklistitem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/checklistitem.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.checklistItem",
- "displayName": "String",
- "createdDateTime": "String (timestamp)",
"checkedDateTime": "String (timestamp)",
- "isChecked": "Boolean",
- "id": "String (identifier)"
+ "createdDateTime": "String (timestamp)",
+ "displayName": "String",
+ "id": "String (identifier)",
+ "isChecked": "Boolean"
} ```
v1.0 Claimsmapping https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/claimsmapping.md
After the custom identity provider sends an ID token back to Azure AD B2C, Azure
## Properties |Property|Type|Description| |:-|:|:-|
-|userId|String|The claim that provides the unique identifier for the signed-in user. Required.|
|displayName|String|The claim that provides the display name or full name for the user. Required.|
+|email|String|The claim that provides the email address of the user.|
|givenName|String|The claim that provides the first name of the user.| |surname|String|The claim that provides the last name of the user.|
-|email|String|The claim that provides the email address of the user.|
+|userId|String|The claim that provides the unique identifier for the signed-in user. Required.|
## Relationships None.
The following is a JSON representation of the resource.
``` json {
- "userId": "String",
+ "displayName": "String",
+ "email": "String",
"givenName": "String", "surname": "String",
- "email": "String",
- "displayName": "String"
+ "userId": "String"
} ```
v1.0 Claimsmappingpolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/claimsmappingpolicy.md
Inherits from [stsPolicy](stsPolicy.md).
| Property | Type | Description | |:-|:|:|
-|id|String| Unique identifier for this policy. Read-only.|
|definition|String collection| A string collection containing a JSON string that defines the rules and settings for this policy. See [Properties of a claims-mapping policy definition](#properties-of-a-claims-mapping-policy-definition) for more details about the JSON schema for this property. Required.| |displayName|String| Display name for this policy. Required.|
+|id|String| Unique identifier for this policy. Read-only.|
|isOrganizationDefault|Boolean|Ignore this property. The claims-mapping policy can only be applied to service principals and can't be set globally for the organization.| ### Properties of a claims-mapping policy definition
The properties below form the JSON object that represents a claims-mapping polic
| Property | Type |Description| |:|:--|:-|
-|Version|Integer|Set value of 1. Required.|
-|IncludeBasicClaimSet|Boolean|If set to `true`, all claims in the basic claim set are emitted in tokens affected by the policy. If set to `false`, claims in the basic claim set are not in the tokens, unless they are individually added in the ClaimsSchema property of the same policy.|
|ClaimsSchema|JSON object|Defines which claims are present in the tokens affected by the policy, in addition to the basic claim set and the core claim set. For each claim schema entry defined in this property, certain information is required. Specify where the data is coming from (Value or Source/ID pair), and which claim the data is emitted as (Claim Type). A maximum of 50 claims are included in the token through the ClaimsSchema object. Any claims schema entries that are encountered after the limit has been reached will be ignored and will not appear in the issued token. Further details are available in the [ClaimsSchema definition](/azure/active-directory/develop/active-directory-claims-mapping#claims-schema).| |ClaimsTransformation|JSON object| Defines common transformations that can be applied to source data, to generate the output data for claims specified in the ClaimsSchema. A maximum of 50 transformations are included in the token through the ClaimsTransformation object. Any transformations that are encountered after the limit has been reached will be ignored and will not appear in the issued token. For more information about ClaimsTransformation and the supported functions, see [Claims transformation](/azure/active-directory/develop/active-directory-claims-mapping#claims-transformation).|
+|IncludeBasicClaimSet|Boolean|If set to `true`, all claims in the basic claim set are emitted in tokens affected by the policy. If set to `false`, claims in the basic claim set are not in the tokens, unless they are individually added in the ClaimsSchema property of the same policy.|
+|Version|Integer|Set value of 1. Required.|
## Relationships
v1.0 Cloudappsecuritysessioncontrol https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/cloudappsecuritysessioncontrol.md
Session control used to enforce cloud app security checks. Inehrits from [Condit
| Property | Type | Description | |:-|:|:|
-|isEnabled |Boolean | Specifies whether the session control is enabled. |
|cloudAppSecurityType|cloudAppSecuritySessionControlType| Possible values are: `mcasConfigured`, `monitorOnly`, `blockDownloads`, `unknownFutureValue`. For more information, see [Deploy Conditional Access App Control for featured apps](/cloud-app-security/proxy-deployment-aad). |
+|isEnabled |Boolean | Specifies whether the session control is enabled. |
## Relationships
v1.0 Columndefinition https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/columndefinition.md
The type-related properties (boolean, calculated, choice, currency, dateTime, lo
| Property name | Type | Description| |:|:--|:--|
-| **columnGroup** | string | For site columns, the name of the group this column belongs to. Helps organize related columns.|
-| **description** | string | The user-facing description of the column.|
-| **displayName** | string | The user-facing name of the column.|
-| **enforceUniqueValues** | Boolean | If `true`, no two list items may have the same value for this column.|
-| **hidden** | Boolean | Specifies whether the column is displayed in the user interface.|
-| **id** | string | The unique identifier for the column.|
-| **indexed** | Boolean | Specifies whether the column values can be used for sorting and searching.|
-| **name** | string | The API-facing name of the column as it appears in the [fields][] on a [listItem][]. For the user-facing name, see **displayName**.|
-| **readOnly** | Boolean | Specifies whether the column values can be modified.|
-| **required** | Boolean | Specifies whether the column value isn't optional.|
| **boolean** | [booleanColumn][] | This column stores boolean values.| | **calculated** | [calculatedColumn][] | This column's data is calculated based on other columns.| | **choice** | [choiceColumn][] | This column stores data from a list of choices.|
+| **columnGroup** | string | For site columns, the name of the group this column belongs to. Helps organize related columns.|
+| **contentApprovalStatus**| [contentApprovalStatusColumn][] | This column stores content approval status.|
| **currency** | [currencyColumn][] | This column stores currency values.| | **dateTime** | [dateTimeColumn][] | This column stores DateTime values.| | **defaultValue** | [defaultColumnValue][] | The default value for this column.|
+| **description** | string | The user-facing description of the column.|
+| **displayName** | string | The user-facing name of the column.|
+| **enforceUniqueValues** | Boolean | If `true`, no two list items may have the same value for this column.|
| **geolocation** | [geolocationColumn][] | This column stores a geolocation.|
+| **hidden** | Boolean | Specifies whether the column is displayed in the user interface.|
+| **hyperlinkOrPicture** | [hyperlinkOrPictureColumn][] | This column stores hyperlink or picture values. |
+| **isDeletable** | Boolean | Indicates whether this column can be deleted.|
+| **isReorderable** | Boolean | Indicates whether values in the column can be reordered. Read-only.|
+| **id** | string | The unique identifier for the column.|
+| **indexed** | Boolean | Specifies whether the column values can be used for sorting and searching.|
+| **isSealed** | Boolean | Specifies whether the column can be changed.|
| **lookup** | [lookupColumn][] | This column's data is looked up from another source in the site.|
+| **name** | string | The API-facing name of the column as it appears in the [fields][] on a [listItem][]. For the user-facing name, see **displayName**.|
| **number** | [numberColumn][] | This column stores number values.| | **personOrGroup** | [personOrGroupColumn][] | This column stores Person or Group values.|
-| **text** | [textColumn][] | This column stores text values.|
-| **isDeletable** | Boolean | Indicates whether this column can be deleted.|
| **propagateChanges** | Boolean | If 'true', changes to this column will be propagated to lists that implement the column. |
-| **isReorderable** | Boolean | Indicates whether values in the column can be reordered. Read-only.|
-| **isSealed** | Boolean | Specifies whether the column can be changed.|
-| **validation** | [columnValidation][] | This column stores validation formula and message for the column.|
-| **hyperlinkOrPicture** | [hyperlinkOrPictureColumn][] | This column stores hyperlink or picture values. |
-| **term** | [termColumn][] | This column stores taxonomy terms.|
+| **readOnly** | Boolean | Specifies whether the column values can be modified.|
+| **required** | Boolean | Specifies whether the column value isn't optional.|
| **sourceContentType** |[contentTypeInfo][] | ContentType from which this column is inherited from. Present only in contentTypes columns response. Read-only.|
+| **term** | [termColumn][] | This column stores taxonomy terms.|
+| **text** | [textColumn][] | This column stores text values.|
| **thumbnail** |[thumbnailColumn][] | This column stores thumbnail values.| | **type** | columnTypes | For site columns, the type of column. Read-only.|
-| **contentApprovalStatus**| [contentApprovalStatusColumn][] | This column stores content approval status.|
+| **validation** | [columnValidation][] | This column stores validation formula and message for the column.|
## Relationships
Here is a JSON representation of a columnDefinition resource.
```json {
- "columnGroup": "string",
- "description": "description",
- "displayName": "friendly name",
- "enforceUniqueValues": true,
- "hidden": false,
- "id": "string",
- "indexed": true,
- "name": "staticNameForApi",
- "readOnly": false,
- "required": false,
"boolean": { "@odata.type": "microsoft.graph.booleanColumn" }, "calculated": { "@odata.type": "microsoft.graph.calculatedColumn" }, "choice": { "@odata.type": "microsoft.graph.choiceColumn" },
+ "columnGroup": "string",
+ "contentApprovalStatus": { "@odata.type": "microsoft.graph.contentApprovalStatusColumn" },
"currency": { "@odata.type": "microsoft.graph.currencyColumn" }, "dateTime": { "@odata.type": "microsoft.graph.dateTimeColumn" }, "defaultValue": { "@odata.type": "microsoft.graph.defaultColumnValue" },
+ "description": "description",
+ "displayName": "friendly name",
+ "enforceUniqueValues": true,
"geolocation": { "@odata.type": "microsoft.graph.geolocationColumn" },
+ "hidden": false,
+ "hyperlinkOrPicture": { "@odata.type": "microsoft.graph.hyperlinkOrPictureColumn" },
+ "id": "string",
+ "indexed": true,
+ "isDeletable" : false,
+ "isReorderable": false,
+ "isSealed": false,
"lookup": { "@odata.type": "microsoft.graph.lookupColumn" },
+ "name": "staticNameForApi",
"number": { "@odata.type": "microsoft.graph.numberColumn" }, "personOrGroup": { "@odata.type": "microsoft.graph.personOrGroupColumn" },
- "text": { "@odata.type": "microsoft.graph.textColumn" },
- "isDeletable" : false,
+ "readOnly": false,
+ "required": false,
"propagateChanges": false,
- "isReorderable": false,
- "isSealed": false,
- "validation": { "@odata.type": "microsoft.graph.columnValidation" },
- "hyperlinkOrPicture": { "@odata.type": "microsoft.graph.hyperlinkOrPictureColumn" },
- "term": { "@odata.type": "microsoft.graph.termColumn" },
"sourceContentType": { "@odata.type": "microsoft.graph.contentTypeInfo" },
+ "term": { "@odata.type": "microsoft.graph.termColumn" },
+ "text": { "@odata.type": "microsoft.graph.textColumn" },
"thumbnail": { "@odata.type": "microsoft.graph.thumbnailColumn" }, "type": { "@odata.type": "microsoft.graph.columnTypes" },
- "contentApprovalStatus": { "@odata.type": "microsoft.graph.contentApprovalStatusColumn" }
+ "validation": { "@odata.type": "microsoft.graph.columnValidation" },
} ```
v1.0 Columnvalidation https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/columnvalidation.md
Represents properties that validates column values.
| Property | Type | Description| |:|:--|:--|
-| **formula** | string | The formula to validate column value. For examples, see [Examples of common formulas in lists](https://support.microsoft.com/office/examples-of-common-formulas-in-sharepoint-lists-d81f5f21-2b4e-45ce-b170-bf7ebf6988b3).|
-| **descriptions** | Collection(microsoft.graph.displayNameLocalization) | Localized messages that explain what is needed for this column's value to be considered valid. User will be prompted with this message if validation fails. |
| **defaultLanguage** | string | Default BCP 47 language tag for the description.|
+| **descriptions** | Collection(microsoft.graph.displayNameLocalization) | Localized messages that explain what is needed for this column's value to be considered valid. User will be prompted with this message if validation fails. |
+| **formula** | string | The formula to validate column value. For examples, see [Examples of common formulas in lists](https://support.microsoft.com/office/examples-of-common-formulas-in-sharepoint-lists-d81f5f21-2b4e-45ce-b170-bf7ebf6988b3).|
+ SharePoint formulas use a syntax similar to Excel formulas. For more information, see [Examples of common formulas in SharePoint Lists][SPFormulas].
The following is a JSON representation of a **columnValidation** resource.
```json {
- "formula": "string",
+ "defaultLanguage": "string",
"descriptions": [{ "@type": "microsoft.graph.displayNameLocalization" }],
- "defaultLanguage": "string"
+ "formula": "string"
} ```
v1.0 Communications Api Overview https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/communications-api-overview.md
One of the following [permissions](/graph/permissions-reference#calls-permission
| Scenario | Permissions | |:|:|
+| Call records | CallRecords.Read.All |
| Calling | Calls.JoinGroupCallsasGuest.All, Calls.JoinGroupCalls.All, Calls.Initiate.All, Calls.InitiateGroupCalls.All, Calls.AccessMedia.All | | Meetings | OnlineMeetings.ReadWrite.All, OnlineMeetings.Read.All |
-| Call records | CallRecords.Read.All |
| Presences | Presence.Read, Presence.Read.All | ## Common use cases
v1.0 Complianceinformation https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/complianceinformation.md
Contains compliance data associated with secure score control.
|Property |Type |Description | |:--|:--|:--|
-|certificationName|String| Compliance certification name (for example, ISO 27018:2014, GDPR, FedRAMP, NIST 800-171) |
|certificationControls|[certificationControl](certificationcontrol.md) collection|Collection of the certification controls associated with certification|
+|certificationName|String| Compliance certification name (for example, ISO 27018:2014, GDPR, FedRAMP, NIST 800-171) |
## JSON representation
The following is a JSON representation of the resource.
```json {
- "certificationName": "String",
- "certificationControls": [{"@odata.type": "microsoft.graph.certificationControl"}]
+ "certificationControls": [{"@odata.type": "microsoft.graph.certificationControl"}],
+ "certificationName": "String"
} ```
v1.0 Conditionalaccessapplications https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/conditionalaccessapplications.md
Represents the applications and user actions included in and excluded from the c
| Property | Type | Description | |:-|:|:|
-| includeApplications | String collection | Can be one of the following: <li> The list of client IDs (**appId**) the policy applies to, unless explicitly excluded (in **excludeApplications**) <li> `All` <li> `Office365` - For the list of apps included in `Office365`, see [Conditional Access target apps: Office 365](/azure/active-directory/conditional-access/concept-conditional-access-cloud-apps) |
| excludeApplications | String collection | Can be one of the following: <li> The list of client IDs (**appId**) explicitly excluded from the policy.<li> `Office365` - For the list of apps included in `Office365`, see [Conditional Access target apps: Office 365](/azure/active-directory/conditional-access/concept-conditional-access-cloud-apps) |
+| includeApplications | String collection | Can be one of the following: <li> The list of client IDs (**appId**) the policy applies to, unless explicitly excluded (in **excludeApplications**) <li> `All` <li> `Office365` - For the list of apps included in `Office365`, see [Conditional Access target apps: Office 365](/azure/active-directory/conditional-access/concept-conditional-access-cloud-apps) |
| includeUserActions | String collection | User actions to include. Supported values are `urn:user:registersecurityinfo` and `urn:user:registerdevice` | ## Relationships
The following is a JSON representation of the resource.
```json {
- "includeApplications": ["String"],
"excludeApplications": ["String"],
+ "includeApplications": ["String"],
"includeUserActions": ["String"] } ```
v1.0 Conditionalaccessclientapplications https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/conditionalaccessclientapplications.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.conditionalAccessClientApplications",
- "includeServicePrincipals": [
+ "excludeServicePrincipals": [
"String" ],
- "excludeServicePrincipals": [
+ "includeServicePrincipals": [
"String" ] }
v1.0 Conditionalaccessconditionset https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/conditionalaccessconditionset.md
The following is a JSON representation of the resource.
{ "@odata.type": "#microsoft.graph.conditionalAccessConditionSet", "applications": {"@odata.type": "microsoft.graph.conditionalAccessApplications"},
- "users": {"@odata.type": "microsoft.graph.conditionalAccessUsers"},
"clientApplications": {"@odata.type": "microsoft.graph.conditionalAccessClientApplications"}, "clientAppTypes": ["String"], "devices": {"@odata.type": "microsoft.graph.conditionalAccessDevices"},
The following is a JSON representation of the resource.
"platforms": {"@odata.type": "microsoft.graph.conditionalAccessPlatforms"}, "servicePrincipalRiskLevels": ["String"], "signInRiskLevels": ["String"],
- "userRiskLevels": ["String"]
+ "userRiskLevels": ["String"],
+ "users": {"@odata.type": "microsoft.graph.conditionalAccessUsers"}
} ```
v1.0 Conditionalaccessgrantcontrols https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/conditionalaccessgrantcontrols.md
Represents grant controls that must be fulfilled to pass the policy.
| Property | Type | Description | |:-- |:- |:-- |
-| operator | String | Defines the relationship of the grant controls. Possible values: `AND`, `OR`. |
| builtInControls | conditionalAccessGrantControl collection | List of values of built-in controls required by the policy. Possible values: `block`, `mfa`, `compliantDevice`, `domainJoinedDevice`, `approvedApplication`, `compliantApplication`, `passwordChange`, `unknownFutureValue`. | | customAuthenticationFactors | String collection | List of custom controls IDs required by the policy. For more information, see [Custom controls](/azure/active-directory/conditional-access/controls). |
+| operator | String | Defines the relationship of the grant controls. Possible values: `AND`, `OR`. |
| termsOfUse | String collection | List of [terms of use](/graph/api/resources/agreement) IDs required by the policy. | ### Special considerations when using `passwordChange` as a control
v1.0 Conditionalaccesslocations https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/conditionalaccesslocations.md
Represents locations included in and excluded from the policy scope.
| Property | Type | Description | |:-|:|:|
-| includeLocations | String collection | Location IDs in scope of policy unless explicitly excluded, `All`, or `AllTrusted`. |
| excludeLocations | String collection | Location IDs excluded from scope of policy. |
+| includeLocations | String collection | Location IDs in scope of policy unless explicitly excluded, `All`, or `AllTrusted`. |
## JSON representation
v1.0 Conditionalaccessplatforms https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/conditionalaccessplatforms.md
Platforms included in and excluded from the policy scope.
| Property | Type | Description | |:-|:|:|
-|includePlatforms|conditionalAccessDevicePlatform collection| Possible values are: `android`, `iOS`, `windows`, `windowsPhone`, `macOS`, `linux`, `all`, `unknownFutureValue`.|
|excludePlatforms|conditionalAccessDevicePlatform collection| Possible values are: `android`, `iOS`, `windows`, `windowsPhone`, `macOS`, `linux`, `all`, `unknownFutureValue`.|
+|includePlatforms|conditionalAccessDevicePlatform collection| Possible values are: `android`, `iOS`, `windows`, `windowsPhone`, `macOS`, `linux`, `all`, `unknownFutureValue`.|
## Relationships
The following is a JSON representation of the resource.
```json {
- "includePlatforms": ["String"],
- "excludePlatforms": ["String"]
+ "excludePlatforms": ["String"],
+ "includePlatforms": ["String"]
} ```
v1.0 Conditionalaccesssessioncontrols https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/conditionalaccesssessioncontrols.md
The following is a JSON representation of the resource.
{ "applicationEnforcedRestrictions": {"@odata.type": "microsoft.graph.applicationEnforcedRestrictionsSessionControl"}, "cloudAppSecurity": {"@odata.type": "microsoft.graph.cloudAppSecuritySessionControl"},
+ "disableResilienceDefaults": false,
"persistentBrowser": {"@odata.type": "microsoft.graph.persistentBrowserSessionControl"},
- "signInFrequency": {"@odata.type": "microsoft.graph.signInFrequencySessionControl"},
- "disableResilienceDefaults": false
+ "signInFrequency": {"@odata.type": "microsoft.graph.signInFrequencySessionControl"}
} ```
v1.0 Conditionalaccesstemplate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/conditionalaccesstemplate.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.conditionalAccessTemplate",
- "id": "String (identifier)",
- "name": "String",
"description": "String",
- "scenarios": "String",
"details": {
- "@odata.type": "microsoft.graph.conditionalAccessPolicyDetail"
+ "@odata.type": "microsoft.graph.conditionalAccessPolicyDetail",
+ "id": "String (identifier)",
+ "name": "String",
+ "scenarios": "String"
} } ```
v1.0 Conditionalaccessusers https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/conditionalaccessusers.md
Represents users, groups, and roles included in and excluded from the policy sco
| Property | Type | Description | |:-|:|:|
-| includeUsers | String collection | User IDs in scope of policy unless explicitly excluded, or `None` or `All` or `GuestsOrExternalUsers`. |
+| excludeGroups | String collection | Group IDs excluded from scope of policy. |
+| excludeRoles | String collection | Role IDs excluded from scope of policy. |
| excludeUsers | String collection | User IDs excluded from scope of policy and/or `GuestsOrExternalUsers`. | | includeGroups | String collection | Group IDs in scope of policy unless explicitly excluded, or `All`. |
-| excludeGroups | String collection | Group IDs excluded from scope of policy. |
| includeRoles | String collection | Role IDs in scope of policy unless explicitly excluded, or `All`. |
-| excludeRoles | String collection | Role IDs excluded from scope of policy. |
+| includeUsers | String collection | User IDs in scope of policy unless explicitly excluded, or `None` or `All` or `GuestsOrExternalUsers`. |
## Relationships
v1.0 Connectedorganization https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/connectedorganization.md
In [Azure AD entitlement management](entitlementmanagement-overview.md), a conne
|description|String|The description of the connected organization.| |displayName|String|The display name of the connected organization. Supports `$filter` (`eq`).| |id|String|Read-only.|
-|identitySources|[identitySource](../resources/identitysource.md) collection|The identity sources in this connected organization, one of [azureActiveDirectoryTenant](azureactivedirectorytenant.md), [domainIdentitySource](domainidentitysource.md) or [externalDomainFederation](externaldomainfederation.md). Nullable.|
+|identitySources|[identitySource](../resources/identitysource.md) collection|The identity sources in this connected organization, one of [azureActiveDirectoryTenant](azureactivedirectorytenant.md), [domainIdentitySource](domainidentitysource.md), [externalDomainFederation](externaldomainfederation.md) or [crossCloudAzureActiveDirectoryTenant](crosscloudazureactivedirectorytenant.md). Nullable.|
|modifiedDateTime|DateTimeOffset|*The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is `2014-01-01T00:00:00Z`. Read-only.| |state|connectedOrganizationState|The state of a connected organization defines whether assignment policies with requestor scope type `AllConfiguredConnectedOrganizationSubjects` are applicable or not. The possible values are: `configured`, `proposed`, `unknownFutureValue`.|
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.connectedOrganization",
- "id": "String (identifier)",
- "displayName": "String",
"description": "String",
+ "displayName": "String",
"createdDateTime": "String (timestamp)",
- "modifiedDateTime": "String (timestamp)",
+ "id": "String (identifier)",
"identitySources": [ { "@odata.type": "microsoft.graph.azureActiveDirectoryTenant" } ],
+ "modifiedDateTime": "String (timestamp)",
"state": "String" } ```
v1.0 Consentrequests Overview https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/consentrequests-overview.md
ms.localizationpriority: medium
ms.prod: "governance" doc_type: conceptualPageType Last updated : 09/28/2022 # Azure Active Directory consent requests
v1.0 Contact https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/contact.md
The following is a JSON representation of the resource.
"otherAddress": {"@odata.type": "microsoft.graph.physicalAddress"}, "parentFolderId": "string", "personalNotes": "string",
+ "photo": { "@odata.type": "microsoft.graph.profilePhoto" },
"profession": "string", "spouseName": "string", "surname": "string", "title": "string", "yomiCompanyName": "string", "yomiGivenName": "string",
- "yomiSurname": "string",
-
- "photo": { "@odata.type": "microsoft.graph.profilePhoto" }
+ "yomiSurname": "string"
} ```
v1.0 Controlscore https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/controlscore.md
Contains a tenant score and description for an individual control.
|Name |Type |Description | |:--|:--|:--|
-|controlName|String|Control unique name.|
-|score|Double|Tenant achieved score for the control (it varies day by day depending on tenant operations on the control).|
|controlCategory|String|Control action category (Identity, Data, Device, Apps, Infrastructure).|
+|controlName|String|Control unique name.|
|description|String| Description of the control.|
+|score|Double|Tenant achieved score for the control (it varies day by day depending on tenant operations on the control).|
## JSON representation
The following is a JSON representation of the resource.
```json {
- "controlName": "String",
- "score": "Double",
"controlCategory": "String",
- "description": "String"
+ "controlName": "String",
+ "description": "String",
+ "score": "Double"
} ```
v1.0 Conversation https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/conversation.md
Here is a JSON representation of the resource
"id": "string (identifier)", "lastDeliveredDateTime": "String (timestamp)", "preview": "string",
+ "threads": [{"@odata.type": "microsoft.graph.conversationThread"}],
"topic": "string",
- "uniqueSenders": ["string"],
-
- "threads": [{"@odata.type": "microsoft.graph.conversationThread"}]
+ "uniqueSenders": ["string"]
} ```
v1.0 Conversationmember https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/conversationmember.md
See also [aadUserConversationMember](aaduserconversationmember.md).
| Property | Type |Description| |:|:--|:-|
-|id|String| Read-only. Unique ID of the user.|
|displayName| string | The display name of the user. |
+|id|String| Read-only. Unique ID of the user.|
|roles| string collection | The roles for that user. This property only contains additional qualifiers when relevant - for example, if the member has `owner` privileges, the **roles** property contains `owner` as one of the values. Similarly, if the member is a guest, the **roles** property contains `guest` as one of the values. A basic member should not have any values specified in the **roles** property. | |visibleHistoryStartDateTime| DateTimeOffset | The timestamp denoting how far back a conversation's history is shared with the conversation member. This property is settable only for members of a chat. |
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.conversationMember",
+ "displayName": "String",
"id": "String (identifier)", "roles": [ "String" ],
- "displayName": "String",
"visibleHistoryStartDateTime": "String (timestamp)" } ```
v1.0 Conversationmemberroleupdatedeventmessagedetail https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/conversationmemberroleupdatedeventmessagedetail.md
Inherits from [eventMessageDetail](../resources/eventmessagedetail.md).
## Properties |Property|Type|Description| |:|:|:|
+|initiator|[identitySet](../resources/identityset.md)|Initiator of the event.|
|conversationMemberRoles|String collection|Roles for the **coversation member** user.| |conversationMemberUser|[teamworkUserIdentity](../resources/teamworkuseridentity.md)|Identity of the **conversation member** user.|
-|initiator|[identitySet](../resources/identityset.md)|Initiator of the event.|
## JSON representation The following is a JSON representation of the resource.
v1.0 Conversationthread https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/conversationthread.md
A new thread is created when a recipient is removed from the thread.
## Properties | Property | Type | Description | |:-|:-|:-|
-| id | String | Read-only. <br/><br/>Returned by default. |
-| toRecipients | [recipient](recipient.md) collection | The To: recipients for the thread. <br/><br/>Returned only on `$select`. |
| ccRecipients | [recipient](recipient.md) collection | The Cc: recipients for the thread. <br/><br/>Returned only on `$select`. |
-| topic | String | The topic of the conversation. This property can be set when the conversation is created, but it cannot be updated. <br/><br/>Returned by default. |
| hasAttachments | Boolean | Indicates whether any of the posts within this thread has at least one attachment. <br/><br/>Returned by default. |
+| id | String | Read-only. <br/><br/>Returned by default. |
+| isLocked | Boolean | Indicates if the thread is locked. <br/><br/>Returned by default. |
| lastDeliveredDateTime | DateTimeOffset | 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`.<br/><br/>Returned by default. |
-| uniqueSenders | String collection | All the users that sent a message to this thread. <br/><br/>Returned by default. |
| preview | String | A short summary from the body of the latest post in this conversation. <br/><br/>Returned by default. |
-| isLocked | Boolean | Indicates if the thread is locked. <br/><br/>Returned by default. |
+| topic | String | The topic of the conversation. This property can be set when the conversation is created, but it cannot be updated. <br/><br/>Returned by default. |
+| toRecipients | [recipient](recipient.md) collection | The To: recipients for the thread. <br/><br/>Returned only on `$select`. |
+| uniqueSenders | String collection | All the users that sent a message to this thread. <br/><br/>Returned by default. |
+ ## Relationships | Relationship | Type |Description|
Here is a JSON representation of the resource
"isLocked": true, "lastDeliveredDateTime": "String (timestamp)", "preview": "string",
- "toRecipients": [{"@odata.type": "microsoft.graph.recipient"}],
"topic": "string",
+ "toRecipients": [{"@odata.type": "microsoft.graph.recipient"}],
"uniqueSenders": ["string"] }
v1.0 Convertidresult https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/convertidresult.md
The result of an ID format conversion performed by the [translateExchangeIds](..
| Property | Type | Description | |:|:--|:|
+| errorDetails | [genericError](genericerror.md) | An error object indicating the reason for the conversion failure. This value is not present if the conversion succeeded. |
| sourceId | String | The identifier that was converted. This value is the original, un-converted identifier. | | targetId | String | The converted identifier. This value is not present if the conversion failed. |
-| errorDetails | [genericError](genericerror.md) | An error object indicating the reason for the conversion failure. This value is not present if the conversion succeeded. |
## JSON representation
Here is a JSON representation of the resource.
```json {
- "sourceId": "String",
- "targetId": "String",
"errorDetails": { "@odata.type": "microsoft.graph.genericError"
- }
+ },
+ "sourceId": "String",
+ "targetId": "String"
} ```
v1.0 Crosscloudazureactivedirectorytenant https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/crosscloudazureactivedirectorytenant.md
+
+ Title: "crossCloudAzureActiveDirectoryTenant resource type"
+description: "The crossCloudAzureActiveDirectoryTenant type identifies another Azure Active Directory tenant in a different cloud as an identity source for a connected organization."
+ms.localizationpriority: medium
+++
+# crossCloudAzureActiveDirectoryTenant resource type
+
+Namespace: microsoft.graph
+
+Used in the identity sources of a [connectedOrganization](connectedOrganization.md) object. The `@odata.type` value `#microsoft.graph.crossCloudAzureActiveDirectoryTenant` indicates that this type identifies another Azure AD tenant in a different cloud as an identity source for a connected organization.
++
+## Properties
+
+| Property | Type | Description |
+| : | : | :- |
+| cloudInstance | String | The ID of the cloud where the tenant is located, one of `microsoftonline.com`, `microsoftonline.us` or `partner.microsoftonline.cn`. Read only. |
+| displayName |String | The name of the Azure Active Directory tenant. Read only. |
+| tenantId |String | The ID of the Azure Active Directory tenant. Read only. |
+
+## Relationships
+
+None.
+
+## JSON representation
+
+The following is a JSON representation of the type.
+
+<!-- {
+ "blockType": "resource",
+ "optionalProperties": [
+
+ ],
+ "@odata.type": "microsoft.graph.crossCloudAzureActiveDirectoryTenant",
+ "baseType": "microsoft.graph.identitySource"
+}-->
+
+```json
+{
+ "tenantId": "String (identifier)",
+ "displayName": "String",
+ "cloudInstance": "String"
+}
+```
+
+<!-- uuid: 16cd6b66-4b1a-43a1-adaf-3a886856ed98
+2019-02-04 14:57:30 UTC -->
+<!-- {
+ "type": "#page.annotation",
+ "description": "crossCloudAzureActiveDirectoryTenant resource type",
+ "keywords": "",
+ "section": "documentation",
+ "tocPath": ""
+}-->
++
v1.0 Crosstenantaccesspolicyb2bsetting https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/crosstenantaccesspolicyb2bsetting.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.crossTenantAccessPolicyB2BSetting",
- "usersAndGroups": {
+ "applications": {
"@odata.type": "microsoft.graph.crossTenantAccessPolicyTargetConfiguration" },
- "applications": {
+ "usersAndGroups": {
"@odata.type": "microsoft.graph.crossTenantAccessPolicyTargetConfiguration" } }
v1.0 Crosstenantaccesspolicyconfigurationdefault https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/crosstenantaccesspolicyconfigurationdefault.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.crossTenantAccessPolicyConfigurationDefault",
- "inboundTrust": {
- "@odata.type": "microsoft.graph.crossTenantAccessPolicyInboundTrust"
+ "b2bCollaborationInbound": {
+ "@odata.type": "microsoft.graph.crossTenantAccessPolicyB2BSetting"
}, "b2bCollaborationOutbound": { "@odata.type": "microsoft.graph.crossTenantAccessPolicyB2BSetting" },
- "b2bCollaborationInbound": {
+ "b2bDirectConnectInbound": {
"@odata.type": "microsoft.graph.crossTenantAccessPolicyB2BSetting" }, "b2bDirectConnectOutbound": { "@odata.type": "microsoft.graph.crossTenantAccessPolicyB2BSetting" },
- "b2bDirectConnectInbound": {
- "@odata.type": "microsoft.graph.crossTenantAccessPolicyB2BSetting"
+ "inboundTrust": {
+ "@odata.type": "microsoft.graph.crossTenantAccessPolicyInboundTrust"
}, "isServiceDefault": "Boolean" }
v1.0 Crosstenantaccesspolicyconfigurationpartner https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/crosstenantaccesspolicyconfigurationpartner.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.crossTenantAccessPolicyConfigurationPartner",
- "tenantId": "String (identifier)",
- "inboundTrust": {
- "@odata.type": "microsoft.graph.crossTenantAccessPolicyInboundTrust"
+ "b2bCollaborationInbound": {
+ "@odata.type": "microsoft.graph.crossTenantAccessPolicyB2BSetting"
}, "b2bCollaborationOutbound": { "@odata.type": "microsoft.graph.crossTenantAccessPolicyB2BSetting" },
- "b2bCollaborationInbound": {
+ "b2bDirectConnectInbound": {
"@odata.type": "microsoft.graph.crossTenantAccessPolicyB2BSetting" }, "b2bDirectConnectOutbound": { "@odata.type": "microsoft.graph.crossTenantAccessPolicyB2BSetting" },
- "b2bDirectConnectInbound": {
- "@odata.type": "microsoft.graph.crossTenantAccessPolicyB2BSetting"
+ "inboundTrust": {
+ "@odata.type": "microsoft.graph.crossTenantAccessPolicyInboundTrust"
},
- "isServiceProvider": "Boolean"
+ "isServiceProvider": "Boolean",
+ "tenantId": "String (identifier)"
} ```
v1.0 Crosstenantaccesspolicyinboundtrust https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/crosstenantaccesspolicyinboundtrust.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.crossTenantAccessPolicyInboundTrust",
- "isMfaAccepted": "Boolean",
"isCompliantDeviceAccepted": "Boolean",
- "isHybridAzureADJoinedDeviceAccepted": "Boolean"
+ "isHybridAzureADJoinedDeviceAccepted": "Boolean",
+ "isMfaAccepted": "Boolean"
} ```
v1.0 Customtimezone https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/customtimezone.md
Title: "customTimeZone resource type"
description: "Represents a time zone where the transition from standard to daylight saving time, or vice versa is not standard." ms.localizationpriority: medium doc_type: resourcePageType
v1.0 Datapolicyoperation https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/datapolicyoperation.md
The following is a JSON representation of the resource.
{ "completedDateTime": "String (timestamp)", "id": "String (identifier)",
+ "progress": "String (double)",
"status": "string", "storageLocation": "String", "userId": "String",
- "submittedDateTime": "String (timestamp)",
- "progress": "String (double)"
+ "submittedDateTime": "String (timestamp)"
} ```
v1.0 Daylighttimezoneoffset https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/daylighttimezoneoffset.md
Title: "daylightTimeZoneOffset resource type"
description: "Specifies when a time zone switches from standard time to daylight saving time." ms.localizationpriority: medium doc_type: resourcePageType
v1.0 Delegatedpermissionclassification https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/delegatedpermissionclassification.md
Delegated permission classifications can be used in combination with user consen
| Property | Type | Description | |:|:--|:-|
-| id | String | A unique identifier for the **delegatedPermissionClassification** Key. Not nullable. Read-only. |
| classification | permissionClassificationType | The classification value being given. Possible value: `low`. Does not support `$filter`. |
+| id | String | A unique identifier for the **delegatedPermissionClassification** Key. Not nullable. Read-only. |
| permissionId | String | The unique identifier (**id**) for the delegated permission listed in the **oauth2PermissionScopes** collection of the [servicePrincipal](servicePrincipal.md). Required on create. Does not support `$filter`. | | permissionName | String | The claim value (**value**) for the delegated permission listed in the **oauth2PermissionScopes** collection of the [servicePrincipal](servicePrincipal.md). Does not support `$filter`. |
The following is a JSON representation of the resource.
```json {
- "id": "String (identifier)",
"classification": "low",
+ "id": "String (identifier)",
"permissionId": "String", "permissionName": "String" }
v1.0 Device https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/device.md
This resource is an open type that allows other properties to be passed in. You
|:|:--|:-| |extensions|[extension](extension.md) collection|The collection of open extensions defined for the device. Read-only. Nullable.| |memberOf|[directoryObject](directoryobject.md) collection|Groups and administrative units that this device is a member of. Read-only. Nullable. Supports `$expand`. |
-|transitiveMemberOf |[directoryObject](directoryobject.md) collection| Groups and administrative units that the device is a member of. This operation is transitive. Supports `$expand`. |
|registeredOwners|[directoryObject](directoryobject.md) collection|The user that cloud joined the device or registered their personal device. The registered owner is set at the time of registration. Currently, there can be only one owner. Read-only. Nullable. Supports `$expand`. | |registeredUsers|[directoryObject](directoryobject.md) collection|Collection of registered users of the device. For cloud joined devices and registered personal devices, registered users are set to the same value as registered owners at the time of registration. Read-only. Nullable. Supports `$expand`. |
+|transitiveMemberOf |[directoryObject](directoryobject.md) collection| Groups and administrative units that the device is a member of. This operation is transitive. Supports `$expand`. |
## JSON representation
v1.0 Directoryaudit https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/directoryaudit.md
Represents the directory audit items and its collection.
| correlationId | Guid | Indicates a unique ID that helps correlate activities that span across various services. Can be used to trace logs across services. | | id | String | Indicates the unique ID for the activity. This is a GUID. | | initiatedBy | [auditActivityInitiator](auditactivityinitiator.md) | Indicates information about the user or app initiated the activity. |
-| operationType | String | Indicates the type of operation that was performed. The possible values include but are not limited to the following: `Add`, `Assign`, `Update`, `Unassign`, and `Delete`. |
| loggedByService | String | Indicates information on which service initiated the activity (For example: `Self-service Password Management`, `Core Directory`, `B2C`, `Invited Users`, `Microsoft Identity Manager`, `Privileged Identity Management`. |
+| operationType | String | Indicates the type of operation that was performed. The possible values include but are not limited to the following: `Add`, `Assign`, `Update`, `Unassign`, and `Delete`. |
| result | operationResult | Indicates the result of the activity. Possible values are: `success`, `failure`, `timeout`, `unknownFutureValue`. | | resultReason | String | Indicates the reason for failure if the **result** is `failure` or `timeout`. | | targetResources | [targetResource](targetresource.md) collection | Indicates information on which resource was changed due to the activity. Target Resource Type can be `User`, `Device`, `Directory`, `App`, `Role`, `Group`, `Policy` or `Other`. |
v1.0 Documentset https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/documentset.md
The following is a JSON representation of a **documentSet** resource.
```json {
- "shouldPrefixNameToFile": true,
"allowedContentTypes": [{ "@type": "microsoft.graph.contentTypeInfo" }], "defaultContents": [{ "@type": "microsoft.graph.documentSetContent" }], "propagateWelcomePageChanges": false,
+ "shouldPrefixNameToFile": true,
"welcomePageUrl": "string" } ```
v1.0 Domain https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/domain.md
To associate a domain with a tenant:
|isVerified|Boolean| `true` if the domain has completed domain ownership verification. Not nullable | |passwordNotificationWindowInDays|Int32|Specifies the number of days before a user receives notification that their password will expire. If the property is not set, a default value of 14 days will be used.| |passwordValidityPeriodInDays|Int32| Specifies the length of time that a password is valid before it must be changed. If the property is not set, a default value of 90 days will be used. |
-|supportedServices|String collection| The capabilities assigned to the domain. Can include `0`, `1` or more of following values: `Email`, `Sharepoint`, `EmailInternalRelayOnly`, `OfficeCommunicationsOnline`, `SharePointDefaultDomain`, `FullRedelegation`, `SharePointPublic`, `OrgIdAuthentication`, `Yammer`, `Intune`. The values which you can add/remove using Graph API include: `Email`, `OfficeCommunicationsOnline`, `Yammer`. Not nullable.|
|state|[domainState](domainstate.md)| Status of asynchronous operations scheduled for the domain. |
+|supportedServices|String collection| The capabilities assigned to the domain. Can include `0`, `1` or more of following values: `Email`, `Sharepoint`, `EmailInternalRelayOnly`, `OfficeCommunicationsOnline`, `SharePointDefaultDomain`, `FullRedelegation`, `SharePointPublic`, `OrgIdAuthentication`, `Yammer`, `Intune`. The values which you can add/remove using Graph API include: `Email`, `OfficeCommunicationsOnline`, `Yammer`. Not nullable.|
## Relationships
v1.0 Domainidentitysource https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/domainidentitysource.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.domainIdentitySource",
- "domainName": "String",
- "displayName": "String"
+ "displayName": "String",
+ "domainName": "String"
} ```
v1.0 Drive https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/drive.md
Users without a OneDrive license may not have a default drive available.
| bundles | [driveItem][] collection | Collection of [bundles][bundle] (albums and multi-select-shared sets of items). Only in personal OneDrive. | following | [driveItem][] collection | The list of items the user is following. Only in OneDrive for Business. | items | [driveItem][] collection | All items contained in the drive. Read-only. Nullable.
+| list | [list][] | For drives in SharePoint, the underlying document library list. Read-only. Nullable.
| root | [driveItem][] | The root folder of the drive. Read-only. | special | [driveItem][] collection | Collection of common folders available in OneDrive. Read-only. Nullable.
-| list | [list][] | For drives in SharePoint, the underlying document library list. Read-only. Nullable.
## JSON representation
The **drive** resource is derived from [**baseItem**](baseitem.md) and inherits
```json {
- "id": "string",
+
"createdBy": {"@odata.type": "microsoft.graph.identitySet"}, "createdDateTime": "string (timestamp)", "description": "string", "driveType": "personal | business | documentLibrary", "following": [{"@odata.type": "microsoft.graph.driveItem"}],
+ "id": "string",
"items": [{"@odata.type": "microsoft.graph.driveItem"}], "lastModifiedBy": {"@odata.type": "microsoft.graph.identitySet"}, "lastModifiedDateTime": "string (timestamp)",
v1.0 Driveitemversion https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/driveItemVersion.md
In the previous table, the examples use `/drive`, but there are many valid reque
| Property name | Type | Description | | :-- | : | :- |
+| **content** | Stream | The content stream for this version of the item. |
| **id** | string | The ID of the version. Read-only. | | **lastModifiedBy** | [IdentitySet](../resources/identityset.md) | Identity of the user which last modified the version. Read-only. | | **lastModifiedDateTime** | [DateTimeOffset](../resources/timestamp.md) | Date and time the version was last modified. Read-only. | | **publication** | [PublicationFacet](../resources/publicationfacet.md) | Indicates the publication status of this particular version. Read-only. | | **size** | Int64 | Indicates the size of the content stream for this version of the item. |
-| **content** | Stream | The content stream for this version of the item. |
+ ## Instance attributes
v1.0 Driveitem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/driveitem.md
The **driveItem** resource is derived from [**baseItem**][baseItem] and inherits
"versions": [ {"@odata.type": "microsoft.graph.driveItemVersion"}], /* inherited from baseItem */
- "id": "string (identifier)",
"createdBy": {"@odata.type": "microsoft.graph.identitySet"}, "createdDateTime": "String (timestamp)", "eTag": "string",
+ "id": "string (identifier)",
"lastModifiedBy": {"@odata.type": "microsoft.graph.identitySet"}, "lastModifiedDateTime": "String (timestamp)", "name": "string",
v1.0 Driverecipient https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/driverecipient.md
The recipients resource has these properties.
| Property name | Type | Description | |:--|:-|:--|
-| email | String | The email address for the recipient, if the recipient has an associated email address. |
| alias | String | The alias of the domain object, for cases where an email address is unavailable (e.g. security groups). |
+| email | String | The email address for the recipient, if the recipient has an associated email address. |
| objectId | String | The unique identifier for the recipient in the directory. | ## JSON representation
The recipients resource has these properties.
"optionalProperties": ["alias", "objectId", "email"] } --> ```json {
- "email": "string",
"alias": "string",
+ "email": "string",
"objectId": "string", } ```
v1.0 Educationassignment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/educationassignment.md
Inherits from [entity](../resources/entity.md).
|lastModifiedBy|[identitySet](identityset.md)| Who last modified the **assignment**. | |lastModifiedDateTime|DateTimeOffset|Moment when the **assignment** was last modified. 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`| |notificationChannelUrl|String|Optional field to specify the URL of the [channel](channel.md) to post the **assignment** publish notification. If not specified or null, defaults to the `General` channel. This field only applies to **assignments** where the **assignTo** value is [educationAssignmentClassRecipient](educationassignmentclassrecipient.md). Updating the **notificationChannelUrl** isn't allowed after the assignment has been published.|
+|resourcesFolderUrl|string| Folder URL where all the file resources for this **assignment** are stored.|
|status|string| Status of the **Assignment**. You can't PATCH this value. Possible values are: `draft`, `scheduled`, `published`, `assigned`.| |webUrl|string| The deep link URL for the given **assignment**.|
-|resourcesFolderUrl|string| Folder URL where all the file resources for this **assignment** are stored.|
## Relationships | Relationship | Type |Description| |:|:--|:-|
-|resources|[educationAssignmentResource](educationassignmentresource.md) collection| Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable.|
-|submissions|[educationSubmission](educationsubmission.md) collection| Once published, there is a **submission** object for each student representing their work and grade. Read-only. Nullable.|
|categories|[educationCategory](educationcategory.md) collection| When set, enables users to easily find **assignments** of a given type. Read-only. Nullable.|
+|resources|[educationAssignmentResource](educationassignmentresource.md) collection| Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable.|
|rubric|[educationRubric](educationrubric.md)|When set, the grading rubric attached to this **assignment**.|
+|submissions|[educationSubmission](educationsubmission.md) collection| Once published, there is a **submission** object for each student representing their work and grade. Read-only. Nullable.|
## JSON representation
v1.0 Educationassignmentpointsgrade https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/educationassignmentpointsgrade.md
which will add the who data to this property. The max points is stored in the **
## Properties | Property | Type |Description| |:|:--|:-|
-|points|Single|Number of points a teacher is giving this submission object.|
|gradedBy|[identitySet](identityset.md)| User who did the grading. | |gradedDateTime|DateTimeOffset| Moment in time when the grade was applied to this submission object. 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`|
+|points|Single|Number of points a teacher is giving this submission object.|
## JSON representation
The following is a JSON representation of the resource.
```json {
- "points": "Double",
"gradedBy": {"@odata.type": "microsoft.graph.identitySet"},
- "gradedDateTime": "String (timestamp)"
+ "gradedDateTime": "String (timestamp)",
+ "points": "Double"
} ```
v1.0 Educationcategory https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/educationcategory.md
A category that can be applied to assignments.
## Properties | Property | Type |Description| |:|:--|:-|
-|id|String|Unique identifier for the category.|
|displayName|String|Unique identifier for the category.|
+|id|String|Unique identifier for the category.|
## JSON representation
The following is a JSON representation of the resource.
```json {
- "id": "String (identifier)",
"displayName": "String",
+ "id": "String (identifier)"
} ```
v1.0 Educationclass https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/educationclass.md
Inherits from [entity](../resources/entity.md).
| Property | Type | Description | | :- | : | :-- |
-| id | String | Object identifier. Inherited from [entity](../resources/entity.md). |
-| displayName | String | Name of the class. |
-| mailNickname | String | Mail name for sending email to all members, if this is enabled. |
-| description | String | Description of the class. |
-| createdBy | [identitySet](../resources/identityset.md) | Entity who created the class |
| classCode | String | Class code used by the school to identify the class. |
-| externalName | String | Name of the class in the syncing system. |
+| createdBy | [identitySet](../resources/identityset.md) | Entity who created the class |
+| description | String | Description of the class. |
+| displayName | String | Name of the class. |
| externalId | String | ID of the class from the syncing system. | | externalSource | educationExternalSource | How this class was created. Possible values are: `sis`, `manual`. | | externalSourceDetail | String | The name of the external source this resources was generated from. |
+| externalName | String | Name of the class in the syncing system. |
| grade | String | Grade level of the class. |
+| id | String | Object identifier. Inherited from [entity](../resources/entity.md). |
+| mailNickname | String | Mail name for sending email to all members, if this is enabled. |
| term | [educationTerm](../resources/educationterm.md) | Term for this class. | ## Relationships
Inherits from [entity](../resources/entity.md).
| Relationship | Type | Description | | :-- | : | :-- | | assignments | [educationAssignment](educationAssignment.md) collection | All assignments associated with this class. Nullable. |
+|assignmentCategories| [educationCategory](educationcategory.md) collection | All categories associated with this class. Nullable. |
+|assignmentDefaults| [educationAssignmentDefaults](educationassignmentdefaults.md) collection | Specifies class-level defaults respected by new assignments created in the class. |
+|assignmentSettings| [educationAssignmentSettings](educationassignmentsettings.md) collection | Specifies class-level assignments settings. |
| group | [group](../resources/group.md) | The underlying Microsoft 365 group object. | | members | [educationUser](../resources/educationuser.md) collection | All users in the class. Nullable. | | schools | [educationSchool](../resources/educationschool.md) collection | All schools that this class is associated with. Nullable. | | teachers | [educationUser](../resources/educationuser.md) collection | All teachers in the class. Nullable. |
-|assignmentCategories| [educationCategory](educationcategory.md) collection | All categories associated with this class. Nullable. |
-|assignmentDefaults| [educationAssignmentDefaults](educationassignmentdefaults.md) collection | Specifies class-level defaults respected by new assignments created in the class. |
-|assignmentSettings| [educationAssignmentSettings](educationassignmentsettings.md) collection | Specifies class-level assignments settings. |
## JSON representation
The following is a JSON representation of the resource.
```json { "@odata.type": "#microsoft.graph.educationClass",
- "id": "String (identifier)",
- "displayName": "String",
- "mailNickname": "String",
"description": "String",
+ "displayName": "String",
"createdBy": { "@odata.type": "microsoft.graph.identitySet" },
The following is a JSON representation of the resource.
"externalSource": "String", "externalSourceDetail": "String", "grade": "String",
+ "id": "String (identifier)",
+ "mailNickname": "String",
"term": { "@odata.type": "microsoft.graph.educationTerm" }
v1.0 Educationcourse https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/educationcourse.md
The following is a JSON representation of the resource.
```json { "@odata.type": "#microsoft.graph.educationCourse",
- "subject": "String",
"courseNumber": "String", "description": "String", "displayName": "String",
- "externalId": "String"
+ "externalId": "String",
+ "subject": "String"
} ```
v1.0 Educationexcelresource https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/educationexcelresource.md
or submission object to which this resource belongs.
## Properties | Property | Type |Description| |:|:--|:-|
-|fileUrl|String|Pointer to the Excel file object.|
|createdBy|String|The display name of the user that created this object.| |createdDateTime|DateTimeOffset|Date time the resoruce was added.| |displayName|string|The display name of the resource.|
+|fileUrl|String|Pointer to the Excel file object.|
|lastModifiedBy|[identitySet](identityset.md)|The last user to modify the resource.| |lastModifiedDateTime|DateTimeOffset|The date and time when the resource was last modified. 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`.|
The following is a JSON representation of the resource.
```json {
- "fileUrl": "String",
"createdBy": "String (User)", "createdDateTime": "String (timestamp)", "displayName": "String",
+ "fileUrl": "String",
"lastModifiedBy": "String (User)", "lastModifiedDateTime": "String (timestamp)" }
v1.0 Educationexternalresource https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/educationexternalresource.md
This complex type allows all SDK callers to work seamlessly.
## Properties | Property | Type |Description| |:|:--|:-|
-|webUrl|String|Location of the resource. Required|
|createdBy|String|The display name of the user that created this object.| |createdDateTime|DateTimeOffset|Date time the resoruce was added.| |displayName|string|The display name of the resource.| |lastModifiedBy|[identitySet](identityset.md)|The last user to modify the resource.| |lastModifiedDateTime|DateTimeOffset|The date and time when the resource was last modified. 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`.|
+|webUrl|String|Location of the resource. Required|
## JSON representation
The following is a JSON representation of the resource.
```json {
- "webUrl": "String",
"createdBy": "String (User)", "createdDateTime": "String (timestamp)", "displayName": "String", "lastModifiedBy": "String (User)",
- "lastModifiedDateTime": "String (timestamp)"
+ "lastModifiedDateTime": "String (timestamp)",
+ "webUrl": "String"
} ```
v1.0 Educationfeedbackoutcome https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/educationfeedbackoutcome.md
Represents feedback on an [educationOutcome](educationoutcome.md) object in the
| Property | Type | Description | |:-|:|:|
-|id|String|Unique identifier for the educationFeedbackOutcome.|
|feedback|[educationFeedback](educationfeedback.md)|Teacher's written feedback to the student.|
+|id|String|Unique identifier for the educationFeedbackOutcome.|
|publishedFeedback|[educationFeedback](educationfeedback.md)|A copy of the feedback property that is made when the grade is released to the student.| ## Relationships
The following is a JSON representation of the resource.
```json {
- "id": "String (identifier)",
"feedback": {"@odata.type": "microsoft.graph.educationFeedback"},
+ "id": "String (identifier)",
"publishedFeedback": {"@odata.type": "microsoft.graph.educationFeedback"} } ```
v1.0 Educationfileresource https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/educationfileresource.md
In this case, the file isn't one of the special files (Word, Excel, and so on) b
## Properties | Property | Type |Description| |:|:--|:-|
-|fileUrl|String|Location on disk of the file resource.|
|createdBy|String|The display name of the user that created this object.| |createdDateTime|DateTimeOffset|Date time the resoruce was added.| |displayName|string|The display name of the resource.|
+|fileUrl|String|Location on disk of the file resource.|
|lastModifiedBy|[identitySet](identityset.md)|The last user to modify the resource.| |lastModifiedDateTime|DateTimeOffset|The date and time when the resource was last modified. 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`.|
The following is a JSON representation of the resource.
```json {
- "fileUrl": "String",
"createdBy": "String (User)", "createdDateTime": "String (timestamp)", "displayName": "String",
+ "fileUrl": "String",
"lastModifiedBy": "String (User)", "lastModifiedDateTime": "String (timestamp)" }
v1.0 Educationlinkresource https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/educationlinkresource.md
This resource is a link and does not have any additional data associated with it
## Properties | Property | Type |Description| |:|:--|:-|
-|link|String|URL to the resource.|
|createdBy|String|The display name of the user that created this object.| |createdDateTime|DateTimeOffset|Date time the resoruce was added.| |displayName|string|The display name of the resource.| |lastModifiedBy|[identitySet](identityset.md)|The last user to modify the resource.| |lastModifiedDateTime|DateTimeOffset|The date and time when the resource was last modified. 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`.|
+|link|String|URL to the resource.|
## JSON representation
The following is a JSON representation of the resource.
```json {
- "link": "String",
"createdBy": "String (User)", "createdDateTime": "String (timestamp)", "displayName": "String", "lastModifiedBy": "String (User)",
- "lastModifiedDateTime": "String (timestamp)"
+ "lastModifiedDateTime": "String (timestamp)",
+ "link": "String",
} ```
v1.0 Educationmediaresource https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/educationmediaresource.md
The following file types are media resources: `webm`, `mkv`, `avi`, `wmv`, `mp4`
## Properties | Property | Type |Description| |:|:--|:-|
-|fileUrl|String|Location of the file on shared point folder. Required|
|createdBy|String|The display name of the user that created this resource.| |createdDateTime|DateTimeOffset|Date time the resoruce was added.| |displayName|string|The display name of the user who added resource.|
+|fileUrl|String|Location of the file on shared point folder. Required|
|lastModifiedBy|[identitySet](identityset.md)|The last user to modify the resource| |lastModifiedDateTime|DateTimeOffset|The date and time when the resource was last modified. 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`.|
The following is a JSON representation of the resource.
```json {
- "fileUrl": "String",
"createdBy": "String (User)", "createdDateTime": "String (timestamp)", "displayName": "String",
+ "fileUrl": "String",
"lastModifiedBy": "String (User)", "lastModifiedDateTime": "String (timestamp)" }
v1.0 Educationorganization https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/educationorganization.md
The following is a JSON representation of the resource.
```json { "@odata.type": "#microsoft.graph.educationOrganization",
- "id": "String (identifier)",
"displayName": "String", "description": "String", "externalSource": "String",
- "externalSourceDetail": "String"
+ "externalSourceDetail": "String",
+ "id": "String (identifier)"
} ```
v1.0 Educationpowerpointresource https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/educationpowerpointresource.md
assignment or submission.
## Properties | Property | Type |Description| |:|:--|:-|
-|fileUrl|String|Location of the file on disk.|
|createdBy|String|The display name of the user that created this object.| |createdDateTime|DateTimeOffset|Date time the resoruce was added.| |displayName|string|The display name of the resource.|
+|fileUrl|String|Location of the file on disk.|
|lastModifiedBy|[identitySet](identityset.md)|The last user to modify the resource.| |lastModifiedDateTime|DateTimeOffset|The date and time when the resource was last modified. 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`.|
The following is a JSON representation of the resource.
```json {
- "fileUrl": "String",
"createdBy": "String (User)", "createdDateTime": "String (timestamp)", "displayName": "String",
+ "fileUrl": "String",
"lastModifiedBy": "String (User)", "lastModifiedDateTime": "String (timestamp)" }
v1.0 Educationresource https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/educationresource.md
Title: "educationResource resource type"
-description: "A base class for all resource objects in the system."
+description: "An abstract type that represents the base class for all education-related resource objects in a system."
ms.localizationpriority: medium ms.prod: "education"
doc_type: resourcePageType
Namespace: microsoft.graph
-A base class for [educationExcelResource](../resources/educationexcelresource.md), [educationFileResource](../resources/educationfileresource.md), [educationLinkResource](../resources/educationlinkresource.md), [educationPowerPointResource](../resources/educationpowerpointresource.md), [educationWordResource](../resources/educationwordresource.md), [educationMediaResource](../resources/educationmediaresource.md) and [educationExternalResource](../resources/educationexternalresource.md).
+An abstract type that represents the base class for all education-related resource objects in a system.
+
+Base type of [educationExcelResource](../resources/educationexcelresource.md), [educationFileResource](../resources/educationfileresource.md), [educationLinkResource](../resources/educationlinkresource.md), [educationPowerPointResource](../resources/educationpowerpointresource.md), [educationWordResource](../resources/educationwordresource.md), [educationMediaResource](../resources/educationmediaresource.md), [educationExternalResource](../resources/educationexternalresource.md), and [educationTeamsAppResource](../resources/educationteamsappresource.md).
An educationResource is associated with an [assignment](educationassignment.md) and/or [submission](educationsubmission.md), which represents the learning object that is being handed out or handed in. You cannot instantiate a resource directly; you must make a subclass that will represent the type of resource being used.
v1.0 Educationrubric https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/educationrubric.md
See [Education rubric overview](/graph/education-rubric-overview) for more infor
| Property | Type | Description | |:-|:|:|
-|id|String|Unique identifier for the rubric.|
|createdBy|[identitySet](identityset.md)|The user who created this resource.| |createdDateTime|DateTimeOffset|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`| |description|[itemBody](itembody.md)|The description of this rubric.| |displayName|String|The name of this rubric.| |grading|[educationAssignmentGradeType](educationassignmentgradetype.md)|The grading type of this rubric -- null for a no-points rubric, or [educationAssignmentPointsGradeType](educationassignmentpointsgradetype.md) for a points rubric.|
+|id|String|Unique identifier for the rubric.|
|lastModifiedBy|[identitySet](identityset.md)|The last user to modify the resource.| |lastModifiedDateTime|DateTimeOffset|Moment in time when the resource was last modified. 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`| |levels|[rubricLevel](rubriclevel.md) collection|The collection of levels making up this rubric.|
The following is a JSON representation of the resource.
```json {
- "id": "String (identifier)",
"createdBy": {"@odata.type": "microsoft.graph.identitySet"}, "createdDateTime": "String (timestamp)", "description": {"@odata.type": "microsoft.graph.itemBody"}, "displayName": "String", "grading": {"@odata.type": "microsoft.graph.educationAssignmentGradeType"},
+ "id": "String (identifier)",
"lastModifiedBy": {"@odata.type": "microsoft.graph.identitySet"}, "lastModifiedDateTime": "String (timestamp)", "levels": [{"@odata.type": "microsoft.graph.rubricLevel"}],
v1.0 Educationschool https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/educationschool.md
The following is a JSON representation of the resource.
```json { "@odata.type": "#microsoft.graph.educationSchool",
- "id": "String (identifier)",
- "displayName": "String",
+ "address": {
+ "@odata.type": "microsoft.graph.physicalAddress"
+ },
+ "createdBy": {
+ "@odata.type": "microsoft.graph.identitySet"
+ },
"description": "String",
+ "displayName": "String",
+ "externalId": "String",
+ "externalPrincipalId": "String",
"externalSource": "String", "externalSourceDetail": "String",
- "principalEmail": "String",
- "principalName": "String",
- "externalPrincipalId": "String",
- "lowestGrade": "String",
"highestGrade": "String",
- "schoolNumber": "String",
- "externalId": "String",
+ "id": "String (identifier)",
+ "lowestGrade": "String",
"phone": "String",
- "createdBy": {
- "@odata.type": "microsoft.graph.identitySet"
- },
- "address": {
- "@odata.type": "microsoft.graph.physicalAddress"
- }
+ "principalEmail": "String",
+ "principalName": "String",
+ "schoolNumber": "String"
} ```
v1.0 Educationstudent https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/educationstudent.md
The following is a JSON representation of the resource.
```json { "@odata.type": "#microsoft.graph.educationStudent",
- "graduationYear": "String",
- "grade": "String",
"birthDate": "DateTimeOffset",
+ "externalId": "String",
"gender": "String",
- "studentNumber": "String",
- "externalId": "String"
+ "grade": "String",
+ "graduationYear": "String",
+ "studentNumber": "String"
} ```
v1.0 Educationsubmission https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/educationsubmission.md
If [setUpResourcesFolder](../api/educationsubmission-setupResourcesFolder.md) ha
| Property | Type |Description| |:|:--|:-| |id|String|Unique identifier for the submission.|
+|reassignedBy|[identitySet](identityset.md)|User who moved the status of this submission to reassigned.|
+|reassignedDateTime|DateTimeOffset|Moment in time when the submission was reassigned. 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`|
|recipient|[educationSubmissionRecipient](educationsubmissionrecipient.md)|Who this submission is assigned to.|
+|resourcesFolderUrl|String|Folder where all file resources for this submission need to be stored.|
|returnedBy|[identitySet](identityset.md)|User who moved the status of this submission to returned.| |returnedDateTime|DateTimeOffset|Moment in time when the submission was returned. 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`|
-|resourcesFolderUrl|String|Folder where all file resources for this submission need to be stored.|
|status|string| Read-only. Possible values are: `working`, `submitted`, `released`, `returned`, and `reassigned`. Note that you must use the `Prefer: include-unknown-enum-members` request header to get the following value(s) in this [evolvable enum](/graph/best-practices-concept#handling-future-members-in-evolvable-enumerations): `reassigned`.| |submittedBy|[identitySet](identityset.md)|User who moved the resource into the submitted state.| |submittedDateTime|DateTimeOffset|Moment in time when the submission was moved into the submitted state. 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`| |unsubmittedBy|[identitySet](identityset.md)|User who moved the resource from submitted into the working state.| |unsubmittedDateTime|DateTimeOffset|Moment in time when the submission was moved from submitted into the working state. 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`|
-|reassignedBy|[identitySet](identityset.md)|User who moved the status of this submission to reassigned.|
-|reassignedDateTime|DateTimeOffset|Moment in time when the submission was reassigned. 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`|
## Relationships | Relationship | Type |Description| |:|:--|:-|
+|outcomes|[educationOutcome](educationOutcome.md) collection. Holds grades, feedback and/or rubrics information the teacher assigns to this submission|Read-Write. Nullable.|
|resources|[educationSubmissionResource](educationsubmissionresource.md) collection| Nullable.| |submittedResources|[educationSubmissionResource](educationsubmissionresource.md) collection| Read-only. Nullable.|
-|outcomes|[educationOutcome](educationOutcome.md) collection. Holds grades, feedback and/or rubrics information the teacher assigns to this submission|Read-Write. Nullable.|
## JSON representation
The following is a JSON representation of the resource.
"id":"String (identifier)", "recipient":{"@odata.type":"microsoft.graph.educationSubmissionRecipient"}, "returnedBy":{"@odata.type":"microsoft.graph.identitySet"},
- "returnedDateTime":"String (timestamp)",
+ "reassignedBy":{"@odata.type":"microsoft.graph.identitySet"},
+ "reassignedDateTime":"String (timestamp)",
"resourcesFolderUrl":"String",
+ "returnedDateTime":"String (timestamp)",
"status":"string", "submittedBy":{"@odata.type":"microsoft.graph.identitySet"}, "submittedDateTime":"String (timestamp)", "unsubmittedBy":{"@odata.type":"microsoft.graph.identitySet"},
- "unsubmittedDateTime":"String (timestamp)",
- "reassignedBy":{"@odata.type":"microsoft.graph.identitySet"},
- "reassignedDateTime":"String (timestamp)"
+ "unsubmittedDateTime":"String (timestamp)"
} ```
v1.0 Educationteacher https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/educationteacher.md
The following is a JSON representation of the resource.
```json { "@odata.type": "#microsoft.graph.educationTeacher",
- "teacherNumber": "String",
- "externalId": "String"
+ "externalId": "String",
+ "teacherNumber": "String"
} ```
v1.0 Educationteamsappresource https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/educationteamsappresource.md
+
+ Title: "educationTeamsAppResource resource type"
+description: "Corresponds to an installed Microsoft Teams app."
+
+ms.localizationpriority: medium
++
+# educationTeamsAppResource resource type
+
+Namespace: microsoft.graph
+
+Corresponds to an [installed Microsoft Teams app](teamsappinstallation.md). This allows education service users to create and share assignments with embedded Teams applications, such as YouTube or Flip.
+
+For information about using Flip for education on Microsoft Teams, see [introduction to Flip](/training/educator-center/product-guides/flip).
+
+Inherits from [educationResource](educationresource.md).
+
+## Properties
+
+| Property | Type | Description |
+|:|:|:--|
+| appIconWebUrl | String | URL that points to the icon of the app. |
+| appId | String | Teams app ID of the application. |
+| createdBy | [identitySet](identityset.md) | Identity of the user who created this resource. Inherited from **educationResource**. |
+| createdDateTime | DateTimeOffset | The date and time when the resource was added. 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 **educationResource**. |
+| displayName | String | The display name of the resource. Inherited from **educationResource**. |
+| lastModifiedBy | [identitySet](identityset.md) | Identity of the user who last modified the resource. Inherited from **educationResource**. |
+| lastModifiedDateTime | DateTimeOffset | The date and time when the resource was last modified. 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 **educationResource**. |
+| teamsEmbeddedContentUrl | String | URL for the app resource that will be opened by Teams. |
+| webUrl | String | URL for the app resource that can be opened in the browser. |
+
+## JSON representation
+
+The following is a JSON representation of the resource.
+
+<!-- {
+ "blockType": "resource",
+ "optionalProperties": [
+
+ ],
+ "@odata.type": "microsoft.graph.educationTeamsAppResource"
+}-->
+
+```json
+{
+ "appIconWebUrl": "String",
+ "appId": "String",
+ "createdBy": {"@odata.type": "microsoft.graph.identitySet"},
+ "createdDateTime": "String (timestamp)",
+ "displayName": "String",
+ "lastModifiedBy": {"@odata.type": "microsoft.graph.identitySet"},
+ "lastModifiedDateTime": "String (timestamp)",
+ "teamsEmbeddedContentUrl": "String",
+ "webUrl": "String"
+}
+```
+
+<!-- uuid: 8fcb5dbc-d5aa-4681-8e31-b001d5168d79
+2022-12-01 14:57:30 UTC -->
+<!--
+{
+ "type": "#page.annotation",
+ "description": "educationTeamsAppResource resource",
+ "keywords": "",
+ "section": "documentation",
+ "tocPath": "",
+ "suppressions": []
+}
+-->
v1.0 Educationterm https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/educationterm.md
A term. This represents a designated portion of the academic year. It is used wi
| Property | Type | Description | | :- | :-- | :-- | | displayName | String | Display name of the term. |
+| endDate | Date | End of the term. |
| externalId | String | ID of term in the syncing system. | | startDate | Date | Start of the term. |
-| endDate | Date | End of the term. |
## Relationships
The following is a JSON representation of the resource.
```json { "@odata.type": "#microsoft.graph.educationTerm",
- "externalId": "String",
- "startDate": "Date",
+ "displayName": "String",
"endDate": "Date",
- "displayName": "String"
+ "externalId": "String",
+ "startDate": "Date"
} ```
v1.0 Educationuser https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/educationuser.md
The following is a JSON representation of the resource.
```json { "@odata.type": "#microsoft.graph.educationUser",
- "id": "String (identifier)",
- "primaryRole": "String",
- "middleName": "String",
- "externalSource": "String",
- "externalSourceDetail": "String",
- "residenceAddress": {
- "@odata.type": "microsoft.graph.physicalAddress"
- },
- "mailingAddress": {
- "@odata.type": "microsoft.graph.physicalAddress"
- },
- "student": {
- "@odata.type": "microsoft.graph.educationStudent"
- },
- "teacher": {
- "@odata.type": "microsoft.graph.educationTeacher"
- },
- "createdBy": {
- "@odata.type": "microsoft.graph.identitySet"
- },
"accountEnabled": "Boolean", "assignedLicenses": [ {
The following is a JSON representation of the resource.
} ], "businessPhones": ["String"],
+ "createdBy": {
+ "@odata.type": "microsoft.graph.identitySet"
+ },
"department": "String", "displayName": "String",
+ "externalSource": "String",
+ "externalSourceDetail": "String",
"givenName": "String",
+ "id": "String (identifier)",
"mail": "String",
+ "mailingAddress": {
+ "@odata.type": "microsoft.graph.physicalAddress"
+ },
"mailNickname": "String",
+ "middleName": "String",
"mobilePhone": "String",
+ "officeLocation": "String",
+ "onPremisesInfo": {
+ "@odata.type": "microsoft.graph.educationOnPremisesInfo"
+ },
"passwordPolicies": "String", "passwordProfile": { "@odata.type": "microsoft.graph.passwordProfile" },
- "officeLocation": "String",
"preferredLanguage": "String",
+ "primaryRole": "String",
"provisionedPlans": [ { "@odata.type": "microsoft.graph.provisionedPlan" } ], "refreshTokensValidFromDateTime": "String (timestamp)",
+ "residenceAddress": {
+ "@odata.type": "microsoft.graph.physicalAddress"
+ },
"showInAddressList": "Boolean",
+ "student": {
+ "@odata.type": "microsoft.graph.educationStudent"
+ },
"surname": "String",
+ "teacher": {
+ "@odata.type": "microsoft.graph.educationTeacher"
+ },
"usageLocation": "String", "userPrincipalName": "String",
- "userType": "String",
- "onPremisesInfo": {
- "@odata.type": "microsoft.graph.educationOnPremisesInfo"
- }
+ "userType": "String"
} ```
v1.0 Educationwordresource https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/educationwordresource.md
assignment or submission.
## Properties | Property | Type |Description| |:|:--|:-|
-|fileUrl|String|Location of the file on disk.|
|createdBy|String|The display name of the user that created this object.| |createdDateTime|DateTimeOffset|Date time the resoruce was added.| |displayName|string|The display name of the resource.|
+|fileUrl|String|Location of the file on disk.|
|lastModifiedBy|[identitySet](identityset.md)|The last user to modify the resource.| |lastModifiedDateTime|DateTimeOffset|The date and time when the resource was last modified. 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`.|
The following is a JSON representation of the resource.
```json {
- "fileUrl": "String",
"createdBy": "String (User)", "createdDateTime": "String (timestamp)", "displayName": "String",
+ "fileUrl": "String",
"lastModifiedBy": "String (User)", "lastModifiedDateTime": "String (timestamp)" }
v1.0 Emailfileassessmentrequest https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/emailFileAssessmentRequest.md
The email file can be an .eml file type.
|:-|:|:| |contentData|String|Base64 encoded .eml email file content. The file content cannot fetch back because it isn't stored.| |destinationRoutingReason|[mailDestinationRoutingReason](enums.md#maildestinationroutingreason-values)|The reason for mail routed to its destination. Possible values are: `none`, `mailFlowRule`, `safeSender`, `blockedSender`, `advancedSpamFiltering`, `domainAllowList`, `domainBlockList`, `notInAddressBook`, `firstTimeSender`, `autoPurgeToInbox`, `autoPurgeToJunk`, `autoPurgeToDeleted`, `outbound`, `notJunk`, `junk`.|
-|recipientEmail|String|The mail recipient whose policies are used to assess the mail.|
|category|[threatCategory](enums.md#threatcategory-values)|The threat category. Possible values are: `spam`, `phishing`, `malware`.| |contentType|[threatAssessmentContentType](enums.md#threatassessmentcontenttype-values)|The content type of threat assessment. Possible values are: `mail`, `url`, `file`.| |createdBy|[identitySet](identityset.md)|The threat assessment request creator.| |createdDateTime|DateTimeOffset|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`.| |expectedAssessment|[threatExpectedAssessment](enums.md#threatexpectedassessment-values)|The expected assessment from submitter. Possible values are: `block`, `unblock`.| |id|String|The threat assessment request ID is a globally unique identifier (GUID).|
+|recipientEmail|String|The mail recipient whose policies are used to assess the mail.|
|requestSource|[threatAssessmentRequestSource](enums.md#threatassessmentrequestsource-values)|The source of threat assessment request. Possible values are: `administrator`.| |status|[threatAssessmentStatus](enums.md#threatassessmentstatus-values)|The assessment process status. Possible values are: `pending`, `completed`.|
The following is a JSON representation of the resource.
```json {
- "contentData": "String",
- "destinationRoutingReason": "String",
- "recipientEmail": "String",
"category": "String",
+ "contentData": "String",
"contentType": "String", "createdBy": {"@odata.type": "microsoft.graph.identitySet"}, "createdDateTime": "String (timestamp)",
+ "destinationRoutingReason": "String",
"expectedAssessment": "String", "id": "String (identifier)",
+ "recipientEmail": "String",
"requestSource": "String", "status": "String" }
v1.0 Emailauthenticationmethod https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/emailauthenticationmethod.md
Namespace: microsoft.graph
Represents an email address registered to a user. Email as an authentication method is available only for self-service password reset (SSPR). Users may only have one email authentication method.
+This is a derived type that inherits from the [authenticationMethod](authenticationmethod.md) resource type.
## Methods |Method|Return type|Description|
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.emailAuthenticationMethod",
- "id": "String (identifier)",
- "emailAddress": "String"
+ "emailAddress": "String",
+ "id": "String (identifier)"
} ```
v1.0 Emailauthenticationmethodconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/emailauthenticationmethodconfiguration.md
Represents this tenant's email OTP authentication methods policy. Authentication
|Property|Type|Description| |:|:|:|
+|allowExternalIdToUseEmailOtp|externalEmailOtpState|Determines whether email OTP is usable by external users for authentication. Possible values are: `default`, `enabled`, `disabled`, `unknownFutureValue`. Tenants in the `default` state who did not use public preview will automatically have email OTP enabled beginning in October 2021.|
|id|String|The authentication method policy identifier. Inherited from [authenticationMethodConfiguration](../resources/authenticationmethodconfiguration.md).| |state|authenticationMethodState|Indicates whether this authentication method is enabled or not. Possible values are: `enabled`, `disabled`.|
-|allowExternalIdToUseEmailOtp|externalEmailOtpState|Determines whether email OTP is usable by external users for authentication. Possible values are: `default`, `enabled`, `disabled`, `unknownFutureValue`. Tenants in the `default` state who did not use public preview will automatically have email OTP enabled beginning in October 2021.|
## Relationships |Relationship|Type|Description| |:|:|:|
-|includeTargets|[authenticationMethodTarget](../resources/authenticationmethodtarget.md) collection|A collection of users or groups who are enabled to use the authentication method.|
+|includeTargets|[authenticationMethodTarget](../resources/authenticationmethodtarget.md) collection|A collection of groups that are enabled to use the authentication method.|
## JSON representation
The following is a JSON representation of the resource.
```json { "@odata.type": "#microsoft.graph.emailAuthenticationMethodConfiguration",
- "id": "String (identifier)",
- "state": "String",
"allowExternalIdToUseEmailOtp": "String",
- "includeTargets": [ { "@odata.type": "microsoft.graph.authenticationMethodTarget" } ]
+ "id": "String (identifier)",
+ "includeTargets": [ { "@odata.type": "microsoft.graph.authenticationMethodTarget" } ],
+ "state": "String"
} ```
v1.0 Entitlementmanagement Overview https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/entitlementmanagement-overview.md
ms.localizationpriority: medium
ms.prod: "governance" doc_type: "conceptualPageType" Last updated : 11/01/2022 # Working with the Azure AD entitlement management API
v1.0 Entitlementmanagementschedule https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/entitlementmanagementschedule.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.entitlementManagementSchedule",
- "startDateTime": "String (timestamp)",
"expiration": { "@odata.type": "microsoft.graph.expirationPattern" }, "recurrence": { "@odata.type": "microsoft.graph.patternedRecurrence"
- }
+ },
+ "startDateTime": "String (timestamp)"
} ```
v1.0 Entitlementmanagementsettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/entitlementmanagementsettings.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.entitlementManagementSettings",
- "id": "String",
+ "durationUntilExternalUserDeletedAfterBlocked": "String (duration)",
"externalUserLifecycleAction": "String",
- "durationUntilExternalUserDeletedAfterBlocked": "String (duration)"
+ "id": "String"
} ```
v1.0 Enums Security https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/enums-security.md
+
+ Title: "Security enum values"
+description: "Microsoft Graph security subnamespace enumeration values"
+ms.localizationpriority: medium
+++
+# Security enum values
+
+Namespace: microsoft.graph.security
+
+### detectionStatus values
+
+| Member
+|:--
+| detected
+| blocked
+| prevented
+| unknownFutureValue
++
+<!--
+{
+ "type": "#page.annotation",
+ "namespace": "microsoft.graph.security"
+}
+-->
v1.0 Expirationpattern https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/expirationpattern.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.expirationPattern",
- "endDateTime": "String (timestamp)",
"duration": "String (duration)",
+ "endDateTime": "String (timestamp)",
"type": "String" } ```
v1.0 Extensionproperty https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/extensionproperty.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.extensionProperty",
- "id": "String (identifier)",
- "deletedDateTime": "String (timestamp)",
"appDisplayName": "String",
- "name": "String",
"dataType": "String",
+ "deletedDateTime": "String (timestamp)",
+ "id": "String (identifier)",
"isSyncedFromOnPremises": "Boolean",
+ "name": "String",
"targetObjects": [ "String" ]
v1.0 Extensionschemaproperty https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/extensionschemaproperty.md
Title: "extensionSchemaProperty resource type"
description: "Use the **extensionSchemaProperty** resource to define a property's name and its type, as part of a schemaExtension definition." ms.localizationpriority: medium doc_type: resourcePageType
v1.0 Externalconnectors Acl https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/externalconnectors-acl.md
The following is a JSON representation of the resource.
--> ``` json {
+ "accessType": "String",
"type": "String",
- "value": "String",
- "accessType": "String"
+ "value": "String"
} ```
v1.0 Externalconnectors Externalconnection https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/externalconnectors-externalconnection.md
The following is a JSON representation of the resource.
--> ``` json {
+ "description": "String",
"id": "String (identifier)", "name": "String",
- "description": "String",
"state": "String" } ```
v1.0 Externalconnectors Externalgroup https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/externalconnectors-externalgroup.md
Examples of external groups are business units and work teams.
| Property | Type | Description | |:|:-|:-|
-| id | String | The unique ID of the external group within a connection. It must be alphanumeric and can be up to 128 characters long. |
+| description | String | The description of the external group. Optional. |
| displayName | String | The friendly name of the external group. Optional. |
-| description | String | The description of the external group. Optional.
+| id | String | The unique ID of the external group within a connection. It must be alphanumeric and can be up to 128 characters long. |
## Relationships
The following is a JSON representation of the resource.
--> ``` json {
- "id": "String (identifier)",
+ "description": "String",
"displayName": "String",
- "description": "String"
+ "id": "String (identifier)"
} ```
v1.0 Externalconnectors Externalitem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/externalconnectors-externalitem.md
The following is a JSON representation of the resource.
"accessType": "grant" } ],
+ "content": {
+ "@odata.type": "microsoft.graph.externalConnectors.externalItemContent"
+ },
"id": "String (identifier)", "properties": { "@odata.type": "microsoft.graph.externalConnectors.properties"
- },
- "content": {
- "@odata.type": "microsoft.graph.externalConnectors.externalItemContent"
} } ```
v1.0 Externalconnectors Externalitemcontent https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/externalconnectors-externalitemcontent.md
The following is a JSON representation of the resource.
--> ``` json {
- "value": "String",
- "type": "String"
+ "type": "String",
+ "value": "String"
} ```
v1.0 Externalconnectors Property https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/externalconnectors-property.md
The following is a JSON representation of the resource.
--> ``` json {
- "name": "String",
- "type": "String",
- "isSearchable": "Boolean",
- "isRetrievable": "Boolean",
- "isQueryable": "Boolean",
- "isRefinable": "Boolean",
"aliases": [ "String" ],
+ "isQueryable": "Boolean",
+ "isRefinable": "Boolean",
+ "isRetrievable": "Boolean",
+ "isSearchable": "Boolean",
"labels": [ "String"
- ]
+ ],
+ "name": "String",
+ "type": "String"
} ```
v1.0 Externaldomainfederation https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/externaldomainfederation.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.externalDomainFederation",
- "issuerUri": "String",
+ "displayName": "String",
"domainName": "String",
- "displayName": "String"
+ "issuerUri": "String"
} ```
v1.0 Featuretarget https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/featuretarget.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.featureTarget",
- "targetType": "String",
- "id": "String (identifier)"
+ "id": "String (identifier)",
+ "targetType": "String"
} ```
v1.0 Federatedidentitycredential https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/federatedidentitycredential.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.federatedIdentityCredential",
- "name": "String",
- "issuer": "String",
- "subject": "String",
- "description": "String",
"audiences": [ "String"
- ]
+ ],
+ "description": "String",
+ "issuer": "String",
+ "name": "String",
+ "subject": "String"
} ```
v1.0 Federatedidentitycredentials Overview https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/federatedidentitycredentials-overview.md
ms.localizationpriority: medium ms.prod: "applications" doc_type: conceptualPageType Last updated : 08/03/2022 # Overview of federated identity credentials in Azure Active Directory
v1.0 Fido2authenticationmethod https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/fido2authenticationmethod.md
Namespace: microsoft.graph
A representation of a FIDO2 security key registered to a user. FIDO2 is a sign-in authentication method.
+This is a derived type that inherits from the [authenticationMethod](authenticationmethod.md) resource type.
## Methods |Method|Return type|Description|
A representation of a FIDO2 security key registered to a user. FIDO2 is a sign-i
## Properties |Property|Type|Description| |:|:|:|
-|id|String|The authentication method identifier.|
-|displayName|String|The display name of the key as given by the user.|
-|createdDateTime|DateTimeOffset|The timestamp when this key was registered to the user.|
|aaGuid|String|Authenticator Attestation GUID, an identifier that indicates the type (e.g. make and model) of the authenticator.|
-|model|String|The manufacturer-assigned model of the FIDO2 security key.|
|attestationCertificates|String collection|The attestation certificate(s) attached to this security key.| |attestationLevel|attestationLevel|The attestation level of this FIDO2 security key. Possible values are: `attested`, or `notAttested`.|-
+|createdDateTime|DateTimeOffset|The timestamp when this key was registered to the user.|
+|displayName|String|The display name of the key as given by the user.|
+|id|String|The authentication method identifier.|
+|model|String|The manufacturer-assigned model of the FIDO2 security key.|
## Relationships None.
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.fido2AuthenticationMethod",
- "id": "String (identifier)",
- "displayName": "String",
- "createdDateTime": "String (timestamp)",
"aaGuid": "String",
- "model": "String",
"attestationCertificates": [ "String" ],
- "attestationLevel": "String"
+ "attestationLevel": "String",
+ "createdDateTime": "String (timestamp)",
+ "displayName": "String",
+ "id": "String (identifier)",
+ "model": "String"
} ```
v1.0 Fido2authenticationmethodconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/fido2authenticationmethodconfiguration.md
Represents a FIDO2 authentication methods policy. Authentication methods policie
## Relationships |Relationship|Type|Description| |:|:|:|
-|includeTargets|[authenticationMethodTarget](../resources/authenticationmethodtarget.md) collection|A collection of users or groups who are enabled to use the authentication method.|
+|includeTargets|[authenticationMethodTarget](../resources/authenticationmethodtarget.md) collection|A collection of groups that are enabled to use the authentication method.|
## JSON representation The following is a JSON representation of the resource.
The following is a JSON representation of the resource.
{ "@odata.type": "#microsoft.graph.fido2AuthenticationMethodConfiguration", "id": "String (identifier)",
- "state": "String",
- "isSelfServiceRegistrationAllowed": "Boolean",
+ "includeTargets": [ { "@odata.type": "microsoft.graph.authenticationMethodTarget" } ],
"isAttestationEnforced": "Boolean",
+ "isSelfServiceRegistrationAllowed": "Boolean",
"keyRestrictions": { "@odata.type": "microsoft.graph.fido2KeyRestrictions" },
- "includeTargets": [ { "@odata.type": "microsoft.graph.authenticationMethodTarget" } ]
+ "state": "String"
} ```
v1.0 Fido2keyrestrictions https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/fido2keyrestrictions.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.fido2KeyRestrictions",
- "isEnforced": "Boolean",
- "enforcementType": "String",
"aaGuids": [ "String"
- ]
+ ],
+ "enforcementType": "String",
+ "isEnforced": "Boolean"
} ```
v1.0 Fieldvalueset https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/fieldvalueset.md
Here is a JSON representation of a **fieldValueSet** resource.
{ "Author": "Brad Cleaver", "AuthorLookupId": "13",
- "Name": "Kangaroos and Wallabies: A Deep Dive",
"Color": "Red",
+ "Name": "Kangaroos and Wallabies: A Deep Dive",
"Quantity": 350, } ```
v1.0 Fileassessmentrequest https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/fileassessmentrequest.md
The file can be a text file or Word document or binary file received in an email
| Property | Type | Description | |:-|:|:|
-|contentData|String|Base64 encoded file content. The file content cannot fetch back because it isn't stored.|
-|fileName|String|The file name.|
|category|[threatCategory](enums.md#threatcategory-values)|The threat category. Possible values are: `spam`, `phishing`, `malware`.|
+|contentData|String|Base64 encoded file content. The file content cannot fetch back because it isn't stored.|
|contentType|[threatAssessmentContentType](enums.md#threatassessmentcontenttype-values)|The content type of threat assessment. Possible values are: `mail`, `url`, `file`.| |createdBy|[identitySet](identityset.md)|The threat assessment request creator.| |createdDateTime|DateTimeOffset|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`.| |expectedAssessment|[threatExpectedAssessment](enums.md#threatexpectedassessment-values)|The expected assessment from submitter. Possible values are: `block`, `unblock`.|
+|fileName|String|The file name.|
|id|String|The threat assessment request ID is a globally unique identifier (GUID).| |requestSource|[threatAssessmentRequestSource](enums.md#threatassessmentrequestsource-values)|The source of threat assessment request. Possible values are: `administrator`.| |status|[threatAssessmentStatus](enums.md#threatassessmentstatus-values)|The assessment process status. Possible values are: `pending`, `completed`.|
The following is a JSON representation of the resource.
```json { "contentData": "String",
- "fileName": "String",
"category": "String", "contentType": "String", "createdBy": {"@odata.type": "microsoft.graph.identitySet"}, "createdDateTime": "String (timestamp)", "expectedAssessment": "String",
+ "fileName": "String",
"id": "String (identifier)", "requestSource": "String", "status": "String"
v1.0 Followupflag https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/followupflag.md
Title: "followupFlag resource type"
description: "Allows setting a flag in an item for the user to follow up on later. " ms.localizationpriority: medium doc_type: resourcePageType
v1.0 Genericerror https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/genericerror.md
Title: "genericError resource type"
description: "A general-purpose error." ms.localizationpriority: medium doc_type: resourcePageType
A general-purpose error.
| Property | Type | Description | |:|:--|:|
-| message | String | The error message. |
| code | String | The error code. |
+| message | String | The error message. |
## JSON representation
Here is a JSON representation of the resource.
```json {
- "message": "String",
- "code": "String"
+ "code": "String",
+ "message": "String"
} ```
v1.0 Group https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/group.md
This resource supports:
| [Update group](../api/group-update.md) | None | Update the properties of a group object. | | [Delete group](../api/group-delete.md) | None | Delete group object. | | [delta](../api/group-delta.md) | group collection | Get incremental changes for groups. |
-| [Add members](../api/group-post-members.md) | None | Add a user or group to this group by posting to the **members** navigation property (supported for security groups and Microsoft 365 groups only). |
+| [Add members](../api/group-post-members.md) | None | Add a member to this group by posting to the **members** navigation property (supported for security groups and Microsoft 365 groups only). |
| [Add owners](../api/group-post-owners.md) | None | Add a new owner for the group by posting to the **owners** navigation property (supported for security groups and Microsoft 365 groups only). |
-| [Create setting](../api/group-post-settings.md) | [groupSetting](groupsetting.md) | Create a setting object based on a groupSettingTemplate. The POST request must provide settingValues for all the settings defined in the template. Only groups specific templates may be used for this operation. |
-| [Delete setting](../api/groupsetting-delete.md) | None | Delete a setting object. |
-| [Get setting](../api/groupsetting-get.md) | [groupSetting](groupsetting.md) | Read properties of a specific setting object. |
| [List groupLifecyclePolicies](../api/group-list-grouplifecyclepolicies.md) | [groupLifecyclePolicy](grouplifecyclepolicy.md) collection | List group lifecycle policies. | | [List members](../api/group-list-members.md) | [directoryObject](directoryobject.md) collection | Get the direct members of this group from the **members** navigation property. | | [List owners](../api/group-list-owners.md) | [directoryObject](directoryobject.md) collection | Get the owners of the group from the **owners** navigation property. |
-| [List settings](../api/group-list-settings.md) | [groupSetting](groupsetting.md) collection | List properties of all setting objects. |
| [List transitive members](../api/group-list-transitivemembers.md) | [directoryObject](directoryobject.md) collection | Get the users, groups and devices that are members, including nested members of this group. | | [List transitive memberOf](../api/group-list-transitivememberof.md) | [directoryObject](directoryobject.md) collection | List the groups that this group is a member of. This operation is transitive and includes the groups that this group is a nested member of. | | [Remove member](../api/group-delete-members.md) | None | Remove a member from a Microsoft 365 group or a security group through the **members** navigation property. | | [Remove owner](../api/group-delete-owners.md) | None | Remove an owner from a Microsoft 365 group or a security group through the **owners** navigation property. |
-| [Update setting](../api/groupsetting-update.md) | [groupSetting](groupsetting.md) | Update a setting object. |
| [assignLicense](../api/group-assignlicense.md) | [group](group.md) | Add or remove subscriptions for the group. You can also enable and disable specific plans associated with a subscription. | | [renew](../api/group-renew.md) | Boolean | Renews a group's expiration. When a group is renewed, the group expiration is extended by the number of days defined in the policy. | | [validateProperties](../api/group-validateproperties.md) | JSON | Validate that a Microsoft 365 group's display name or mail nickname complies with naming policies. |
This resource supports:
| hideFromOutlookClients | Boolean | True if the group is not displayed in Outlook clients, such as Outlook for Windows and Outlook on the web; otherwise, false. Default value is `false`. <br><br>Returned only on `$select`. Supported only on the Get group API (`GET /groups/{ID}`). | | id | String | The unique identifier for the group. <br><br>Returned by default. Inherited from [directoryObject](directoryobject.md). Key. Not nullable. Read-only.<br><br>Supports `$filter` (`eq`, `ne`, `not`, `in`). | isArchived | Boolean | When a group is associated with a team this property determines whether the team is in read-only mode.<br/>To read this property, use the `/group/{groupId}/team` endpoint or the [Get team](../api/team-get.md) API. To update this property, use the [archiveTeam](../api/team-archive.md) and [unarchiveTeam](../api/team-unarchive.md) APIs. |
-| isAssignableToRole | Boolean | Indicates whether this group can be assigned to an Azure Active Directory role or not. Optional. <br><br>This property can only be set while creating the group and is immutable. If set to `true`, the **securityEnabled** property must also be set to `true` and the group cannot be a dynamic group (that is, **groupTypes** cannot contain `DynamicMembership`). <br/><br/>Only callers in Global Administrator and Privileged Role Administrator roles can set this property. The caller must also be assigned the _RoleManagement.ReadWrite.Directory_ permission to set this property or update the membership of such groups. For more, see [Using a group to manage Azure AD role assignments](https://go.microsoft.com/fwlink/?linkid=2103037)<br><br>Returned by default. Supports `$filter` (`eq`, `ne`, `not`). |
+| isAssignableToRole | Boolean | Indicates whether this group can be assigned to an Azure Active Directory role or not. Optional. <br><br>This property can only be set while creating the group and is immutable. If set to `true`, the **securityEnabled** property must also be set to `true`, **visibility** must be `Hidden`, and the group cannot be a dynamic group (that is, **groupTypes** cannot contain `DynamicMembership`). <br/><br/>Only callers in Global Administrator and Privileged Role Administrator roles can set this property. The caller must also be assigned the _RoleManagement.ReadWrite.Directory_ permission to set this property or update the membership of such groups. For more, see [Using a group to manage Azure AD role assignments](https://go.microsoft.com/fwlink/?linkid=2103037)<br><br>Using this feature requires a Azure AD Premium P1 license. Returned by default. Supports `$filter` (`eq`, `ne`, `not`). |
| isSubscribedByMail | Boolean | Indicates whether the signed-in user is subscribed to receive email conversations. Default value is `true`. <br><br>Returned only on `$select`. Supported only on the Get group API (`GET /groups/{ID}`). | | licenseProcessingState | String | Indicates status of the group license assignment to all members of the group. Default value is `false`. Read-only. Possible values: `QueuedForProcessing`, `ProcessingInProgress`, and `ProcessingComplete`.<br><br>Returned only on `$select`. Read-only. | | mail | String | The SMTP address for the group, for example, "serviceadmins@contoso.onmicrosoft.com". <br><br>Returned by default. Read-only. Supports `$filter` (`eq`, `ne`, `not`, `ge`, `le`, `in`, `startsWith`, and `eq` on `null` values). |
The following is a JSON representation of the resource.
```json { "allowExternalSenders": false,
+
+ "acceptedSenders": [{ "@odata.type": "microsoft.graph.directoryObject" }],
"assignedLicenses": [{ "@odata.type": "microsoft.graph.assignedLicense" }], "autoSubscribeNewMembers": true,
+ "calendar": { "@odata.type": "microsoft.graph.calendar" },
+ "calendarView": [{ "@odata.type": "microsoft.graph.event" }],
"classification": "String",
+ "conversations": [{ "@odata.type": "microsoft.graph.conversation" }],
"createdDateTime": "String (timestamp)",
+ "createdOnBehalfOf": { "@odata.type": "microsoft.graph.directoryObject" },
"description": "String", "displayName": "String",
+ "drive": { "@odata.type": "microsoft.graph.drive" },
+ "events": [{ "@odata.type": "microsoft.graph.event" }],
"groupTypes": ["String"], "hasMembersWithLicenseErrors": "Boolean", "hideFromAddressLists": false, "hideFromOutlookClients": false, "id": "String (identifier)",
- "isSubscribedByMail": true,
"isAssignableRole": false,
+ "isSubscribedByMail": true,
"licenseProcessingState": "String", "mail": "String", "mailEnabled": true, "mailNickname": "String",
+ "memberOf": [{ "@odata.type": "microsoft.graph.directoryObject" }],
+ "members": [{ "@odata.type": "microsoft.graph.directoryObject" }],
+ "membersWithLicenseErrors": [{ "@odata.type": "microsoft.graph.user" }],
"onPremisesLastSyncDateTime": "String (timestamp)", "onPremisesProvisioningErrors": [ { "@odata.type": "microsoft.graph.onPremisesProvisioningError" } ], "onPremisesSecurityIdentifier": "String", "onPremisesSyncEnabled": true,
+ "owners": [{ "@odata.type": "microsoft.graph.directoryObject" }],
"preferredDataLocation": "String", "proxyAddresses": ["String"],
+ "photo": { "@odata.type": "microsoft.graph.profilePhoto" },
+ "rejectedSenders": [{ "@odata.type": "microsoft.graph.directoryObject" }],
"renewedDateTime": "String (timestamp)", "resourceBehaviorOptions": ["String"], "resourceProvisioningOptions": ["String"], "securityEnabled": true, "securityIdentifier": "String",
- "unseenCount": 1024,
- "visibility": "String",
- "acceptedSenders": [{ "@odata.type": "microsoft.graph.directoryObject" }],
- "calendar": { "@odata.type": "microsoft.graph.calendar" },
- "calendarView": [{ "@odata.type": "microsoft.graph.event" }],
- "conversations": [{ "@odata.type": "microsoft.graph.conversation" }],
- "createdOnBehalfOf": { "@odata.type": "microsoft.graph.directoryObject" },
- "drive": { "@odata.type": "microsoft.graph.drive" },
- "events": [{ "@odata.type": "microsoft.graph.event" }],
- "memberOf": [{ "@odata.type": "microsoft.graph.directoryObject" }],
- "members": [{ "@odata.type": "microsoft.graph.directoryObject" }],
- "membersWithLicenseErrors": [{ "@odata.type": "microsoft.graph.user" }],
- "owners": [{ "@odata.type": "microsoft.graph.directoryObject" }],
- "photo": { "@odata.type": "microsoft.graph.profilePhoto" },
- "rejectedSenders": [{ "@odata.type": "microsoft.graph.directoryObject" }],
"sites": [{ "@odata.type": "microsoft.graph.site" }],
- "threads": [{ "@odata.type": "microsoft.graph.conversationThread" }]
+ "threads": [{ "@odata.type": "microsoft.graph.conversationThread" }],
+ "unseenCount": 1024,
+ "visibility": "String"
} ```
v1.0 Groups Overview https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/groups-overview.md
ms.localizationpriority: high ms.prod: "groups" doc_type: conceptualPageType Last updated : 11/16/2022 # Working with groups in Microsoft Graph
To learn more about Microsoft 365 groups and the administrator experiences, see
**Mail-enabled security groups** are used in the same way as security groups, but can be used to send emails to group members. Mail-enabled security groups can't be created or updated through the API; instead, they're read-only. Learn more in the [Manage mail-enabled security groups Exchange article](/Exchange/recipients/mail-enabled-security-groups).
-The following JSON object shows a sample representation of a group when you call the Microsoft Graph groups API.
+The following JSON object shows a sample representation of a security group when you call the Microsoft Graph groups API.
```http HTTP/1.1 201 Created
Content-type: application/json
} ```
-## Dynamic membership
+## Group membership
+
+Not all object types can be members of both Microsoft 365 and security groups.
++
+### Dynamic membership
+
+Microsoft 365 and security groups can have dynamic membership rules that automatically add or remove members from the group based on the principal's properties. For example, a "Marketing employees" group can define a dynamic membership rule that only users with their department property set to "Marketing" can be members of the group. In this case, any user's who leave the department are automatically removed from the group.
+
+Only users and devices are supported as members in dynamic membership groups. You can create a dynamic membership group for devices or users, but not both.
+
+The dynamic membership rules are specified through the **membershipRule** property during group creation. A single expression follows this syntax: `Property Operator Value`.
+
+- The `Property` is defined following this syntax: `object.property`. For example `user.department` or `device.accountEnabled`.
+- The rule syntax supports various operators. For more information, see [Supported expression operators](/azure/active-directory/enterprise-users/groups-dynamic-membership).
+- A `Value` of type String must be enclosed in double quotes ("). You must use a backslash to escape any double quotes inside double quotes. This requirement doesn't apply when using the rule builder in the Azure portal because the expression isn't enclosed in double quotes.
-All types of groups can have dynamic membership rules that automatically add or remove members from the group based on the principal's properties. For example, a "Marketing employees" group can define a dynamic membership rule that only users with their department property set to "Marketing" can be members of the group. In this case, any user's who leave the department are automatically removed from the group.
+The following example shows shows a complete rule.
-The dynamic membership rules are specified through the **membershipRule** property during group creation. For example, `"membershipRule": 'user.department -eq "Marketing"'`. The **groupType** property must also include `"DynamicMembership"` value in the collection. The dynamic membership rule can be turned on or off through the **membershipRuleProcessingState** property.
+`"membershipRule": "user.department -eq \"Marketing\""`.
+
+You can combine multiple expressions in a rule using the `and`, `or`, and `not` operators.
+
+The **groupType** property must also include the `"DynamicMembership"` value in the collection. The dynamic membership rule can be turned on or off through the **membershipRuleProcessingState** property. You can update a group with assigned membership to have dynamic membership.
The following example request creates a new Microsoft 365 group that can only include employees in the Marketing department.
+<!-- {
+ "blockType": "request",
+ "name": "groups_overview_createdynamicgroup"
+}-->
```http POST https://graph.microsoft.com/v1.0/groups Content-type: application/json
Content-type: application/json
"mailEnabled": true, "mailNickname": "marketing", "securityEnabled": false,
- "membershipRule": "'user.department -eq 'Marketing'",
+ "membershipRule": "user.department -eq \"Marketing\"",
"membershipRuleProcessingState": "on" } ```
+The request returns a `201 Created` response code and the newly created group object in the response body.
+
+>**Note:** The response object shown here might be shortened for readability.
+<!-- {
+ "blockType": "response",
+ "truncated": true,
+ "@odata.type": "microsoft.graph.group"
+} -->
+```http
+HTTP/1.1 201 Created
+Content-type: application/json
+
+{
+ "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#groups/$entity",
+ "id": "6f7cd676-5445-47c4-9c2b-c47da4671da2",
+ "createdDateTime": "2023-01-20T07:00:31Z",
+ "description": "Marketing department folks",
+ "displayName": "Marketing department",
+ "groupTypes": [
+ "Unified",
+ "DynamicMembership"
+ ],
+ "mail": "marketing@contoso.com",
+ "mailEnabled": true,
+ "mailNickname": "marketing",
+ "membershipRule": "user.department -eq \"Marketing\"",
+ "membershipRuleProcessingState": "On"
+}
+```
+ To learn more about formulating membership rules, see [Dynamic membership rules for groups in Azure Active Directory](/azure/active-directory/enterprise-users/groups-dynamic-membership).
-> **Note**: Dynamic membership rules requires the tenant to have at least an Azure AD Premium P1 license for each unique user that is a member of one or more dynamic groups.
+> [!NOTE]
+> Dynamic membership rules requires the tenant to have at least an Azure AD Premium P1 license for each unique user that is a member of one or more dynamic groups.
## Other types of groups
-Microsoft 365 groups in Yammer are used to facilitate user collaboration through Yammer posts. This type of group can be returned through a read request, but their posts can't be accessed through the API. When Yammer posts and conversation feeds are enabled on a group, default Microsoft 365 group conversations are disabled. To learn more, see [Yammer developer API docs](https://developer.yammer.com/docs).
+Microsoft 365 groups in Yammer are used to facilitate user collaboration through Yammer posts. This type of group can be returned through a read request, but their posts can't be accessed through the API. When Yammer posts and conversation feeds are enabled on a group, default Microsoft 365 group conversations are disabled. To learn more, see [Yammer developer API docs](/rest/api/yammer).
## Group search limitations for guest users in organizations
v1.0 Hashes https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/hashes.md
Here is a JSON representation of the resource.
| Property | Type | Description | |:--|:-|:|
-| **sha1Hash** | String | SHA1 hash for the contents of the file (if available). Read-only. |
-| **sha256Hash** | String | SHA256 hash for the contents of the file (if available). Read-only. |
| **crc32Hash** | String | The CRC32 value of the file in little endian (if available). Read-only. | | **quickXorHash** | String | A proprietary hash of the file that can be used to determine if the contents of the file have changed (if available). Read-only. |
+| **sha1Hash** | String | SHA1 hash for the contents of the file (if available). Read-only. |
+| **sha256Hash** | String | SHA256 hash for the contents of the file (if available). Read-only. |
>**Note:** In some cases hash values may not be available. If this is the case, the hash values on an item will be updated after the item is downloaded.
v1.0 Homerealmdiscoverypolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/homerealmdiscoverypolicy.md
Inherits from [stsPolicy](stsPolicy.md).
| Property | Type | Description | |:-|:|:|
-|id|String| Unique identifier for this policy. Read-only.|
|definition|String collection| A string collection containing a JSON string that defines the rules and settings for this policy. See [Properties of a home realm discovery policy definition](#properties-of-a-home-realm-discovery-policy-definition) for more details about the JSON schema for this property. Required.| |description|String| Description for this policy.| |displayName|String| Display name for this policy. Required.|
+|id|String| Unique identifier for this policy. Read-only.|
|isOrganizationDefault|Boolean|If set to `true`, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is `false`.|
v1.0 Identityapiconnector https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/identityapiconnector.md
Use the [b2xIdentityUserFlow](b2xidentityuserflow.md) API to use an API connecto
|Property|Type|Description| |:|:|:|
-|id|String|The randomly generated identifier of the API connector. |
+|authenticationConfiguration|[apiAuthenticationConfigurationBase](../resources/apiauthenticationconfigurationbase.md)|The object which describes the authentication configuration details for calling the API. Basic and PKCS 12 client certificate are supported.|
|displayName|String| The name of the API connector. |
+|id|String|The randomly generated identifier of the API connector. |
|targetUrl|String| The URL of the API endpoint to call. |
-|authenticationConfiguration|[apiAuthenticationConfigurationBase](../resources/apiauthenticationconfigurationbase.md)|The object which describes the authentication configuration details for calling the API. Basic and PKCS 12 client certificate are supported.|
## Relationships
v1.0 Identitybuiltinuserflowattribute https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/identitybuiltinuserflowattribute.md
Inherits from [identityUserFlowAttribute](../resources/identityuserflowattribute
|Property|Type|Description| |:|:|:|
-|id|String|The identifier of the user flow attribute. This is a read-only attribute that is automatically created. Inherited from [identityUserFlowAttribute](../resources/identityuserflowattribute.md)|
-|displayName|String|The display name of the user flow attribute. Inherited from [identityUserFlowAttribute](../resources/identityuserflowattribute.md). Read-only.|
+|dataType|identityUserFlowAttributeDataType|The data type of the user flow attribute. This cannot be modified after the custom user flow attribute is created. The supported values for **dataType** are: `string` , `boolean` , `int64` , `stringCollection` , `dateTime`. Inherited from [identityUserFlowAttribute](../resources/identityuserflowattribute.md). Read-only.|
|description|String|The description of the user flow attribute that's shown to the user at the time of sign-up. Inherited from [identityUserFlowAttribute](../resources/identityuserflowattribute.md). Read-only.|
+|displayName|String|The display name of the user flow attribute. Inherited from [identityUserFlowAttribute](../resources/identityuserflowattribute.md). Read-only.|
+|id|String|The identifier of the user flow attribute. This is a read-only attribute that is automatically created. Inherited from [identityUserFlowAttribute](../resources/identityuserflowattribute.md)|
|userFlowAttributeType|identityUserFlowAttributeType|The type of the user flow attribute. This is a read-only attribute that is automatically set. The value for this property will be `builtIn`. Inherited from [identityUserFlowAttribute](../resources/identityuserflowattribute.md). Read-only.|
-|dataType|identityUserFlowAttributeDataType|The data type of the user flow attribute. This cannot be modified after the custom user flow attribute is created. The supported values for **dataType** are: `string` , `boolean` , `int64` , `stringCollection` , `dateTime`. Inherited from [identityUserFlowAttribute](../resources/identityuserflowattribute.md). Read-only.|
+ ## Relationships
v1.0 Identitycustomuserflowattribute https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/identitycustomuserflowattribute.md
Inherits from [identityUserFlowAttribute](../resources/identityuserflowattribute
|Property|Type|Description| |:|:|:|
-|id|String|The identifier of the user flow attribute. This is a read-only attribute that is automatically created. Inherited from [identityUserFlowAttribute](../resources/identityuserflowattribute.md)|
-|displayName|String|The display name of the user flow attribute. Inherited from [identityUserFlowAttribute](../resources/identityuserflowattribute.md)|
+|dataType|identityUserFlowAttributeDataType|The data type of the user flow attribute. This cannot be modified after the custom user flow attribute is created. The supported values for **dataType** are: `string` , `boolean` , `int64` , `stringCollection` , `dateTime`. Inherited from [identityUserFlowAttribute](../resources/identityuserflowattribute.md).|
|description|String|The description of the user flow attribute that's shown to the user at the time of sign-up. Inherited from [identityUserFlowAttribute](../resources/identityuserflowattribute.md)|
+|displayName|String|The display name of the user flow attribute. Inherited from [identityUserFlowAttribute](../resources/identityuserflowattribute.md)|
+|id|String|The identifier of the user flow attribute. This is a read-only attribute that is automatically created. Inherited from [identityUserFlowAttribute](../resources/identityuserflowattribute.md)|
|userFlowAttributeType|identityUserFlowAttributeType|The type of the user flow attribute. This is a read-only attribute that is automatically set. The value for this property will be `custom`. Inherited from [identityUserFlowAttribute](../resources/identityuserflowattribute.md).|
-|dataType|identityUserFlowAttributeDataType|The data type of the user flow attribute. This cannot be modified after the custom user flow attribute is created. The supported values for **dataType** are: `string` , `boolean` , `int64` , `stringCollection` , `dateTime`. Inherited from [identityUserFlowAttribute](../resources/identityuserflowattribute.md).|
+ ## Relationships
v1.0 Identitygovernance Overview https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/identitygovernance-overview.md
ms.localizationpriority: medium
ms.prod: "governance" doc_type: conceptualPageType Last updated : 08/27/2022 # Overview of Azure AD Identity Governance using Microsoft Graph
v1.0 Identityprotection Overview https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/identityprotection-overview.md
ms.localizationpriority: medium ms.prod: "identity-and-sign-in" doc_type: conceptualPageType Last updated : 08/17/2022 # Use the Microsoft Graph identity protection APIs
v1.0 Identityproviderbase https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/identityproviderbase.md
Configuring an identity provider in your Azure AD B2C directory enables users to
|Property|Type|Description| |:|:--|:-|
-|id|String|The identifier of the identity provider.|
|displayName|String|The display name of the identity provider.|
+|id|String|The identifier of the identity provider.|
## JSON representation
v1.0 Identitysource https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/identitysource.md
doc_type: resourcePageType
Namespace: microsoft.graph -
-The sub-types of this type, [azureActiveDirectoryTenant](azureactivedirectorytenant.md), [domainIdentitySource](domainidentitysource.md) and [externalDomainFederation](externaldomainfederation.md), are used in the identity sources of a [connectedOrganization](connectedOrganization.md).
+The sub-types of this type, [azureActiveDirectoryTenant](azureactivedirectorytenant.md), [domainIdentitySource](domainidentitysource.md), [externalDomainFederation](externaldomainfederation.md) and [crossCloudAzureActiveDirectoryTenant](crosscloudazureactivedirectorytenant.md) are used in the identity sources of a [connectedOrganization](connectedOrganization.md).
## Properties
v1.0 Identityuserflowattribute https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/identityuserflowattribute.md
Configuring user flow attributes in your Azure AD tenant allows you to collect i
|Property|Type|Description| |:|:--|:-|
-|id|String|The identifier of the user flow attribute. This is a read-only attribute that is automatically created.|
-|displayName|String|The display name of the user flow attribute.|
+|dataType|identityUserFlowAttributeDataType|The data type of the user flow attribute. This cannot be modified after the custom user flow attribute is created. The supported values for **dataType** are: `string` , `boolean` , `int64` , `stringCollection` , `dateTime`.|
|description|String|The description of the user flow attribute that's shown to the user at the time of sign-up.|
+|displayName|String|The display name of the user flow attribute.|
+|id|String|The identifier of the user flow attribute. This is a read-only attribute that is automatically created.|
|userFlowAttributeType|identityUserFlowAttributeType|The type of the user flow attribute. This is a read-only attribute that is automatically set. Depending on the type of attribute, the values for this property will be `builtIn`, `custom`, or `required`.|
-|dataType|identityUserFlowAttributeDataType|The data type of the user flow attribute. This cannot be modified after the custom user flow attribute is created. The supported values for **dataType** are: `string` , `boolean` , `int64` , `stringCollection` , `dateTime`.|
## JSON representation
v1.0 Identityuserflowattributeassignment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/identityuserflowattributeassignment.md
Represents how attributes are collected in an identity user flow. This allows cu
|Property|Type|Description| |:|:|:|
-|id|String|The identifier of the identityUserFlowAttributeAssignment. This identifier is immutable after it is created. This is a read-only property.|
|displayName|String|The display name of the identityUserFlowAttribute within a user flow.|
+|id|String|The identifier of the identityUserFlowAttributeAssignment. This identifier is immutable after it is created. This is a read-only property.|
|isOptional|Boolean|Determines whether the identityUserFlowAttribute is optional. `true` means the user doesn't have to provide a value. `false` means the user cannot complete sign-up without providing a value.| |requiresVerification|Boolean|Determines whether the identityUserFlowAttribute requires verification. This is only used for verifying the user's phone number or email address.| |userAttributeValues|[userAttributeValuesItem](../resources/userattributevaluesitem.md) collection|The input options for the user flow attribute. Only applicable when the userInputType is `radioSingleSelect`, `dropdownSingleSelect`, or `checkboxMultiSelect`.|
v1.0 Implicitgrantsettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/implicitgrantsettings.md
Specifies whether this web application can request tokens using the OAuth 2.0 im
| Property | Type | Description | |:|:--|:|
-|enableIdTokenIssuance| Boolean | Specifies whether this web application can request an ID token using the OAuth 2.0 implicit flow.|
|enableAccessTokenIssuance| Boolean | Specifies whether this web application can request an access token using the OAuth 2.0 implicit flow.|
+|enableIdTokenIssuance| Boolean | Specifies whether this web application can request an ID token using the OAuth 2.0 implicit flow.|
## JSON representation Here is a JSON representation of the resource.
v1.0 Incomingcontext https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/incomingcontext.md
Represents the context associated with an incoming call.
| Property | Type | Description | |:-|:|:|
-| sourceParticipantId | String | The ID of the participant that triggered the incoming call. Read-only. |
| observedParticipantId | String | The ID of the participant that is under observation. Read-only. | | onBehalfOf | [identitySet](identityset.md) | The identity that the call is happening on behalf of. |
+| sourceParticipantId | String | The ID of the participant that triggered the incoming call. Read-only. |
| transferor | [identitySet](identityset.md) | The identity that transferred the call. | ## JSON representation
v1.0 Indexing Api Overview https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/indexing-api-overview.md
The use cases for the APIs in this section involve building [Microsoft Graph con
The following are current known limitations: -- Organizations are limited to a maximum of 10 connections.-- You can create only four `externalItem` resources items per second.-- An application is limited to four concurrent operations on a connection.
+- Organizations are limited to a maximum of 10 connections (reach out if you need more).
+- You can create up to 25 `externalItem` resources items per second.
+- An application is limited to 25 concurrent operations on a connection.
- Connections have a capacity limit of 5,000,000 items or ~350 GB of data. - Maximum size of an `externalItem` entity is 4 MB. - Sorting results is not supported.
v1.0 Inferenceclassification https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/inferenceclassification.md
Title: "inferenceClassification resource type"
description: "Classification of a user's messages to enable focus on those that are more relevant or important to the user. " ms.localizationpriority: medium doc_type: resourcePageType
v1.0 Inferenceclassificationoverride https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/inferenceclassificationoverride.md
Title: "inferenceClassificationOverride resource type"
description: "Represents a user's override for how incoming messages from a specific sender should always be classified as." ms.localizationpriority: medium doc_type: resourcePageType
v1.0 Insights Insightidentity https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/insights-insightidentity.md
Here is a JSON representation of the resource
| Property | Type | Description | | - |-- | -|
+| address | String | The email address of the user who shared the item. |
| displayName | String | The display name of the user who shared the item. | | id | String | The id of the user who shared the item. |
-| address | String | The email address of the user who shared the item. |
v1.0 Insights Resourcereference https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/insights-resourcereference.md
Here is a JSON representation of the resource
| Property | Type | Description | | - |--| -|
-| webUrl | String | A URL leading to the referenced item. |
| id | String | The item's unique identifier. | | type | String | A string value that can be used to classify the item, such as "microsoft.graph.driveItem" |
+| webUrl | String | A URL leading to the referenced item. |
v1.0 Insights Resourcevisualization https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/insights-resourcevisualization.md
Here is a JSON representation of the resource
| Property | Type | Description | | - || -| | title | String | The item's title text. |
-| type | String | The item's media type. Can be used for filtering for a specific file based on a specific type. See below for supported types. |
+| containerDisplayName | String | A string describing where the item is stored. For example, the name of a SharePoint site or the user name identifying the owner of the OneDrive storing the item. |
+| containerType | String | Can be used for filtering by the type of container in which the file is stored. Such as Site or OneDriveBusiness. |
+| containerWebUrl | String | A path leading to the folder in which the item is stored. |
| mediaType | String | The item's media type. Can be used for filtering for a specific type of file based on supported IANA Media Mime Types. Note that not all Media Mime Types are supported. | | previewImageUrl | String | A URL leading to the preview image for the item. | | previewText | String | A preview text for the item. |
-| containerWebUrl | String | A path leading to the folder in which the item is stored. |
-| containerDisplayName | String | A string describing where the item is stored. For example, the name of a SharePoint site or the user name identifying the owner of the OneDrive storing the item. |
-| containerType | String | Can be used for filtering by the type of container in which the file is stored. Such as Site or OneDriveBusiness. |
+| type | String | The item's media type. Can be used for filtering for a specific file based on a specific type. See below for supported types. |
## Type property values - PowerPoint
v1.0 Insights Shared https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/insights-shared.md
An insight representing files shared with or by a specific user. The following s
| - | | -| | id | String | Unique identifier of the relationship. Read only. | | lastShared | [sharingDetail](insights-sharingdetail.md) | Details about the shared item. Read only. |
-| resourceVisualization | [resourceVisualization](insights-resourcevisualization.md) | Properties that you can use to visualize the document in your experience. Read-only |
| resourceReference | [resourceReference](insights-resourcereference.md) | Reference properties of the shared document, such as the url and type of the document. Read-only |
+| resourceVisualization | [resourceVisualization](insights-resourcevisualization.md) | Properties that you can use to visualize the document in your experience. Read-only |
## Relationships
v1.0 Insights Sharingdetail https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/insights-sharingdetail.md
Here is a JSON representation of the resource
| Property | Type | Description | | - |-- | -|
+| sharedBy | [insightIdentity](insights-insightidentity.md) | The user who shared the document. |
| sharedDateTime | DateTimeOffset| The date and time the file was last shared. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is `2014-01-01T00:00:00Z`. Read-only. | | sharingSubject | String | The subject with which the document was shared. | | sharingType | String | Determines the way the document was shared, can be by a "Link", "Attachment", "Group", "Site". |
-| sharedBy | [insightIdentity](insights-insightidentity.md) | The user who shared the document. |
| sharingReference | [resourceReference](insights-resourcereference.md) | |
v1.0 Insights Trending https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/insights-trending.md
Rich relationship connecting a user to documents that are trending around the us
| Property | Type | Description | | - | | -| | id | String | Unique identifier of the relationship. Read only. |
-| weight | Double | Value indicating how much the document is currently trending. The larger the number, the more the document is currently trending around the user (the more relevant it is). Returned documents are sorted by this value. |
-| resourceVisualization | [resourceVisualization](insights-resourcevisualization.md) | Properties that you can use to visualize the document in your experience. |
-| resourceReference | [resourceReference](insights-resourcereference.md) | Reference properties of the trending document, such as the url and type of the document. |
| lastModifiedDateTime | DateTimeOffset | |
+| resourceReference | [resourceReference](insights-resourcereference.md) | Reference properties of the trending document, such as the url and type of the document. |
+| resourceVisualization | [resourceVisualization](insights-resourcevisualization.md) | Properties that you can use to visualize the document in your experience. |
+| weight | Double | Value indicating how much the document is currently trending. The larger the number, the more the document is currently trending around the user (the more relevant it is). Returned documents are sorted by this value. |
+ ## Relationships | Property | Type | Description |
v1.0 Insights Used https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/insights-used.md
An insight representing documents used by a specific user. The insights returns
| - | | -| | id | String | Unique identifier of the relationship. Read only. | | lastUsed | [usageDetails](insights-usagedetails.md) | Information about when the item was last viewed or modified by the user. Read only. |
-| resourceVisualization | [resourceVisualization](insights-resourcevisualization.md) | Properties that you can use to visualize the document in your experience. Read-only |
| resourceReference | [resourceReference](insights-resourcereference.md) | Reference properties of the used document, such as the url and type of the document. Read-only |
+| resourceVisualization | [resourceVisualization](insights-resourcevisualization.md) | Properties that you can use to visualize the document in your experience. Read-only |
## Relationships
v1.0 Integerrange https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/integerrange.md
Represents an inclusive range of integers described by two Int64 boundaries.
## Properties | Property | Type | Description | |:-|:|:|
-|start|Int64|The inclusive lower bound of the integer range.|
|end|Int64|The inclusive upper bound of the integer range.|
+|start|Int64|The inclusive lower bound of the integer range.|
## JSON representation
v1.0 Internaldomainfederation https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/internaldomainfederation.md
Title: "internalDomainFederation resource type" description: "Represents configurations of the domains in a tenant that are federated with Azure AD."-+ ms.localizationpriority: medium ms.prod: "identity-and-sign-in" doc_type: resourcePageType
v1.0 Internetmessageheader https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/internetmessageheader.md
Title: "internetMessageHeader resource type"
description: "A key-value pair that represents an Internet message header, as defined by RFC5322, that provides " ms.localizationpriority: medium doc_type: resourcePageType
v1.0 Intune Apps Androidlobapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-androidlobapp.md
Title: "androidLobApp resource type" description: "Contains properties and inherited properties for Android Line Of Business apps."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"versionCode": "String" } ```-----
v1.0 Intune Apps Androidminimumoperatingsystem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-androidminimumoperatingsystem.md
Title: "androidMinimumOperatingSystem resource type" description: "Contains properties for the minimum operating system required for an Android mobile app."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Contains properties for the minimum operating system required for an Android mob
## Properties |Property|Type|Description| |:|:|:|
-|v4_0|Boolean|Version 4.0 or later.|
-|v4_0_3|Boolean|Version 4.0.3 or later.|
-|v4_1|Boolean|Version 4.1 or later.|
-|v4_2|Boolean|Version 4.2 or later.|
-|v4_3|Boolean|Version 4.3 or later.|
-|v4_4|Boolean|Version 4.4 or later.|
-|v5_0|Boolean|Version 5.0 or later.|
-|v5_1|Boolean|Version 5.1 or later.|
-|v6_0|Boolean|Version 6.0 or later.|
-|v7_0|Boolean|Version 7.0 or later.|
-|v7_1|Boolean|Version 7.1 or later.|
-|v8_0|Boolean|Version 8.0 or later.|
-|v8_1|Boolean|Version 8.1 or later.|
-|v9_0|Boolean|Version 9.0 or later.|
-|v10_0|Boolean|Version 10.0 or later.|
-|v11_0|Boolean|Version 11.0 or later.|
+|v4_0|Boolean|When TRUE, only Version 4.0 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.|
+|v4_0_3|Boolean|When TRUE, only Version 4.0.3 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.|
+|v4_1|Boolean|When TRUE, only Version 4.1 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.|
+|v4_2|Boolean|When TRUE, only Version 4.2 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.|
+|v4_3|Boolean|When TRUE, only Version 4.3 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.|
+|v4_4|Boolean|When TRUE, only Version 4.4 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.|
+|v5_0|Boolean|When TRUE, only Version 5.0 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.|
+|v5_1|Boolean|When TRUE, only Version 5.1 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.|
+|v6_0|Boolean|When TRUE, only Version 6.0 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.|
+|v7_0|Boolean|When TRUE, only Version 7.0 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.|
+|v7_1|Boolean|When TRUE, only Version 7.1 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.|
+|v8_0|Boolean|When TRUE, only Version 8.0 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.|
+|v8_1|Boolean|When TRUE, only Version 8.1 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.|
+|v9_0|Boolean|When TRUE, only Version 9.0 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.|
+|v10_0|Boolean|When TRUE, only Version 10.0 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.|
+|v11_0|Boolean|When TRUE, only Version 11.0 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.|
## Relationships None
Here is a JSON representation of the resource.
"v11_0": true } ```-----
v1.0 Intune Apps Androidstoreapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-androidstoreapp.md
Title: "androidStoreApp resource type" description: "Contains properties and inherited properties for Android store apps."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Apps Appconfigurationsettingitem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-appconfigurationsettingitem.md
Title: "appConfigurationSettingItem resource type" description: "Contains properties for App configuration setting item."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"appConfigKeyValue": "String" } ```-----
v1.0 Intune Apps Deviceappmanagement https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-deviceappmanagement.md
Title: "deviceAppManagement resource type" description: "Singleton entity that acts as a container for all device app management functionality."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"id": "String (identifier)" } ```-----
v1.0 Intune Apps Fileencryptioninfo https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-fileencryptioninfo.md
Title: "fileEncryptionInfo resource type" description: "Contains properties for file encryption information for the content version of a line of business app."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Contains properties for file encryption information for the content version of a
|Property|Type|Description| |:|:|:| |encryptionKey|Binary|The key used to encrypt the file content.|
-|initializationVector|Binary|The initialization vector used for the encryption algorithm.|
-|mac|Binary|The hash of the encrypted file content + IV (content hash).|
-|macKey|Binary|The key used to get mac.|
-|profileIdentifier|String|The the profile identifier.|
-|fileDigest|Binary|The file digest prior to encryption.|
-|fileDigestAlgorithm|String|The file digest algorithm.|
+|initializationVector|Binary|The initialization vector (IV) used for the encryption algorithm. Must be 16 bytes.|
+|mac|Binary|The hash of the concatenation of the IV and encrypted file content. Must be 32 bytes.|
+|macKey|Binary|The key used to compute the message authentication code of the concatenation of the IV and encrypted file content. Must be 32 bytes.|
+|profileIdentifier|String|The profile identifier. Maps to the strategy used to encrypt the file. Currently, only ProfileVersion1 is supported.|
+|fileDigest|Binary|The file digest prior to encryption. ProfileVersion1 requires a non-null FileDigest.|
+|fileDigestAlgorithm|String|The file digest algorithm. ProfileVersion1 currently only supports SHA256 for the FileDigestAlgorithm.|
## Relationships None
Here is a JSON representation of the resource.
"fileDigestAlgorithm": "String" } ```-----
v1.0 Intune Apps Iosdevicetype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-iosdevicetype.md
Title: "iosDeviceType resource type" description: "Contains properties of the possible iOS device types the mobile app can run on."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"iPhoneAndIPod": true } ```-----
v1.0 Intune Apps Ioslobapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-ioslobapp.md
Title: "iosLobApp resource type" description: "Contains properties and inherited properties for iOS Line Of Business apps."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"v11_0": true, "v12_0": true, "v13_0": true,
- "v14_0": true
+ "v14_0": true,
+ "v15_0": true
}, "expirationDateTime": "String (timestamp)", "versionNumber": "String", "buildNumber": "String" } ```-----
v1.0 Intune Apps Ioslobappassignmentsettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-ioslobappassignmentsettings.md
Title: "iosLobAppAssignmentSettings resource type" description: "Contains properties used to assign an iOS LOB mobile app to a group."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"isRemovable": true } ```-----
v1.0 Intune Apps Iosminimumoperatingsystem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-iosminimumoperatingsystem.md
Title: "iosMinimumOperatingSystem resource type" description: "Contains properties of the minimum operating system required for an iOS mobile app."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Contains properties of the minimum operating system required for an iOS mobile a
## Properties |Property|Type|Description| |:|:|:|
-|v8_0|Boolean|Version 8.0 or later.|
-|v9_0|Boolean|Version 9.0 or later.|
-|v10_0|Boolean|Version 10.0 or later.|
-|v11_0|Boolean|Version 11.0 or later.|
-|v12_0|Boolean|Version 12.0 or later.|
-|v13_0|Boolean|Version 13.0 or later.|
-|v14_0|Boolean|Version 14.0 or later.|
+|v8_0|Boolean|When TRUE, only Version 8.0 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.|
+|v9_0|Boolean|When TRUE, only Version 9.0 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.|
+|v10_0|Boolean|When TRUE, only Version 10.0 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.|
+|v11_0|Boolean|When TRUE, only Version 11.0 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.|
+|v12_0|Boolean|When TRUE, only Version 12.0 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.|
+|v13_0|Boolean|When TRUE, only Version 13.0 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.|
+|v14_0|Boolean|When TRUE, only Version 14.0 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.|
+|v15_0|Boolean|When TRUE, only Version 15.0 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.|
## Relationships None
Here is a JSON representation of the resource.
"v11_0": true, "v12_0": true, "v13_0": true,
- "v14_0": true
+ "v14_0": true,
+ "v15_0": true
} ```-----
v1.0 Intune Apps Iosmobileappconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-iosmobileappconfiguration.md
Title: "iosMobileAppConfiguration resource type" description: "Contains properties, inherited properties and actions for iOS mobile app configurations."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Apps Iosstoreapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-iosstoreapp.md
Title: "iosStoreApp resource type" description: "Contains properties and inherited properties for iOS store apps."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"v11_0": true, "v12_0": true, "v13_0": true,
- "v14_0": true
+ "v14_0": true,
+ "v15_0": true
} } ```-----
v1.0 Intune Apps Iosstoreappassignmentsettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-iosstoreappassignmentsettings.md
Title: "iosStoreAppAssignmentSettings resource type" description: "Contains properties used to assign an iOS Store mobile app to a group."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"vpnConfigurationId": "String" } ```-----
v1.0 Intune Apps Iosvppapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-iosvppapp.md
Title: "iosVppApp resource type" description: "Contains properties and inherited properties for iOS Volume-Purchased Program (VPP) Apps."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"bundleId": "String" } ```-----
v1.0 Intune Apps Iosvppappassignmentsettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-iosvppappassignmentsettings.md
Title: "iosVppAppAssignmentSettings resource type" description: "Contains properties used to assign an iOS VPP mobile app to a group."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"vpnConfigurationId": "String" } ```-----
v1.0 Intune Apps Macoslobapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-macoslobapp.md
Title: "macOSLobApp resource type" description: "Contains properties and inherited properties for the macOS LOB App."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"installAsManaged": true } ```-----
v1.0 Intune Apps Macoslobappassignmentsettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-macoslobappassignmentsettings.md
Title: "macOsLobAppAssignmentSettings resource type" description: "Contains properties used to assign a macOS LOB app to a group."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"uninstallOnDeviceRemoval": true } ```-----
v1.0 Intune Apps Macoslobchildapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-macoslobchildapp.md
Title: "macOSLobChildApp resource type" description: "Contains properties of a macOS .app in the package"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"versionNumber": "String" } ```-----
v1.0 Intune Apps Macosmicrosoftedgeapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-macosmicrosoftedgeapp.md
Title: "macOSMicrosoftEdgeApp resource type" description: "Contains properties and inherited properties for the macOS Microsoft Edge App."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"channel": "String" } ```-----
v1.0 Intune Apps Macosminimumoperatingsystem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-macosminimumoperatingsystem.md
Title: "macOSMinimumOperatingSystem resource type" description: "The minimum operating system required for a macOS app."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"v13_0": true } ```-----
v1.0 Intune Apps Macosofficesuiteapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-macosofficesuiteapp.md
Title: "macOSOfficeSuiteApp resource type" description: "Contains properties and inherited properties for the MacOS Office Suite App."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"publishingState": "String" } ```-----
v1.0 Intune Apps Managedandroidlobapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-managedandroidlobapp.md
Title: "managedAndroidLobApp resource type" description: "Contains properties and inherited properties for Managed Android Line Of Business apps."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"versionCode": "String" } ```-----
v1.0 Intune Apps Managedandroidstoreapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-managedandroidstoreapp.md
Title: "managedAndroidStoreApp resource type" description: "Contains properties and inherited properties for Android store apps that you can manage with an Intune app protection policy."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Apps Managedapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-managedapp.md
Title: "managedApp resource type" description: "Abstract class that contains properties and inherited properties for apps that you can manage with an Intune app protection policy."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"version": "String" } ```-----
v1.0 Intune Apps Managedappavailability https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-managedappavailability.md
Title: "managedAppAvailability enum type" description: "A managed (MAM) application's availability."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
A managed (MAM) application's availability.
|:|:|:| |global|0|A globally available app to all tenants.| |lineOfBusiness|1|A line of business apps private to an organization.|-----
v1.0 Intune Apps Manageddevicemobileappconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-manageddevicemobileappconfiguration.md
Title: "managedDeviceMobileAppConfiguration resource type" description: "An abstract class for Mobile app configuration for enrolled devices."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"version": 1024 } ```-----
v1.0 Intune Apps Manageddevicemobileappconfigurationassignment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-manageddevicemobileappconfigurationassignment.md
Title: "managedDeviceMobileAppConfigurationAssignment resource type" description: "Contains the properties used to assign an MDM app configuration to a group."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Apps Manageddevicemobileappconfigurationdevicestatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-manageddevicemobileappconfigurationdevicestatus.md
Title: "managedDeviceMobileAppConfigurationDeviceStatus resource type" description: "Contains properties, inherited properties and actions for an MDM mobile app configuration status for a device."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"userPrincipalName": "String" } ```-----
v1.0 Intune Apps Manageddevicemobileappconfigurationdevicesummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-manageddevicemobileappconfigurationdevicesummary.md
Title: "managedDeviceMobileAppConfigurationDeviceSummary resource type" description: "Contains properties, inherited properties and actions for an MDM mobile app configuration device status summary."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"configurationVersion": 1024 } ```-----
v1.0 Intune Apps Manageddevicemobileappconfigurationuserstatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-manageddevicemobileappconfigurationuserstatus.md
Title: "managedDeviceMobileAppConfigurationUserStatus resource type" description: "Contains properties, inherited properties and actions for an MDM mobile app configuration status for a user."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"userPrincipalName": "String" } ```-----
v1.0 Intune Apps Manageddevicemobileappconfigurationusersummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-manageddevicemobileappconfigurationusersummary.md
Title: "managedDeviceMobileAppConfigurationUserSummary resource type" description: "Contains properties, inherited properties and actions for an MDM mobile app configuration user status summary."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"configurationVersion": 1024 } ```-----
v1.0 Intune Apps Managedioslobapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-managedioslobapp.md
Title: "managedIOSLobApp resource type" description: "Contains properties and inherited properties for Managed iOS Line Of Business apps."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"v11_0": true, "v12_0": true, "v13_0": true,
- "v14_0": true
+ "v14_0": true,
+ "v15_0": true
}, "expirationDateTime": "String (timestamp)", "versionNumber": "String", "buildNumber": "String" } ```-----
v1.0 Intune Apps Managediosstoreapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-managediosstoreapp.md
Title: "managedIOSStoreApp resource type" description: "Contains properties and inherited properties for an iOS store app that you can manage with an Intune app protection policy."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"v11_0": true, "v12_0": true, "v13_0": true,
- "v14_0": true
+ "v14_0": true,
+ "v15_0": true
} } ```-----
v1.0 Intune Apps Managedmobilelobapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-managedmobilelobapp.md
Title: "managedMobileLobApp resource type" description: "An abstract base class containing properties for all managed mobile line of business apps."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"size": 1024 } ```-----
v1.0 Intune Apps Mdmappconfigkeytype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-mdmappconfigkeytype.md
Title: "mdmAppConfigKeyType enum type" description: "App configuration key types."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
App configuration key types.
|realType|2|Not yet documented| |booleanType|3|Not yet documented| |tokenType|4|Not yet documented|-----
v1.0 Intune Apps Microsoftedgechannel https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-microsoftedgechannel.md
Title: "microsoftEdgeChannel enum type" description: "The enum to specify the channels for Microsoft Edge apps."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
The enum to specify the channels for Microsoft Edge apps.
|beta|1|The Beta Channel is intended for production deployment to a representative sample set of users. New features ship about every 4 weeks. Security and quality updates ship as needed.| |stable|2|The Stable Channel is intended for broad deployment within organizations, and it's the channel that most users should be on. New features ship about every 4 weeks. Security and quality updates ship as needed.| |unknownFutureValue|3|Evolvable enumeration sentinel value. Do not use.|-----
v1.0 Intune Apps Microsoftstoreforbusinessapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-microsoftstoreforbusinessapp.md
Title: "microsoftStoreForBusinessApp resource type" description: "Microsoft Store for Business Apps. This class does not support Create, Delete, or Update."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"packageIdentityName": "String" } ```-----
v1.0 Intune Apps Microsoftstoreforbusinessappassignmentsettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-microsoftstoreforbusinessappassignmentsettings.md
Title: "microsoftStoreForBusinessAppAssignmentSettings resource type" description: "Contains properties used to assign an Microsoft Store for Business mobile app to a group."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"useDeviceContext": true } ```-----
v1.0 Intune Apps Microsoftstoreforbusinesslicensetype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-microsoftstoreforbusinesslicensetype.md
Title: "microsoftStoreForBusinessLicenseType enum type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Not yet documented
|:|:|:| |offline|0|Not yet documented| |online|1|Not yet documented|-----
v1.0 Intune Apps Mobileapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-mobileapp.md
Title: "mobileApp resource type" description: "An abstract class containing the base properties for Intune mobile apps."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"publishingState": "String" } ```-----
v1.0 Intune Apps Mobileappassignment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-mobileappassignment.md
Title: "mobileAppAssignment resource type" description: "A class containing the properties used for Group Assignment of a Mobile App."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Apps Mobileappassignmentsettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-mobileappassignmentsettings.md
Title: "mobileAppAssignmentSettings resource type" description: "Abstract class to contain properties used to assign a mobile app to a group."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"@odata.type": "#microsoft.graph.mobileAppAssignmentSettings" } ```-----
v1.0 Intune Apps Mobileappcategory https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-mobileappcategory.md
Title: "mobileAppCategory resource type" description: "Contains properties for a single Intune app category."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"lastModifiedDateTime": "String (timestamp)" } ```-----
v1.0 Intune Apps Mobileappcontent https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-mobileappcontent.md
Title: "mobileAppContent resource type" description: "Contains content properties for a specific app version. Each mobileAppContent can have multiple mobileAppContentFile."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Contains content properties for a specific app version. Each mobileAppContent ca
|Relationship|Type|Description| |:|:|:| |files|[mobileAppContentFile](../resources/intune-apps-mobileappcontentfile.md) collection|The list of files for this app content version.|
+|containedApps|[mobileContainedApp](../resources/intune-apps-mobilecontainedapp.md) collection|The collection of contained apps in a MobileLobApp acting as a package.|
## JSON Representation Here is a JSON representation of the resource.
Here is a JSON representation of the resource.
"id": "String (identifier)" } ```-----
v1.0 Intune Apps Mobileappcontentfile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-mobileappcontentfile.md
Title: "mobileAppContentFile resource type" description: "Contains properties for a single installer file that is associated with a given mobileAppContent version."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"uploadState": "String" } ```-----
v1.0 Intune Apps Mobileappcontentfileuploadstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-mobileappcontentfileuploadstate.md
Title: "mobileAppContentFileUploadState enum type" description: "Contains properties for upload request states."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Contains properties for upload request states.
|commitFilePending|301|Not yet documented| |commitFileFailed|302|Not yet documented| |commitFileTimedOut|303|Not yet documented|-----
v1.0 Intune Apps Mobileappinstalltimesettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-mobileappinstalltimesettings.md
Title: "mobileAppInstallTimeSettings resource type" description: "Contains properties used to determine when to offer an app to devices and when to install the app on devices."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"deadlineDateTime": "String (timestamp)" } ```-----
v1.0 Intune Apps Mobileapppublishingstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-mobileapppublishingstate.md
Title: "mobileAppPublishingState enum type" description: "Indicates the publishing state of an app."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Indicates the publishing state of an app.
|notPublished|0|The app is not yet published.| |processing|1|The app is pending service-side processing.| |published|2|The app is published.|-----
v1.0 Intune Apps Mobilecontainedapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-mobilecontainedapp.md
+
+ Title: "mobileContainedApp resource type"
+description: "An abstract class that represents a contained app in a mobileApp acting as a package."
+
+localization_priority: Normal
++
+# mobileContainedApp resource type
+
+Namespace: microsoft.graph
+
+> **Note:** The Microsoft Graph API for Intune requires an [active Intune license](https://go.microsoft.com/fwlink/?linkid=839381) for the tenant.
+
+An abstract class that represents a contained app in a mobileApp acting as a package.
+
+## Methods
+|Method|Return Type|Description|
+|:|:|:|
+|[List mobileContainedApps](../api/intune-apps-mobilecontainedapp-list.md)|[mobileContainedApp](../resources/intune-apps-mobilecontainedapp.md) collection|List properties and relationships of the [mobileContainedApp](../resources/intune-apps-mobilecontainedapp.md) objects.|
+|[Get mobileContainedApp](../api/intune-apps-mobilecontainedapp-get.md)|[mobileContainedApp](../resources/intune-apps-mobilecontainedapp.md)|Read properties and relationships of the [mobileContainedApp](../resources/intune-apps-mobilecontainedapp.md) object.|
+
+## Properties
+|Property|Type|Description|
+|:|:|:|
+|id|String|Key of the entity.|
+
+## Relationships
+None
+
+## JSON Representation
+Here is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "keyProperty": "id",
+ "@odata.type": "microsoft.graph.mobileContainedApp"
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.mobileContainedApp",
+ "id": "String (identifier)"
+}
+```
v1.0 Intune Apps Mobilelobapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-mobilelobapp.md
Title: "mobileLobApp resource type" description: "An abstract base class containing properties for all mobile line of business apps."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"size": 1024 } ```-----
v1.0 Intune Apps Runasaccounttype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-runasaccounttype.md
Title: "runAsAccountType enum type" description: "Indicates the type of execution context the app runs in."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Indicates the type of execution context the app runs in.
|:|:|:| |system|0|System context| |user|1|User context|-----
v1.0 Intune Apps Vpplicensingtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-vpplicensingtype.md
Title: "vppLicensingType resource type" description: "Contains properties for iOS Volume-Purchased Program (Vpp) Licensing Type."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"supportsDeviceLicensing": true } ```-----
v1.0 Intune Apps Webapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-webapp.md
Title: "webApp resource type" description: "Contains properties and inherited properties for web apps."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"useManagedBrowser": true } ```-----
v1.0 Intune Apps Win32lobapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-win32lobapp.md
Title: "win32LobApp resource type" description: "Contains properties and inherited properties for Win32 apps."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"minimumSupportedWindowsRelease": "String" } ```-----
v1.0 Intune Apps Win32lobappassignmentsettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-win32lobappassignmentsettings.md
Title: "win32LobAppAssignmentSettings resource type" description: "Contains properties used to assign an Win32 LOB mobile app to a group."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"deliveryOptimizationPriority": "String" } ```-----
v1.0 Intune Apps Win32lobappdeliveryoptimizationpriority https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-win32lobappdeliveryoptimizationpriority.md
Title: "win32LobAppDeliveryOptimizationPriority enum type" description: "Contains value for delivery optimization priority."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Contains value for delivery optimization priority.
|:|:|:| |notConfigured|0|Not configured or background normal delivery optimization priority.| |foreground|1|Foreground delivery optimization priority.|-----
v1.0 Intune Apps Win32lobappfilesystemoperationtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-win32lobappfilesystemoperationtype.md
Title: "win32LobAppFileSystemOperationType enum type" description: "Contains all supported file system detection type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Contains all supported file system detection type.
|createdDate|3|Created date.| |version|4|Version value type.| |sizeInMB|5|Size detection type.|-----
v1.0 Intune Apps Win32lobappfilesystemrule https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-win32lobappfilesystemrule.md
Title: "win32LobAppFileSystemRule resource type" description: "A complex type to store file or folder rule data for a Win32 LOB app."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"comparisonValue": "String" } ```-----
v1.0 Intune Apps Win32lobappinstallexperience https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-win32lobappinstallexperience.md
Title: "win32LobAppInstallExperience resource type" description: "Contains installation experience properties for a Win32 App"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"deviceRestartBehavior": "String" } ```-----
v1.0 Intune Apps Win32lobappmsiinformation https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-win32lobappmsiinformation.md
Title: "win32LobAppMsiInformation resource type" description: "Contains MSI app properties for a Win32 App."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"publisher": "String" } ```-----
v1.0 Intune Apps Win32lobappmsipackagetype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-win32lobappmsipackagetype.md
Title: "win32LobAppMsiPackageType enum type" description: "Indicates the package type of an MSI Win32LobApp."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Indicates the package type of an MSI Win32LobApp.
|perMachine|0|Indicates a per-machine app package.| |perUser|1|Indicates a per-user app package.| |dualPurpose|2|Indicates a dual-purpose app package.|-----
v1.0 Intune Apps Win32lobappnotification https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-win32lobappnotification.md
Title: "win32LobAppNotification enum type" description: "Contains value for notification status."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Contains value for notification status.
|showAll|0|Show all notifications.| |showReboot|1|Only show restart notification and suppress other notifications.| |hideAll|2|Hide all notifications.|-----
v1.0 Intune Apps Win32lobapppowershellscriptrule https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-win32lobapppowershellscriptrule.md
Title: "win32LobAppPowerShellScriptRule resource type" description: "A complex type to store the PowerShell script rule data for a Win32 LOB app."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"comparisonValue": "String" } ```-----
v1.0 Intune Apps Win32lobapppowershellscriptruleoperationtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-win32lobapppowershellscriptruleoperationtype.md
Title: "win32LobAppPowerShellScriptRuleOperationType enum type" description: "Contains all supported Powershell Script output detection type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Contains all supported Powershell Script output detection type.
|float|4|Output data type is float.| |version|5|Output data type is version.| |boolean|6|Output data type is boolean.|-----
v1.0 Intune Apps Win32lobappproductcoderule https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-win32lobappproductcoderule.md
Title: "win32LobAppProductCodeRule resource type" description: "A complex type to store the product code and version rule data for a Win32 LOB app. This rule is not supported as a requirement rule."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"productVersion": "String" } ```-----
v1.0 Intune Apps Win32lobappregistryrule https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-win32lobappregistryrule.md
Title: "win32LobAppRegistryRule resource type" description: "A complex type to store registry rule data for a Win32 LOB app."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"comparisonValue": "String" } ```-----
v1.0 Intune Apps Win32lobappregistryruleoperationtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-win32lobappregistryruleoperationtype.md
Title: "win32LobAppRegistryRuleOperationType enum type" description: "Contains all supported registry data detection type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Contains all supported registry data detection type.
|string|3|String value type.| |integer|4|Integer value type.| |version|5|Version value type.|-----
v1.0 Intune Apps Win32lobapprestartbehavior https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-win32lobapprestartbehavior.md
Title: "win32LobAppRestartBehavior enum type" description: "Indicates the type of restart action."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Indicates the type of restart action.
|allow|1|Intune will not take any specific action on reboot codes resulting from app installations. Intune will not attempt to suppress restarts for MSI apps.| |suppress|2|Intune will attempt to suppress restarts for MSI apps.| |force|3|Intune will force the device to restart immediately after the app installation operation.|-----
v1.0 Intune Apps Win32lobapprestartsettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-win32lobapprestartsettings.md
Title: "win32LobAppRestartSettings resource type" description: "Contains properties describing restart coordination following an app installation."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"restartNotificationSnoozeDurationInMinutes": 1024 } ```-----
v1.0 Intune Apps Win32lobappreturncode https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-win32lobappreturncode.md
Title: "win32LobAppReturnCode resource type" description: "Contains return code properties for a Win32 App"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"type": "String" } ```-----
v1.0 Intune Apps Win32lobappreturncodetype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-win32lobappreturncodetype.md
Title: "win32LobAppReturnCodeType enum type" description: "Indicates the type of return code."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Indicates the type of return code.
|softReboot|2|Soft-reboot is required.| |hardReboot|3|Hard-reboot is required.| |retry|4|Retry.|-----
v1.0 Intune Apps Win32lobapprule https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-win32lobapprule.md
Title: "win32LobAppRule resource type" description: "A base complex type to store the detection or requirement rule data for a Win32 LOB app."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"ruleType": "String" } ```-----
v1.0 Intune Apps Win32lobappruleoperator https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-win32lobappruleoperator.md
Title: "win32LobAppRuleOperator enum type" description: "Contains properties for detection operator."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Contains properties for detection operator.
|greaterThanOrEqual|5|Greater than or equal operator.| |lessThan|8|Less than operator.| |lessThanOrEqual|9|Less than or equal operator.|-----
v1.0 Intune Apps Win32lobappruletype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-win32lobappruletype.md
Title: "win32LobAppRuleType enum type" description: "Contains rule types for Win32 LOB apps."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Contains rule types for Win32 LOB apps.
|:|:|:| |detection|0|Detection rule.| |requirement|1|Requirement rule.|-----
v1.0 Intune Apps Windowsappxappassignmentsettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-windowsappxappassignmentsettings.md
+
+ Title: "windowsAppXAppAssignmentSettings resource type"
+description: "Contains properties used when assigning a Windows AppX mobile app to a group."
+
+localization_priority: Normal
++
+# windowsAppXAppAssignmentSettings resource type
+
+Namespace: microsoft.graph
+
+> **Note:** The Microsoft Graph API for Intune requires an [active Intune license](https://go.microsoft.com/fwlink/?linkid=839381) for the tenant.
+
+Contains properties used when assigning a Windows AppX mobile app to a group.
++
+Inherits from [mobileAppAssignmentSettings](../resources/intune-apps-mobileappassignmentsettings.md)
+
+## Properties
+|Property|Type|Description|
+|:|:|:|
+|useDeviceContext|Boolean|Whether or not to use device execution context for Windows AppX mobile app.|
+
+## Relationships
+None
+
+## JSON Representation
+Here is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.windowsAppXAppAssignmentSettings"
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.windowsAppXAppAssignmentSettings",
+ "useDeviceContext": true
+}
+```
v1.0 Intune Apps Windowsarchitecture https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-windowsarchitecture.md
Title: "windowsArchitecture enum type" description: "Contains properties for Windows architecture."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Contains properties for Windows architecture.
|x64|2|Whether or not the X64 Windows architecture type is supported.| |arm|4|Whether or not the Arm Windows architecture type is supported.| |neutral|8|Whether or not the Neutral Windows architecture type is supported.|-----
v1.0 Intune Apps Windowsdevicetype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-windowsdevicetype.md
Title: "windowsDeviceType enum type" description: "Contains properties for Windows device type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Contains properties for Windows device type.
|mobile|2|Whether or not the Mobile Windows device type is supported.| |holographic|4|Whether or not the Holographic Windows device type is supported.| |team|8|Whether or not the Team Windows device type is supported.|-----
v1.0 Intune Apps Windowsmicrosoftedgeapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-windowsmicrosoftedgeapp.md
+
+ Title: "windowsMicrosoftEdgeApp resource type"
+description: "Contains properties and inherited properties for the Microsoft Edge app on Windows."
+
+localization_priority: Normal
++
+# windowsMicrosoftEdgeApp resource type
+
+Namespace: microsoft.graph
+
+> **Note:** The Microsoft Graph API for Intune requires an [active Intune license](https://go.microsoft.com/fwlink/?linkid=839381) for the tenant.
+
+Contains properties and inherited properties for the Microsoft Edge app on Windows.
++
+Inherits from [mobileApp](../resources/intune-apps-mobileapp.md)
+
+## Methods
+|Method|Return Type|Description|
+|:|:|:|
+|[List windowsMicrosoftEdgeApps](../api/intune-apps-windowsmicrosoftedgeapp-list.md)|[windowsMicrosoftEdgeApp](../resources/intune-apps-windowsmicrosoftedgeapp.md) collection|List properties and relationships of the [windowsMicrosoftEdgeApp](../resources/intune-apps-windowsmicrosoftedgeapp.md) objects.|
+|[Get windowsMicrosoftEdgeApp](../api/intune-apps-windowsmicrosoftedgeapp-get.md)|[windowsMicrosoftEdgeApp](../resources/intune-apps-windowsmicrosoftedgeapp.md)|Read properties and relationships of the [windowsMicrosoftEdgeApp](../resources/intune-apps-windowsmicrosoftedgeapp.md) object.|
+|[Create windowsMicrosoftEdgeApp](../api/intune-apps-windowsmicrosoftedgeapp-create.md)|[windowsMicrosoftEdgeApp](../resources/intune-apps-windowsmicrosoftedgeapp.md)|Create a new [windowsMicrosoftEdgeApp](../resources/intune-apps-windowsmicrosoftedgeapp.md) object.|
+|[Delete windowsMicrosoftEdgeApp](../api/intune-apps-windowsmicrosoftedgeapp-delete.md)|None|Deletes a [windowsMicrosoftEdgeApp](../resources/intune-apps-windowsmicrosoftedgeapp.md).|
+|[Update windowsMicrosoftEdgeApp](../api/intune-apps-windowsmicrosoftedgeapp-update.md)|[windowsMicrosoftEdgeApp](../resources/intune-apps-windowsmicrosoftedgeapp.md)|Update the properties of a [windowsMicrosoftEdgeApp](../resources/intune-apps-windowsmicrosoftedgeapp.md) object.|
+
+## Properties
+|Property|Type|Description|
+|:|:|:|
+|id|String|Key of the entity. Inherited from [mobileApp](../resources/intune-apps-mobileapp.md)|
+|displayName|String|The admin provided or imported title of the app. Inherited from [mobileApp](../resources/intune-apps-mobileapp.md)|
+|description|String|The description of the app. Inherited from [mobileApp](../resources/intune-apps-mobileapp.md)|
+|publisher|String|The publisher of the app. Inherited from [mobileApp](../resources/intune-apps-mobileapp.md)|
+|largeIcon|[mimeContent](../resources/intune-shared-mimecontent.md)|The large icon, to be displayed in the app details and used for upload of the icon. Inherited from [mobileApp](../resources/intune-apps-mobileapp.md)|
+|createdDateTime|DateTimeOffset|The date and time the app was created. Inherited from [mobileApp](../resources/intune-apps-mobileapp.md)|
+|lastModifiedDateTime|DateTimeOffset|The date and time the app was last modified. Inherited from [mobileApp](../resources/intune-apps-mobileapp.md)|
+|isFeatured|Boolean|The value indicating whether the app is marked as featured by the admin. Inherited from [mobileApp](../resources/intune-apps-mobileapp.md)|
+|privacyInformationUrl|String|The privacy statement Url. Inherited from [mobileApp](../resources/intune-apps-mobileapp.md)|
+|informationUrl|String|The more information Url. Inherited from [mobileApp](../resources/intune-apps-mobileapp.md)|
+|owner|String|The owner of the app. Inherited from [mobileApp](../resources/intune-apps-mobileapp.md)|
+|developer|String|The developer of the app. Inherited from [mobileApp](../resources/intune-apps-mobileapp.md)|
+|notes|String|Notes for the app. Inherited from [mobileApp](../resources/intune-apps-mobileapp.md)|
+|publishingState|[mobileAppPublishingState](../resources/intune-apps-mobileapppublishingstate.md)|The publishing state for the app. The app cannot be assigned unless the app is published. Inherited from [mobileApp](../resources/intune-apps-mobileapp.md). Possible values are: `notPublished`, `processing`, `published`.|
+|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.|
+
+## Relationships
+|Relationship|Type|Description|
+|:|:|:|
+|categories|[mobileAppCategory](../resources/intune-apps-mobileappcategory.md) collection|The list of categories for this app. Inherited from [mobileApp](../resources/intune-apps-mobileapp.md)|
+|assignments|[mobileAppAssignment](../resources/intune-apps-mobileappassignment.md) collection|The list of group assignments for this mobile app. Inherited from [mobileApp](../resources/intune-apps-mobileapp.md)|
+
+## JSON Representation
+Here is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "keyProperty": "id",
+ "@odata.type": "microsoft.graph.windowsMicrosoftEdgeApp"
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.windowsMicrosoftEdgeApp",
+ "id": "String (identifier)",
+ "displayName": "String",
+ "description": "String",
+ "publisher": "String",
+ "largeIcon": {
+ "@odata.type": "microsoft.graph.mimeContent",
+ "type": "String",
+ "value": "binary"
+ },
+ "createdDateTime": "String (timestamp)",
+ "lastModifiedDateTime": "String (timestamp)",
+ "isFeatured": true,
+ "privacyInformationUrl": "String",
+ "informationUrl": "String",
+ "owner": "String",
+ "developer": "String",
+ "notes": "String",
+ "publishingState": "String",
+ "channel": "String",
+ "displayLanguageLocale": "String"
+}
+```
v1.0 Intune Apps Windowsminimumoperatingsystem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-windowsminimumoperatingsystem.md
Title: "windowsMinimumOperatingSystem resource type" description: "The minimum operating system required for a Windows mobile app."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"v10_0": true } ```-----
v1.0 Intune Apps Windowsmobilemsi https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-windowsmobilemsi.md
Title: "windowsMobileMSI resource type" description: "Contains properties and inherited properties for Windows Mobile MSI Line Of Business apps."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"ignoreVersionDetection": true } ```-----
v1.0 Intune Apps Windowsuniversalappx https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-windowsuniversalappx.md
Title: "windowsUniversalAppX resource type" description: "Contains properties and inherited properties for Windows Universal AppX Line Of Business apps."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Inherits from [mobileLobApp](../resources/intune-apps-mobilelobapp.md)
|categories|[mobileAppCategory](../resources/intune-apps-mobileappcategory.md) collection|The list of categories for this app. Inherited from [mobileApp](../resources/intune-apps-mobileapp.md)| |assignments|[mobileAppAssignment](../resources/intune-apps-mobileappassignment.md) collection|The list of group assignments for this mobile app. Inherited from [mobileApp](../resources/intune-apps-mobileapp.md)| |contentVersions|[mobileAppContent](../resources/intune-apps-mobileappcontent.md) collection|The list of content versions for this app. Inherited from [mobileLobApp](../resources/intune-apps-mobilelobapp.md)|
+|committedContainedApps|[mobileContainedApp](../resources/intune-apps-mobilecontainedapp.md) collection|The collection of contained apps in the committed mobileAppContent of a windowsUniversalAppX app.|
## JSON Representation Here is a JSON representation of the resource.
Here is a JSON representation of the resource.
"identityVersion": "String" } ```-----
v1.0 Intune Apps Windowsuniversalappxcontainedapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-apps-windowsuniversalappxcontainedapp.md
+
+ Title: "windowsUniversalAppXContainedApp resource type"
+description: "A class that represents a contained app of a WindowsUniversalAppX app."
+
+localization_priority: Normal
++
+# windowsUniversalAppXContainedApp resource type
+
+Namespace: microsoft.graph
+
+> **Note:** The Microsoft Graph API for Intune requires an [active Intune license](https://go.microsoft.com/fwlink/?linkid=839381) for the tenant.
+
+A class that represents a contained app of a WindowsUniversalAppX app.
++
+Inherits from [mobileContainedApp](../resources/intune-apps-mobilecontainedapp.md)
+
+## Methods
+|Method|Return Type|Description|
+|:|:|:|
+|[List windowsUniversalAppXContainedApps](../api/intune-apps-windowsuniversalappxcontainedapp-list.md)|[windowsUniversalAppXContainedApp](../resources/intune-apps-windowsuniversalappxcontainedapp.md) collection|List properties and relationships of the [windowsUniversalAppXContainedApp](../resources/intune-apps-windowsuniversalappxcontainedapp.md) objects.|
+|[Get windowsUniversalAppXContainedApp](../api/intune-apps-windowsuniversalappxcontainedapp-get.md)|[windowsUniversalAppXContainedApp](../resources/intune-apps-windowsuniversalappxcontainedapp.md)|Read properties and relationships of the [windowsUniversalAppXContainedApp](../resources/intune-apps-windowsuniversalappxcontainedapp.md) object.|
+|[Create windowsUniversalAppXContainedApp](../api/intune-apps-windowsuniversalappxcontainedapp-create.md)|[windowsUniversalAppXContainedApp](../resources/intune-apps-windowsuniversalappxcontainedapp.md)|Create a new [windowsUniversalAppXContainedApp](../resources/intune-apps-windowsuniversalappxcontainedapp.md) object.|
+|[Delete windowsUniversalAppXContainedApp](../api/intune-apps-windowsuniversalappxcontainedapp-delete.md)|None|Deletes a [windowsUniversalAppXContainedApp](../resources/intune-apps-windowsuniversalappxcontainedapp.md).|
+|[Update windowsUniversalAppXContainedApp](../api/intune-apps-windowsuniversalappxcontainedapp-update.md)|[windowsUniversalAppXContainedApp](../resources/intune-apps-windowsuniversalappxcontainedapp.md)|Update the properties of a [windowsUniversalAppXContainedApp](../resources/intune-apps-windowsuniversalappxcontainedapp.md) object.|
+
+## Properties
+|Property|Type|Description|
+|:|:|:|
+|id|String|Key of the entity. Inherited from [mobileContainedApp](../resources/intune-apps-mobilecontainedapp.md)|
+|appUserModelId|String|The app user model ID of the contained app of a WindowsUniversalAppX app.|
+
+## Relationships
+None
+
+## JSON Representation
+Here is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "keyProperty": "id",
+ "@odata.type": "microsoft.graph.windowsUniversalAppXContainedApp"
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.windowsUniversalAppXContainedApp",
+ "id": "String (identifier)",
+ "appUserModelId": "String"
+}
+```
v1.0 Intune Auditing Auditactor https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-auditing-auditactor.md
Title: "auditActor resource type" description: "A class containing the properties for Audit Actor."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"userId": "String" } ```-----
v1.0 Intune Auditing Auditevent https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-auditing-auditevent.md
Title: "auditEvent resource type" description: "A class containing the properties for Audit Event."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"category": "String" } ```-----
v1.0 Intune Auditing Auditproperty https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-auditing-auditproperty.md
Title: "auditProperty resource type" description: "A class containing the properties for Audit Property."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"newValue": "String" } ```-----
v1.0 Intune Auditing Auditresource https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-auditing-auditresource.md
Title: "auditResource resource type" description: "A class containing the properties for Audit Resource."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"resourceId": "String" } ```-----
v1.0 Intune Auditing Devicemanagement https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-auditing-devicemanagement.md
Title: "deviceManagement resource type" description: "Singleton entity that acts as a container for all device app management functionality."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"id": "String (identifier)" } ```-----
v1.0 Intune Books Deviceappmanagement https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-books-deviceappmanagement.md
Title: "deviceAppManagement resource type" description: "Singleton entity that acts as a container for all device app management functionality."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"id": "String (identifier)" } ```-----
v1.0 Intune Books Deviceinstallstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-books-deviceinstallstate.md
Title: "deviceInstallState resource type" description: "Contains properties for the installation state for a device."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"userName": "String" } ```-----
v1.0 Intune Books Ebookinstallsummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-books-ebookinstallsummary.md
Title: "eBookInstallSummary resource type" description: "Contains properties for the installation summary of a book for a device."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"notInstalledUserCount": 1024 } ```-----
v1.0 Intune Books Installstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-books-installstate.md
Title: "installState enum type" description: "Possible values for install state."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for install state.
|notInstalled|3|Not Installed.| |uninstallFailed|4|Uninstall Failed.| |unknown|5|Unknown.|-----
v1.0 Intune Books Iosvppebook https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-books-iosvppebook.md
Title: "iosVppEBook resource type" description: "A class containing the properties for iOS Vpp eBook."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"usedLicenseCount": 1024 } ```-----
v1.0 Intune Books Iosvppebookassignment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-books-iosvppebookassignment.md
Title: "iosVppEBookAssignment resource type" description: "Contains properties used to assign an iOS VPP EBook to a group."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"installIntent": "String" } ```-----
v1.0 Intune Books Managedebook https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-books-managedebook.md
Title: "managedEBook resource type" description: "An abstract class containing the base properties for Managed eBook."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"privacyInformationUrl": "String" } ```-----
v1.0 Intune Books Managedebookassignment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-books-managedebookassignment.md
Title: "managedEBookAssignment resource type" description: "Contains properties used to assign a eBook to a group."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"installIntent": "String" } ```-----
v1.0 Intune Books Userinstallstatesummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-books-userinstallstatesummary.md
Title: "userInstallStateSummary resource type" description: "Contains properties for the installation state summary for a user."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"notInstalledDeviceCount": 1024 } ```-----
v1.0 Intune Companyterms Devicemanagement https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-companyterms-devicemanagement.md
Title: "deviceManagement resource type" description: "Singleton entity that acts as a container for all device management functionality."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"id": "String (identifier)" } ```-----
v1.0 Intune Companyterms Termsandconditions https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-companyterms-termsandconditions.md
Title: "termsAndConditions resource type" description: "A termsAndConditions entity represents the metadata and contents of a given Terms and Conditions (T&C) policy. T&C policiesΓÇÖ contents are presented to users upon their first attempt to enroll into Intune and subsequently upon edits where an administrator has required re-acceptance. They enable administrators to communicate the provisions to which a user must agree in order to have devices enrolled into Intune."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"version": 1024 } ```-----
v1.0 Intune Companyterms Termsandconditionsacceptancestatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-companyterms-termsandconditionsacceptancestatus.md
Title: "termsAndConditionsAcceptanceStatus resource type" description: "A termsAndConditionsAcceptanceStatus entity represents the acceptance status of a given Terms and Conditions (T&C) policy by a given user. Users must accept the most up-to-date version of the terms in order to retain access to the Company Portal."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"userPrincipalName": "String" } ```-----
v1.0 Intune Companyterms Termsandconditionsassignment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-companyterms-termsandconditionsassignment.md
Title: "termsAndConditionsAssignment resource type" description: "A termsAndConditionsAssignment entity represents the assignment of a given Terms and Conditions (T&C) policy to a given group. Users in the group will be required to accept the terms in order to have devices enrolled into Intune."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Deviceconfig Androidcompliancepolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-androidcompliancepolicy.md
Title: "androidCompliancePolicy resource type" description: "This class contains compliance settings for Android."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"securityRequireCompanyPortalAppIntegrity": true } ```-----
v1.0 Intune Deviceconfig Androidcustomconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-androidcustomconfiguration.md
Title: "androidCustomConfiguration resource type" description: "This topic provides descriptions of the declared methods, properties and relationships exposed by the androidCustomConfiguration resource."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Androidgeneraldeviceconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-androidgeneraldeviceconfiguration.md
Title: "androidGeneralDeviceConfiguration resource type" description: "This topic provides descriptions of the declared methods, properties and relationships exposed by the androidGeneralDeviceConfiguration resource."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"securityRequireVerifyApps": true } ```-----
v1.0 Intune Deviceconfig Androidrequiredpasswordtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-androidrequiredpasswordtype.md
Title: "androidRequiredPasswordType enum type" description: "Android required password type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Android required password type.
|numeric|5|Numeric password required.| |numericComplex|6|Numeric complex password required.| |any|7|A password or pattern is required, and any is acceptable.|-----
v1.0 Intune Deviceconfig Androidworkprofilecompliancepolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-androidworkprofilecompliancepolicy.md
Title: "androidWorkProfileCompliancePolicy resource type" description: "This class contains compliance settings for Android Work Profile."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"securityRequireCompanyPortalAppIntegrity": true } ```-----
v1.0 Intune Deviceconfig Androidworkprofilecrossprofiledatasharingtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-androidworkprofilecrossprofiledatasharingtype.md
Title: "androidWorkProfileCrossProfileDataSharingType enum type" description: "Android Work Profile cross profile data sharing type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Android Work Profile cross profile data sharing type.
|preventAny|1|Prevent any sharing.| |allowPersonalToWork|2|Allow data sharing request from personal profile to work profile.| |noRestrictions|3|No restrictions on sharing.|-----
v1.0 Intune Deviceconfig Androidworkprofilecustomconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-androidworkprofilecustomconfiguration.md
Title: "androidWorkProfileCustomConfiguration resource type" description: "Android Work Profile custom configuration"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Androidworkprofiledefaultapppermissionpolicytype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-androidworkprofiledefaultapppermissionpolicytype.md
Title: "androidWorkProfileDefaultAppPermissionPolicyType enum type" description: "Android Work Profile default app permission policy type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Android Work Profile default app permission policy type.
|prompt|1|Prompt.| |autoGrant|2|Auto grant.| |autoDeny|3|Auto deny.|-----
v1.0 Intune Deviceconfig Androidworkprofilegeneraldeviceconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-androidworkprofilegeneraldeviceconfiguration.md
Title: "androidWorkProfileGeneralDeviceConfiguration resource type" description: "Android Work Profile general device configuration."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"securityRequireVerifyApps": true } ```-----
v1.0 Intune Deviceconfig Androidworkprofilerequiredpasswordtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-androidworkprofilerequiredpasswordtype.md
Title: "androidWorkProfileRequiredPasswordType enum type" description: "Android Work Profile required password type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Android Work Profile required password type.
|atLeastAlphabetic|5|At least alphabetic password required.| |atLeastAlphanumeric|6|At least alphanumeric password required.| |alphanumericWithSymbols|7|At least alphanumeric with symbols password required.|-----
v1.0 Intune Deviceconfig Appledevicefeaturesconfigurationbase https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-appledevicefeaturesconfigurationbase.md
Title: "appleDeviceFeaturesConfigurationBase resource type" description: "Apple device features configuration profile."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"version": 1024 } ```-----
v1.0 Intune Deviceconfig Applicationguardblockclipboardsharingtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-applicationguardblockclipboardsharingtype.md
Title: "applicationGuardBlockClipboardSharingType enum type" description: "Possible values for applicationGuardBlockClipboardSharingType"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for applicationGuardBlockClipboardSharingType
|blockHostToContainer|2|Block clipboard to share data from Host to Container| |blockContainerToHost|3|Block clipboard to share data from Container to Host| |blockNone|4|Block clipboard to share data neither from Host to Container nor from Container to Host|-----
v1.0 Intune Deviceconfig Applicationguardblockfiletransfertype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-applicationguardblockfiletransfertype.md
Title: "applicationGuardBlockFileTransferType enum type" description: "Possible values for applicationGuardBlockFileTransfer"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for applicationGuardBlockFileTransfer
|blockImageFile|2|Block clipboard to transfer Image file| |blockNone|3|Neither of text file or image file is blocked from transferring| |blockTextFile|4|Block clipboard to transfer Text file|-----
v1.0 Intune Deviceconfig Applistitem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-applistitem.md
Title: "appListItem resource type" description: "Represents an app in the list of managed applications"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"appId": "String" } ```-----
v1.0 Intune Deviceconfig Applisttype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-applisttype.md
Title: "appListType enum type" description: "Possible values of the compliance app list."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values of the compliance app list.
|none|0|Default value, no intent.| |appsInListCompliant|1|The list represents the apps that will be considered compliant (only apps on the list are compliant).| |appsNotInListCompliant|2|The list represents the apps that will be considered non compliant (all apps are compliant except apps on the list).|-----
v1.0 Intune Deviceconfig Applockerapplicationcontroltype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-applockerapplicationcontroltype.md
Title: "appLockerApplicationControlType enum type" description: "Possible values of AppLocker Application Control Types"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values of AppLocker Application Control Types
|auditComponentsAndStoreApps|2|Audit Windows component and store apps.| |enforceComponentsStoreAppsAndSmartlocker|3|Enforce Windows components, store apps and smart locker.| |auditComponentsStoreAppsAndSmartlocker|4|Audit Windows components, store apps and smart lockerΓÇï.|-----
v1.0 Intune Deviceconfig Automaticupdatemode https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-automaticupdatemode.md
Title: "automaticUpdateMode enum type" description: "Possible values for automatic update mode."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for automatic update mode.
|autoInstallAndRebootAtMaintenanceTime|3|Auto-install and reboot at maintenance time.| |autoInstallAndRebootAtScheduledTime|4|Auto-install and reboot at scheduled time.| |autoInstallAndRebootWithoutEndUserControl|5|Auto-install and restart without end-user control|-----
v1.0 Intune Deviceconfig Autorestartnotificationdismissalmethod https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-autorestartnotificationdismissalmethod.md
Title: "autoRestartNotificationDismissalMethod enum type" description: "Auto restart required notification dismissal method"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Auto restart required notification dismissal method
|automatic|1|Auto dismissal Indicates that the notification is automatically dismissed without user intervention| |user|2|User dismissal. Allows the user to dismiss the notification| |unknownFutureValue|3|Evolvable enum member|-----
v1.0 Intune Deviceconfig Bitlockerencryptionmethod https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-bitlockerencryptionmethod.md
Title: "bitLockerEncryptionMethod enum type" description: "BitLockerEncryptionMethod types"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
BitLockerEncryptionMethod types
|aesCbc256|4|AES-CBC 256-bit.| |xtsAes128|6|XTS-AES 128-bit.| |xtsAes256|7|XTS-AES 256-bit.|-----
v1.0 Intune Deviceconfig Bitlockerremovabledrivepolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-bitlockerremovabledrivepolicy.md
Title: "bitLockerRemovableDrivePolicy resource type" description: "BitLocker Removable Drive Policies."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"blockCrossOrganizationWriteAccess": true } ```-----
v1.0 Intune Deviceconfig Dayofweek https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-dayofweek.md
Title: "dayOfWeek enum type" description: "Possible values for a weekday"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for a weekday
|thursday|4|Thursday.| |friday|5|Friday.| |saturday|6|Saturday.|-----
v1.0 Intune Deviceconfig Defendercloudblockleveltype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-defendercloudblockleveltype.md
Title: "defenderCloudBlockLevelType enum type" description: "Possible values of Cloud Block Level"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values of Cloud Block Level
|high|1|High applies a strong level of detection.| |highPlus|2|High + uses the High level and applies addition protection measures| |zeroTolerance|3|Zero tolerance blocks all unknown executables|-----
v1.0 Intune Deviceconfig Defenderdetectedmalwareactions https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-defenderdetectedmalwareactions.md
Title: "defenderDetectedMalwareActions resource type" description: "Specify DefenderΓÇÖs actions to take on detected Malware per threat level."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"severeSeverity": "String" } ```-----
v1.0 Intune Deviceconfig Defendermonitorfileactivity https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-defendermonitorfileactivity.md
Title: "defenderMonitorFileActivity enum type" description: "Possible values for monitoring file activity."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for monitoring file activity.
|monitorAllFiles|2|Monitor all files.| |monitorIncomingFilesOnly|3| Monitor incoming files only.| |monitorOutgoingFilesOnly|4|Monitor outgoing files only.|-----
v1.0 Intune Deviceconfig Defenderpromptforsamplesubmission https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-defenderpromptforsamplesubmission.md
Title: "defenderPromptForSampleSubmission enum type" description: "Possible values for prompting user for samples submission."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for prompting user for samples submission.
|promptBeforeSendingPersonalData|2|Send safe samples automatically.| |neverSendData|3|Never send data.| |sendAllDataWithoutPrompting|4|Send all data without prompting.|-----
v1.0 Intune Deviceconfig Defenderscantype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-defenderscantype.md
Title: "defenderScanType enum type" description: "Possible values for system scan type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for system scan type.
|disabled|1|System scan disabled.| |quick|2|Quick system scan.| |full|3|Full system scan.|-----
v1.0 Intune Deviceconfig Defenderthreataction https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-defenderthreataction.md
Title: "defenderThreatAction enum type" description: "DefenderΓÇÖs default action to take on detected Malware threats."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
DefenderΓÇÖs default action to take on detected Malware threats.
|allow|4|Allow the detected threat.| |userDefined|5|Allow the user to determine the action to take with the detected threat.| |block|6|Block the detected threat.|-----
v1.0 Intune Deviceconfig Devicecomplianceactionitem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-devicecomplianceactionitem.md
Title: "deviceComplianceActionItem resource type" description: "Scheduled Action Configuration"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Devicecomplianceactiontype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-devicecomplianceactiontype.md
Title: "deviceComplianceActionType enum type" description: "Scheduled Action Type Enum"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Scheduled Action Type Enum
|wipe|4|Wipe the device| |removeResourceAccessProfiles|5|Remove Resource Access Profiles from the device| |pushNotification|9|Send push notification to device|-----
v1.0 Intune Deviceconfig Devicecompliancedeviceoverview https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-devicecompliancedeviceoverview.md
Title: "deviceComplianceDeviceOverview resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"configurationVersion": 1024 } ```-----
v1.0 Intune Deviceconfig Devicecompliancedevicestatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-devicecompliancedevicestatus.md
Title: "deviceComplianceDeviceStatus resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"userPrincipalName": "String" } ```-----
v1.0 Intune Deviceconfig Devicecompliancepolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-devicecompliancepolicy.md
Title: "deviceCompliancePolicy resource type" description: "This is the base class for Compliance policy. Compliance policies are platform specific and individual per-platform compliance policies inherit from here. "-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"version": 1024 } ```-----
v1.0 Intune Deviceconfig Devicecompliancepolicyassignment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-devicecompliancepolicyassignment.md
Title: "deviceCompliancePolicyAssignment resource type" description: "Device compliance policy assignment."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Deviceconfig Devicecompliancepolicydevicestatesummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-devicecompliancepolicydevicestatesummary.md
Title: "deviceCompliancePolicyDeviceStateSummary resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"conflictDeviceCount": 1024 } ```-----
v1.0 Intune Deviceconfig Devicecompliancepolicysettingstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-devicecompliancepolicysettingstate.md
Title: "deviceCompliancePolicySettingState resource type" description: "Device Compilance Policy Setting State for a given device."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"currentValue": "String" } ```-----
v1.0 Intune Deviceconfig Devicecompliancepolicysettingstatesummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-devicecompliancepolicysettingstatesummary.md
Title: "deviceCompliancePolicySettingStateSummary resource type" description: "Device Compilance Policy Setting State summary across the account."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"conflictDeviceCount": 1024 } ```-----
v1.0 Intune Deviceconfig Devicecompliancescheduledactionforrule https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-devicecompliancescheduledactionforrule.md
Title: "deviceComplianceScheduledActionForRule resource type" description: "Scheduled Action for Rule"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"ruleName": "String" } ```-----
v1.0 Intune Deviceconfig Devicecompliancesettingstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-devicecompliancesettingstate.md
Title: "deviceComplianceSettingState resource type" description: "Device compliance setting State for a given device."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"complianceGracePeriodExpirationDateTime": "String (timestamp)" } ```-----
v1.0 Intune Deviceconfig Devicecomplianceuseroverview https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-devicecomplianceuseroverview.md
Title: "deviceComplianceUserOverview resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"configurationVersion": 1024 } ```-----
v1.0 Intune Deviceconfig Devicecomplianceuserstatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-devicecomplianceuserstatus.md
Title: "deviceComplianceUserStatus resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"userPrincipalName": "String" } ```-----
v1.0 Intune Deviceconfig Deviceconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-deviceconfiguration.md
Title: "deviceConfiguration resource type" description: "Device Configuration."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"version": 1024 } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationassignment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-deviceconfigurationassignment.md
Title: "deviceConfigurationAssignment resource type" description: "The device configuration assignment entity assigns an AAD group to a specific device configuration."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationdeviceoverview https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-deviceconfigurationdeviceoverview.md
Title: "deviceConfigurationDeviceOverview resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"configurationVersion": 1024 } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationdevicestatesummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-deviceconfigurationdevicestatesummary.md
Title: "deviceConfigurationDeviceStateSummary resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"conflictDeviceCount": 1024 } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationdevicestatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-deviceconfigurationdevicestatus.md
Title: "deviceConfigurationDeviceStatus resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"userPrincipalName": "String" } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationsettingstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-deviceconfigurationsettingstate.md
Title: "deviceConfigurationSettingState resource type" description: "Device Configuration Setting State for a given device."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"currentValue": "String" } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationuseroverview https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-deviceconfigurationuseroverview.md
Title: "deviceConfigurationUserOverview resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"configurationVersion": 1024 } ```-----
v1.0 Intune Deviceconfig Deviceconfigurationuserstatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-deviceconfigurationuserstatus.md
Title: "deviceConfigurationUserStatus resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"userPrincipalName": "String" } ```-----
v1.0 Intune Deviceconfig Devicemanagement https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-devicemanagement.md
Title: "deviceManagement resource type" description: "Singleton entity that acts as a container for all device management functionality."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"intuneAccountId": "Guid" } ```-----
v1.0 Intune Deviceconfig Devicemanagementsettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-devicemanagementsettings.md
Title: "deviceManagementSettings resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"secureByDefault": true } ```-----
v1.0 Intune Deviceconfig Devicethreatprotectionlevel https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-devicethreatprotectionlevel.md
Title: "deviceThreatProtectionLevel enum type" description: "Device threat protection levels for the Device Threat Protection API."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Device threat protection levels for the Device Threat Protection API.
|medium|3|Device Threat Protection level requirement: Medium. Medium represents a severity of threat that poses moderate risk to the device or device data.| |high|4|Device Threat Protection level requirement: High. High represents a severity of threat that poses severe risk to the device or device data.| |notSet|10|Device Threat Protection level requirement: Not Set. Not set represents that there is no requirement for the device to meet a Threat Protection level.|-----
v1.0 Intune Deviceconfig Diagnosticdatasubmissionmode https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-diagnosticdatasubmissionmode.md
Title: "diagnosticDataSubmissionMode enum type" description: "Allow the device to send diagnostic and usage telemetry data, such as Watson."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Allow the device to send diagnostic and usage telemetry data, such as Watson.
|basic|2|Sends basic telemetry data.| |enhanced|3|Sends enhanced telemetry data including usage and insights data.| |full|4|Sends full telemetry data including diagnostic data, such as system state.|-----
v1.0 Intune Deviceconfig Edgecookiepolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-edgecookiepolicy.md
Title: "edgeCookiePolicy enum type" description: "Possible values to specify which cookies are allowed in Microsoft Edge."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values to specify which cookies are allowed in Microsoft Edge.
|allow|1|Allow.| |blockThirdParty|2|Block only third party cookies.| |blockAll|3|Block all cookies.|-----
v1.0 Intune Deviceconfig Edgesearchengine https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-edgesearchengine.md
Title: "edgeSearchEngine resource type" description: "Allows IT admins to set a predefined default search engine for MDM-Controlled devices."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"edgeSearchEngineType": "String" } ```-----
v1.0 Intune Deviceconfig Edgesearchenginebase https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-edgesearchenginebase.md
Title: "edgeSearchEngineBase resource type" description: "Allows IT admins to set a default search engine for MDM-Controlled devices. Users can override this and change their default search engine provided the AllowSearchEngineCustomization policy is not set."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"@odata.type": "#microsoft.graph.edgeSearchEngineBase" } ```-----
v1.0 Intune Deviceconfig Edgesearchenginecustom https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-edgesearchenginecustom.md
Title: "edgeSearchEngineCustom resource type" description: "Allows IT admins to set a custom default search engine for MDM-Controlled devices."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"edgeSearchEngineOpenSearchXmlUrl": "String" } ```-----
v1.0 Intune Deviceconfig Edgesearchenginetype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-edgesearchenginetype.md
Title: "edgeSearchEngineType enum type" description: "Allows IT admind to set a predefined default search engine for MDM-Controlled devices"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Allows IT admind to set a predefined default search engine for MDM-Controlled de
|:|:|:| |default|0|Uses factory settings of Edge to assign the default search engine as per the user market| |bing|1|Sets Bing as the default search engine|-----
v1.0 Intune Deviceconfig Editionupgradeconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-editionupgradeconfiguration.md
Title: "editionUpgradeConfiguration resource type" description: "Windows 10 Edition Upgrade configuration."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"productKey": "String" } ```-----
v1.0 Intune Deviceconfig Editionupgradelicensetype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-editionupgradelicensetype.md
Title: "editionUpgradeLicenseType enum type" description: "Edition Upgrade License type"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Edition Upgrade License type
|:|:|:| |productKey|0|Product Key Type| |licenseFile|1|License File Type|-----
v1.0 Intune Deviceconfig Enablement https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-enablement.md
Title: "enablement enum type" description: "Possible values of a property"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values of a property
|notConfigured|0|Device default value, no intent.| |enabled|1|Enables the setting on the device.| |disabled|2|Disables the setting on the device.|-----
v1.0 Intune Deviceconfig Firewallcertificaterevocationlistcheckmethodtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-firewallcertificaterevocationlistcheckmethodtype.md
Title: "firewallCertificateRevocationListCheckMethodType enum type" description: "Possible values for firewallCertificateRevocationListCheckMethod"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for firewallCertificateRevocationListCheckMethod
|none|1|Do not check certificate revocation list| |attempt|2|Attempt CRL check and allow a certificate only if the certificate is confirmed by the check| |require|3|Require a successful CRL check before allowing a certificate|-----
v1.0 Intune Deviceconfig Firewallpacketqueueingmethodtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-firewallpacketqueueingmethodtype.md
Title: "firewallPacketQueueingMethodType enum type" description: "Possible values for firewallPacketQueueingMethod"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for firewallPacketQueueingMethod
|queueInbound|2|Queue inbound encrypted packets| |queueOutbound|3|Queue decrypted outbound packets for forwarding| |queueBoth|4|Queue both inbound and outbound packets|-----
v1.0 Intune Deviceconfig Firewallpresharedkeyencodingmethodtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-firewallpresharedkeyencodingmethodtype.md
Title: "firewallPreSharedKeyEncodingMethodType enum type" description: "Possible values for firewallPreSharedKeyEncodingMethod"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for firewallPreSharedKeyEncodingMethod
|deviceDefault|0|No value configured by Intune, do not override the user-configured device default value| |none|1|Preshared key is not encoded. Instead, it is kept in its wide-character format| |utF8|2|Encode the preshared key using UTF-8|-----
v1.0 Intune Deviceconfig Internetsitesecuritylevel https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-internetsitesecuritylevel.md
Title: "internetSiteSecurityLevel enum type" description: "Possible values for internet site security level."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for internet site security level.
|medium|1|Medium.| |mediumHigh|2|Medium-High.| |high|3|High.|-----
v1.0 Intune Deviceconfig Ioscertificateprofile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-ioscertificateprofile.md
Title: "iosCertificateProfile resource type" description: "Device Configuration."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"version": 1024 } ```-----
v1.0 Intune Deviceconfig Ioscompliancepolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-ioscompliancepolicy.md
Title: "iosCompliancePolicy resource type" description: "This class contains compliance settings for IOS."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"managedEmailProfileRequired": true } ```-----
v1.0 Intune Deviceconfig Ioscustomconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-ioscustomconfiguration.md
Title: "iosCustomConfiguration resource type" description: "This topic provides descriptions of the declared methods, properties and relationships exposed by the iosCustomConfiguration resource."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"payload": "binary" } ```-----
v1.0 Intune Deviceconfig Iosdevicefeaturesconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-iosdevicefeaturesconfiguration.md
Title: "iosDeviceFeaturesConfiguration resource type" description: "iOS Device Features Configuration Profile."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Iosgeneraldeviceconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-iosgeneraldeviceconfiguration.md
Title: "iosGeneralDeviceConfiguration resource type" description: "This topic provides descriptions of the declared methods, properties and relationships exposed by the iosGeneralDeviceConfiguration resource."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"wiFiConnectOnlyToConfiguredNetworks": true } ```-----
v1.0 Intune Deviceconfig Ioshomescreenapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-ioshomescreenapp.md
Title: "iosHomeScreenApp resource type" description: "Represents an icon for an app on the Home Screen"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"bundleID": "String" } ```-----
v1.0 Intune Deviceconfig Ioshomescreenfolder https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-ioshomescreenfolder.md
Title: "iosHomeScreenFolder resource type" description: "A folder containing pages of apps and web clips on the Home Screen."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Ioshomescreenfolderpage https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-ioshomescreenfolderpage.md
Title: "iosHomeScreenFolderPage resource type" description: "A page for a folder containing apps and web clips on the Home Screen."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Ioshomescreenitem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-ioshomescreenitem.md
Title: "iosHomeScreenItem resource type" description: "Represents an item on the iOS Home Screen"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"displayName": "String" } ```-----
v1.0 Intune Deviceconfig Ioshomescreenpage https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-ioshomescreenpage.md
Title: "iosHomeScreenPage resource type" description: "A page containing apps, folders, and web clips on the Home Screen."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Iosnetworkusagerule https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-iosnetworkusagerule.md
Title: "iosNetworkUsageRule resource type" description: "Network Usage Rules allow enterprises to specify how managed apps use networks, such as cellular data networks."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"cellularDataBlocked": true } ```-----
v1.0 Intune Deviceconfig Iosnotificationalerttype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-iosnotificationalerttype.md
Title: "iosNotificationAlertType enum type" description: "Notification Settings Alert Type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Notification Settings Alert Type.
|banner|1|Banner.| |modal|2|Modal.| |none|3|None.|-----
v1.0 Intune Deviceconfig Iosnotificationsettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-iosnotificationsettings.md
Title: "iosNotificationSettings resource type" description: "An item describing notification setting."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"soundsEnabled": true } ```-----
v1.0 Intune Deviceconfig Iosupdateconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-iosupdateconfiguration.md
Title: "iosUpdateConfiguration resource type" description: "IOS Update Configuration, allows you to configure time window within week to install iOS updates"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"utcTimeOffsetInMinutes": 1024 } ```-----
v1.0 Intune Deviceconfig Iosupdatedevicestatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-iosupdatedevicestatus.md
Title: "iosUpdateDeviceStatus resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"userPrincipalName": "String" } ```-----
v1.0 Intune Deviceconfig Iosupdatesinstallstatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-iosupdatesinstallstatus.md
Title: "iosUpdatesInstallStatus enum type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Not yet documented
|notSupportedOperation|-2016330701|Not yet documented| |sharedDeviceUserLoggedInError|-2016330699|Not yet documented| |deviceOsHigherThanDesiredOsVersion|-2016330696|Not yet documented|-----
v1.0 Intune Deviceconfig Macoscompliancepolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-macoscompliancepolicy.md
Title: "macOSCompliancePolicy resource type" description: "This class contains compliance settings for Mac OS."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"firewallEnableStealthMode": true } ```-----
v1.0 Intune Deviceconfig Macoscustomconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-macoscustomconfiguration.md
Title: "macOSCustomConfiguration resource type" description: "This topic provides descriptions of the declared methods, properties and relationships exposed by the macOSCustomConfiguration resource."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"payload": "binary" } ```-----
v1.0 Intune Deviceconfig Macosdevicefeaturesconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-macosdevicefeaturesconfiguration.md
Title: "macOSDeviceFeaturesConfiguration resource type" description: "MacOS device features configuration profile."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"version": 1024 } ```-----
v1.0 Intune Deviceconfig Macosgeneraldeviceconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-macosgeneraldeviceconfiguration.md
Title: "macOSGeneralDeviceConfiguration resource type" description: "This topic provides descriptions of the declared methods, properties and relationships exposed by the macOSGeneralDeviceConfiguration resource."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"passwordRequired": true } ```-----
v1.0 Intune Deviceconfig Mediacontentratingaustralia https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-mediacontentratingaustralia.md
Title: "mediaContentRatingAustralia resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"tvRating": "String" } ```-----
v1.0 Intune Deviceconfig Mediacontentratingcanada https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-mediacontentratingcanada.md
Title: "mediaContentRatingCanada resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"tvRating": "String" } ```-----
v1.0 Intune Deviceconfig Mediacontentratingfrance https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-mediacontentratingfrance.md
Title: "mediaContentRatingFrance resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"tvRating": "String" } ```-----
v1.0 Intune Deviceconfig Mediacontentratinggermany https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-mediacontentratinggermany.md
Title: "mediaContentRatingGermany resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"tvRating": "String" } ```-----
v1.0 Intune Deviceconfig Mediacontentratingireland https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-mediacontentratingireland.md
Title: "mediaContentRatingIreland resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"tvRating": "String" } ```-----
v1.0 Intune Deviceconfig Mediacontentratingjapan https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-mediacontentratingjapan.md
Title: "mediaContentRatingJapan resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"tvRating": "String" } ```-----
v1.0 Intune Deviceconfig Mediacontentratingnewzealand https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-mediacontentratingnewzealand.md
Title: "mediaContentRatingNewZealand resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"tvRating": "String" } ```-----
v1.0 Intune Deviceconfig Mediacontentratingunitedkingdom https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-mediacontentratingunitedkingdom.md
Title: "mediaContentRatingUnitedKingdom resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"tvRating": "String" } ```-----
v1.0 Intune Deviceconfig Mediacontentratingunitedstates https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-mediacontentratingunitedstates.md
Title: "mediaContentRatingUnitedStates resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"tvRating": "String" } ```-----
v1.0 Intune Deviceconfig Miracastchannel https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-miracastchannel.md
Title: "miracastChannel enum type" description: "Possible values for Miracast channel."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for Miracast channel.
|oneHundredFiftySeven|157|OneHundredFifty-Seven.| |oneHundredSixtyOne|161|OneHundredSixty-One.| |oneHundredSixtyFive|165|OneHundredSixty-Five.|-----
v1.0 Intune Deviceconfig Omasetting https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-omasetting.md
Title: "omaSetting resource type" description: "OMA Settings definition."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"omaUri": "String" } ```-----
v1.0 Intune Deviceconfig Omasettingbase64 https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-omasettingbase64.md
Title: "omaSettingBase64 resource type" description: "OMA Settings Base64 definition."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"value": "String" } ```-----
v1.0 Intune Deviceconfig Omasettingboolean https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-omasettingboolean.md
Title: "omaSettingBoolean resource type" description: "OMA Settings Boolean definition."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"value": true } ```-----
v1.0 Intune Deviceconfig Omasettingdatetime https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-omasettingdatetime.md
Title: "omaSettingDateTime resource type" description: "OMA Settings DateTime definition."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"value": "String (timestamp)" } ```-----
v1.0 Intune Deviceconfig Omasettingfloatingpoint https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-omasettingfloatingpoint.md
Title: "omaSettingFloatingPoint resource type" description: "OMA Settings Floating Point definition."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"value": 4.2 } ```-----
v1.0 Intune Deviceconfig Omasettinginteger https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-omasettinginteger.md
Title: "omaSettingInteger resource type" description: "OMA Settings Integer definition."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"value": 1024 } ```-----
v1.0 Intune Deviceconfig Omasettingstring https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-omasettingstring.md
Title: "omaSettingString resource type" description: "OMA Settings String definition."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"value": "String" } ```-----
v1.0 Intune Deviceconfig Omasettingstringxml https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-omasettingstringxml.md
Title: "omaSettingStringXml resource type" description: "OMA Settings StringXML definition."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"value": "binary" } ```-----
v1.0 Intune Deviceconfig Policyplatformtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-policyplatformtype.md
Title: "policyPlatformType enum type" description: "Supported platform types for policies."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Supported platform types for policies.
|windows10AndLater|6|Windows 10 and later.| |androidWorkProfile|7|AndroidWorkProfile.| |all|100|All platforms.|-----
v1.0 Intune Deviceconfig Prereleasefeatures https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-prereleasefeatures.md
Title: "prereleaseFeatures enum type" description: "Possible values for pre-release features."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for pre-release features.
|settingsOnly|1|Settings only pre-release features.| |settingsAndExperimentations|2|Settings and experimentations pre-release features.| |notAllowed|3|Pre-release features not allowed.|-----
v1.0 Intune Deviceconfig Ratingappstype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-ratingappstype.md
Title: "ratingAppsType enum type" description: "Apps rating as in media content"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Apps rating as in media content
|agesAbove9|3|9+, age 9 and above| |agesAbove12|4|12+, age 12 and above | |agesAbove17|5|17+, age 17 and above|-----
v1.0 Intune Deviceconfig Ratingaustraliamoviestype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-ratingaustraliamoviestype.md
Title: "ratingAustraliaMoviesType enum type" description: "Movies rating labels in Australia"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Movies rating labels in Australia
|mature|4|The M classification is not recommended for viewers under 15| |agesAbove15|5|The MA15+ classification is not suitable for viewers under 15| |agesAbove18|6|The R18+ classification is not suitable for viewers under 18|-----
v1.0 Intune Deviceconfig Ratingaustraliatelevisiontype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-ratingaustraliatelevisiontype.md
Title: "ratingAustraliaTelevisionType enum type" description: "TV content rating labels in Australia"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
TV content rating labels in Australia
|mature|6|The M classification is recommended for viewers over 15| |agesAbove15|7|The MA15+ classification is not suitable for viewers under 15| |agesAbove15AdultViolence|8|The AV15+ classification is not suitable for viewers under 15, adult violence-specific|-----
v1.0 Intune Deviceconfig Ratingcanadamoviestype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-ratingcanadamoviestype.md
Title: "ratingCanadaMoviesType enum type" description: "Movies rating labels in Canada"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Movies rating labels in Canada
|agesAbove14|4|The 14A classification is suitable for viewers above 14 or older| |agesAbove18|5|The 18A classification is suitable for viewers above 18 or older| |restricted|6|The R classification is restricted to 18 years and older|-----
v1.0 Intune Deviceconfig Ratingcanadatelevisiontype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-ratingcanadatelevisiontype.md
Title: "ratingCanadaTelevisionType enum type" description: "TV content rating labels in Canada"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
TV content rating labels in Canada
|parentalGuidance|5|PG, Parental Guidance| |agesAbove14|6|The 14+ classification is intended for viewers ages 14 and older| |agesAbove18|7|The 18+ classification is intended for viewers ages 18 and older|-----
v1.0 Intune Deviceconfig Ratingfrancemoviestype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-ratingfrancemoviestype.md
Title: "ratingFranceMoviesType enum type" description: "Movies rating labels in France"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Movies rating labels in France
|agesAbove12|3|The 12 classification prohibits the screening of the film to minors under 12| |agesAbove16|4|The 16 classification prohibits the screening of the film to minors under 16| |agesAbove18|5|The 18 classification prohibits the screening to minors under 18|-----
v1.0 Intune Deviceconfig Ratingfrancetelevisiontype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-ratingfrancetelevisiontype.md
Title: "ratingFranceTelevisionType enum type" description: "TV content rating labels in France"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
TV content rating labels in France
|agesAbove12|3|The -12 classification is not recommended for children under 12| |agesAbove16|4|The -16 classification is not recommended for children under 16| |agesAbove18|5|The -18 classification is not recommended for persons under 18|-----
v1.0 Intune Deviceconfig Ratinggermanymoviestype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-ratinggermanymoviestype.md
Title: "ratingGermanyMoviesType enum type" description: "Movies rating labels in Germany"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Movies rating labels in Germany
|agesAbove12|4|Ab 12 Jahren, ages 12 and older| |agesAbove16|5|Ab 16 Jahren, ages 16 and older| |adults|6|Ab 18 Jahren, adults only|-----
v1.0 Intune Deviceconfig Ratinggermanytelevisiontype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-ratinggermanytelevisiontype.md
Title: "ratingGermanyTelevisionType enum type" description: "TV content rating labels in Germany"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
TV content rating labels in Germany
|agesAbove12|4|Ab 12 Jahren, ages 12 and older| |agesAbove16|5|Ab 16 Jahren, ages 16 and older| |adults|6|Ab 18 Jahren, adults only|-----
v1.0 Intune Deviceconfig Ratingirelandmoviestype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-ratingirelandmoviestype.md
Title: "ratingIrelandMoviesType enum type" description: "Movies rating labels in Ireland"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Movies rating labels in Ireland
|agesAbove15|5|The 15A classification is suitable for viewers of 15 or older| |agesAbove16|6|The 16 classification is suitable for viewers of 16 or older| |adults|7|The 18 classification, suitable only for adults|-----
v1.0 Intune Deviceconfig Ratingirelandtelevisiontype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-ratingirelandtelevisiontype.md
Title: "ratingIrelandTelevisionType enum type" description: "TV content rating labels in Ireland"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
TV content rating labels in Ireland
|youngAdults|4|The YA classification is suitable for teenage audience| |parentalSupervision|5|The PS classification invites parents and guardians to consider restriction childrenΓÇÖs access| |mature|6|The MA classification is suitable for adults|-----
v1.0 Intune Deviceconfig Ratingjapanmoviestype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-ratingjapanmoviestype.md
Title: "ratingJapanMoviesType enum type" description: "Movies rating labels in Japan"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Movies rating labels in Japan
|parentalGuidance|3|The PG-12 classification requests parental guidance for young people under 12| |agesAbove15|4|The R15+ classification is suitable for viewers of 15 or older| |agesAbove18|5|The R18+ classification is suitable for viewers of 18 or older|-----
v1.0 Intune Deviceconfig Ratingjapantelevisiontype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-ratingjapantelevisiontype.md
Title: "ratingJapanTelevisionType enum type" description: "TV content rating labels in Japan"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
TV content rating labels in Japan
|allAllowed|0|Default value, allow all TV shows content| |allBlocked|1|Do not allow any TV shows content| |explicitAllowed|2|All TV content is explicitly allowed|-----
v1.0 Intune Deviceconfig Ratingnewzealandmoviestype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-ratingnewzealandmoviestype.md
Title: "ratingNewZealandMoviesType enum type" description: "Movies rating labels in New Zealand"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Movies rating labels in New Zealand
|agesAbove18|8|The R18 classification is restricted to persons 18 years and over| |restricted|9|The R classification is restricted to a certain audience| |agesAbove16Restricted|10|The RP16 classification requires viewers under 16 accompanied by a parent or an adult|-----
v1.0 Intune Deviceconfig Ratingnewzealandtelevisiontype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-ratingnewzealandtelevisiontype.md
Title: "ratingNewZealandTelevisionType enum type" description: "TV content rating labels in New Zealand"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
TV content rating labels in New Zealand
|general|2|The G classification excludes materials likely to harm children under 14| |parentalGuidance|3|The PGR classification encourages parents and guardians to supervise younger viewers| |adults|4|The AO classification is not suitable for children|-----
v1.0 Intune Deviceconfig Ratingunitedkingdommoviestype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-ratingunitedkingdommoviestype.md
Title: "ratingUnitedKingdomMoviesType enum type" description: "Movies rating labels in United Kingdom"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Movies rating labels in United Kingdom
|agesAbove12Cinema|6|12A, cinema release suitable for 12 years and over| |agesAbove15|7|15, suitable only for 15 years and older| |adults|8|Suitable only for adults|-----
v1.0 Intune Deviceconfig Ratingunitedkingdomtelevisiontype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-ratingunitedkingdomtelevisiontype.md
Title: "ratingUnitedKingdomTelevisionType enum type" description: "TV content rating labels in United Kingdom"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
TV content rating labels in United Kingdom
|allAllowed|0|Default value, allow all TV shows content| |allBlocked|1|Do not allow any TV shows content| |caution|2|Allowing TV contents with a warning message|-----
v1.0 Intune Deviceconfig Ratingunitedstatesmoviestype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-ratingunitedstatesmoviestype.md
Title: "ratingUnitedStatesMoviesType enum type" description: "Movies rating labels in United States"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Movies rating labels in United States
|parentalGuidance13|4|PG13, some material may be inappropriate for children under 13| |restricted|5|R, viewers under 17 require accompanying parent or adult guardian| |adults|6|NC17, adults only|-----
v1.0 Intune Deviceconfig Ratingunitedstatestelevisiontype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-ratingunitedstatestelevisiontype.md
Title: "ratingUnitedStatesTelevisionType enum type" description: "TV content rating labels in United States"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
TV content rating labels in United States
|parentalGuidance|5|TV-PG, parental guidance| |childrenAbove14|6|TV-14, children age 14 and above| |adults|7|TV-MA, adults only|-----
v1.0 Intune Deviceconfig Report https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-report.md
Title: "report resource type" description: "Device Configuration profile History reports."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"content": "Stream" } ```-----
v1.0 Intune Deviceconfig Reportroot https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-reportroot.md
Title: "reportRoot resource type" description: "The resource that represents an instance of History Reports."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"id": "String (identifier)" } ```-----
v1.0 Intune Deviceconfig Requiredpasswordtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-requiredpasswordtype.md
Title: "requiredPasswordType enum type" description: "Possible values of required passwords."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values of required passwords.
|deviceDefault|0|Device default value, no intent.| |alphanumeric|1|Alphanumeric password required.| |numeric|2|Numeric password required.|-----
v1.0 Intune Deviceconfig Safesearchfiltertype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-safesearchfiltertype.md
Title: "safeSearchFilterType enum type" description: "Specifies what level of safe search (filtering adult content) is required"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Specifies what level of safe search (filtering adult content) is required
|userDefined|0|User Defined, default value, no intent.| |strict|1|Strict, highest filtering against adult content.| |moderate|2|Moderate filtering against adult content (valid search results will not be filtered).|-----
v1.0 Intune Deviceconfig Settingsource https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-settingsource.md
Title: "settingSource resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"sourceType": "String" } ```-----
v1.0 Intune Deviceconfig Settingsourcetype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-settingsourcetype.md
Title: "settingSourceType enum type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Not yet documented
|:|:|:| |deviceConfiguration|0|Not yet documented| |deviceIntent|1|Not yet documented|-----
v1.0 Intune Deviceconfig Settingstatedevicesummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-settingstatedevicesummary.md
Title: "settingStateDeviceSummary resource type" description: "Device Compilance Policy and Configuration for a Setting State summary"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"conflictDeviceCount": 1024 } ```-----
v1.0 Intune Deviceconfig Sharedpcaccountdeletionpolicytype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-sharedpcaccountdeletionpolicytype.md
Title: "sharedPCAccountDeletionPolicyType enum type" description: "Possible values for when accounts are deleted on a shared PC."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for when accounts are deleted on a shared PC.
|immediate|0|Delete immediately.| |diskSpaceThreshold|1|Delete at disk space threshold.| |diskSpaceThresholdOrInactiveThreshold|2|Delete at disk space threshold or inactive threshold.|-----
v1.0 Intune Deviceconfig Sharedpcaccountmanagerpolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-sharedpcaccountmanagerpolicy.md
Title: "sharedPCAccountManagerPolicy resource type" description: "SharedPC Account Manager Policy. Only applies when the account manager is enabled."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"removeAccountsBelowDiskFreePercentage": 1024 } ```-----
v1.0 Intune Deviceconfig Sharedpcallowedaccounttype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-sharedpcallowedaccounttype.md
Title: "sharedPCAllowedAccountType enum type" description: "Type of accounts that are allowed to share the PC."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Type of accounts that are allowed to share the PC.
|:|:|:| |guest|1|Only guest accounts.| |domain|2|Only domain-joined accounts.|-----
v1.0 Intune Deviceconfig Sharedpcconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-sharedpcconfiguration.md
Title: "sharedPCConfiguration resource type" description: "This topic provides descriptions of the declared methods, properties and relationships exposed by the sharedPCConfiguration resource."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"maintenanceStartTime": "String (time of day)" } ```-----
v1.0 Intune Deviceconfig Sitesecuritylevel https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-sitesecuritylevel.md
Title: "siteSecurityLevel enum type" description: "Possible values for site security level."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for site security level.
|medium|3|Medium.| |mediumHigh|4|Medium-high.| |high|5|High.|-----
v1.0 Intune Deviceconfig Softwareupdatestatussummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-softwareupdatestatussummary.md
Title: "softwareUpdateStatusSummary resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"notApplicableUserCount": 1024 } ```-----
v1.0 Intune Deviceconfig Statemanagementsetting https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-statemanagementsetting.md
Title: "stateManagementSetting enum type" description: "State Management Setting."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
State Management Setting.
|notConfigured|0|Not configured.| |blocked|1|Blocked.| |allowed|2|Allowed.|-----
v1.0 Intune Deviceconfig Visibilitysetting https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-visibilitysetting.md
Title: "visibilitySetting enum type" description: "Generic visibility state."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Generic visibility state.
|notConfigured|0|Not configured.| |hide|1|Hide.| |show|2|Show.|-----
v1.0 Intune Deviceconfig Webbrowsercookiesettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-webbrowsercookiesettings.md
Title: "webBrowserCookieSettings enum type" description: "Web Browser Cookie Settings."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Web Browser Cookie Settings.
|allowCurrentWebSite|2|Allow cookies from current Web site.| |allowFromWebsitesVisited|3|Allow Cookies from websites visited.| |allowAlways|4|Always allow cookies.|-----
v1.0 Intune Deviceconfig Weeklyschedule https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-weeklyschedule.md
Title: "weeklySchedule enum type" description: "Possible values for a weekly schedule."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for a weekly schedule.
|thursday|6|Thursday.| |friday|7|Friday.| |saturday|8|Saturday.|-----
v1.0 Intune Deviceconfig Welcomescreenmeetinginformation https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-welcomescreenmeetinginformation.md
Title: "welcomeScreenMeetingInformation enum type" description: "Possible values for welcome screen meeting information."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for welcome screen meeting information.
|userDefined|0|User Defined, default value, no intent.| |showOrganizerAndTimeOnly|1|Show organizer and time only.| |showOrganizerAndTimeAndSubject|2|Show organizer, time and subject (subject is hidden for private meetings).|-----
v1.0 Intune Deviceconfig Windows10compliancepolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-windows10compliancepolicy.md
Title: "windows10CompliancePolicy resource type" description: "This class contains compliance settings for Windows 10."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"storageRequireEncryption": true } ```-----
v1.0 Intune Deviceconfig Windows10customconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-windows10customconfiguration.md
Title: "windows10CustomConfiguration resource type" description: "This topic provides descriptions of the declared methods, properties and relationships exposed by the windows10CustomConfiguration resource."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Windows10editiontype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-windows10editiontype.md
Title: "windows10EditionType enum type" description: "Windows 10 Edition type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Windows 10 Edition type.
|windows10ProfessionalEducationN|9|Windows 10 Professional EducationN| |windows10ProfessionalWorkstation|10|Windows 10 Professional for Workstations| |windows10ProfessionalWorkstationN|11|Windows 10 Professional for Workstations N|-----
v1.0 Intune Deviceconfig Windows10endpointprotectionconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-windows10endpointprotectionconfiguration.md
Title: "windows10EndpointProtectionConfiguration resource type" description: "This topic provides descriptions of the declared methods, properties and relationships exposed by the Windows10EndpointProtectionConfiguration resource."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Deviceconfig Windows10enterprisemodernappmanagementconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-windows10enterprisemodernappmanagementconfiguration.md
Title: "windows10EnterpriseModernAppManagementConfiguration resource type" description: "Windows10 Enterprise Modern App Management Configuration."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"uninstallBuiltInApps": true } ```-----
v1.0 Intune Deviceconfig Windows10generalconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-windows10generalconfiguration.md
Title: "windows10GeneralConfiguration resource type" description: "This topic provides descriptions of the declared methods, properties and relationships exposed by the windows10GeneralConfiguration resource."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"tenantLockdownRequireNetworkDuringOutOfBoxExperience": true } ```-----
v1.0 Intune Deviceconfig Windows10mobilecompliancepolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-windows10mobilecompliancepolicy.md
Title: "windows10MobileCompliancePolicy resource type" description: "This class contains compliance settings for Windows 10 Mobile."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"storageRequireEncryption": true } ```-----
v1.0 Intune Deviceconfig Windows10networkproxyserver https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-windows10networkproxyserver.md
Title: "windows10NetworkProxyServer resource type" description: "Network Proxy Server Policy."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"useForLocalAddresses": true } ```-----
v1.0 Intune Deviceconfig Windows10secureassessmentconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-windows10secureassessmentconfiguration.md
Title: "windows10SecureAssessmentConfiguration resource type" description: "This topic provides descriptions of the declared methods, properties and relationships exposed by the secureAssessment resource."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"allowTextSuggestion": true } ```-----
v1.0 Intune Deviceconfig Windows10teamgeneralconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-windows10teamgeneralconfiguration.md
Title: "windows10TeamGeneralConfiguration resource type" description: "This topic provides descriptions of the declared methods, properties and relationships exposed by the windows10TeamGeneralConfiguration resource."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"welcomeScreenMeetingInformation": "String" } ```-----
v1.0 Intune Deviceconfig Windows81compliancepolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-windows81compliancepolicy.md
Title: "windows81CompliancePolicy resource type" description: "This class contains compliance settings for Windows 8.1."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"storageRequireEncryption": true } ```-----
v1.0 Intune Deviceconfig Windows81generalconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-windows81generalconfiguration.md
Title: "windows81GeneralConfiguration resource type" description: "This topic provides descriptions of the declared methods, properties and relationships exposed by the windows81GeneralConfiguration resource."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"workFoldersUrl": "String" } ```-----
v1.0 Intune Deviceconfig Windowsdefenderadvancedthreatprotectionconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-windowsdefenderadvancedthreatprotectionconfiguration.md
Title: "windowsDefenderAdvancedThreatProtectionConfiguration resource type" description: "Windows Defender AdvancedThreatProtection Configuration."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"enableExpeditedTelemetryReporting": true } ```-----
v1.0 Intune Deviceconfig Windowsdeliveryoptimizationmode https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-windowsdeliveryoptimizationmode.md
Title: "windowsDeliveryOptimizationMode enum type" description: "Delivery optimization mode for peer distribution"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Delivery optimization mode for peer distribution
|httpWithInternetPeering|4|HTTP blended with Internet peering| |simpleDownload|99|Simple download mode with no peering| |bypassMode|100|Bypass mode. Do not use Delivery Optimization and use BITS instead|-----
v1.0 Intune Deviceconfig Windowsfirewallnetworkprofile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-windowsfirewallnetworkprofile.md
Title: "windowsFirewallNetworkProfile resource type" description: "Windows Firewall Profile Policies."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"policyRulesFromGroupPolicyMerged": true } ```-----
v1.0 Intune Deviceconfig Windowsphone81compliancepolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-windowsphone81compliancepolicy.md
Title: "windowsPhone81CompliancePolicy resource type" description: "This class contains compliance settings for Windows 8.1 Mobile."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"storageRequireEncryption": true } ```-----
v1.0 Intune Deviceconfig Windowsphone81customconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-windowsphone81customconfiguration.md
Title: "windowsPhone81CustomConfiguration resource type" description: "This topic provides descriptions of the declared methods, properties and relationships exposed by the windowsPhone81CustomConfiguration resource."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Deviceconfig Windowsphone81generalconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-windowsphone81generalconfiguration.md
Title: "windowsPhone81GeneralConfiguration resource type" description: "This topic provides descriptions of the declared methods, properties and relationships exposed by the windowsPhone81GeneralConfiguration resource."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"windowsStoreBlocked": true } ```-----
v1.0 Intune Deviceconfig Windowsspotlightenablementsettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-windowsspotlightenablementsettings.md
Title: "windowsSpotlightEnablementSettings enum type" description: "Allows IT admind to set a predefined default search engine for MDM-Controlled devices"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Allows IT admind to set a predefined default search engine for MDM-Controlled de
|notConfigured|0|Spotlight on lock screen is not configured| |disabled|1|Disable Windows Spotlight on lock screen| |enabled|2|Enable Windows Spotlight on lock screen|-----
v1.0 Intune Deviceconfig Windowsstartmenuapplistvisibilitytype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-windowsstartmenuapplistvisibilitytype.md
Title: "windowsStartMenuAppListVisibilityType enum type" description: "Type of start menu app list visibility."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Type of start menu app list visibility.
|collapse|1|Collapse the app list on the start menu.| |remove|2|Removes the app list entirely from the start menu.| |disableSettingsApp|4|Disables the corresponding toggle (Collapse or Remove) in the Settings app.|-----
v1.0 Intune Deviceconfig Windowsstartmenumodetype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-windowsstartmenumodetype.md
Title: "windowsStartMenuModeType enum type" description: "Type of display modes for the start menu."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Type of display modes for the start menu.
|userDefined|0|User defined. Default value.| |fullScreen|1|Full screen.| |nonFullScreen|2|Non-full screen.|-----
v1.0 Intune Deviceconfig Windowsupdateactivehoursinstall https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-windowsupdateactivehoursinstall.md
Title: "windowsUpdateActiveHoursInstall resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"activeHoursEnd": "String (time of day)" } ```-----
v1.0 Intune Deviceconfig Windowsupdateforbusinessconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-windowsupdateforbusinessconfiguration.md
Title: "windowsUpdateForBusinessConfiguration resource type" description: "Windows Update for business configuration, allows you to specify how and when Windows as a Service updates your Windows 10/11 devices with feature and quality updates. Supports ODATA clauses that DeviceConfiguration entity supports: $filter by types of DeviceConfiguration, $top, $select only DeviceConfiguration base properties, $orderby only DeviceConfiguration base properties, and $skip. The query parameter '$search' is not supported."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"allowWindows11Upgrade": true } ```-----
v1.0 Intune Deviceconfig Windowsupdateforbusinessupdateweeks https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-windowsupdateforbusinessupdateweeks.md
Title: "windowsUpdateForBusinessUpdateWeeks enum type" description: "Scheduled the update installation on the weeks of the month"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Scheduled the update installation on the weeks of the month
|fourthWeek|8|Scheduled the update installation on the fourth week of the month| |everyWeek|15|Scheduled the update installation on every week of the month| |unknownFutureValue|22|Evolvable enum member|-----
v1.0 Intune Deviceconfig Windowsupdateinstallscheduletype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-windowsupdateinstallscheduletype.md
Title: "windowsUpdateInstallScheduleType resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"@odata.type": "#microsoft.graph.windowsUpdateInstallScheduleType" } ```-----
v1.0 Intune Deviceconfig Windowsupdatenotificationdisplayoption https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-windowsupdatenotificationdisplayoption.md
Title: "windowsUpdateNotificationDisplayOption enum type" description: "Windows Update Notification Display Options"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Windows Update Notification Display Options
|restartWarningsOnly|2|Turn off all notifications, excluding restart warnings.| |disableAllNotifications|3|Turn off all notifications, including restart warnings.| |unknownFutureValue|4|Evolvable enum member|-----
v1.0 Intune Deviceconfig Windowsupdatescheduledinstall https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-windowsupdatescheduledinstall.md
Title: "windowsUpdateScheduledInstall resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"scheduledInstallTime": "String (time of day)" } ```-----
v1.0 Intune Deviceconfig Windowsupdatetype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-windowsupdatetype.md
Title: "windowsUpdateType enum type" description: "Which branch devices will receive their updates from"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Which branch devices will receive their updates from
|windowsInsiderBuildFast|3|Windows Insider build - Fast| |windowsInsiderBuildSlow|4|Windows Insider build - Slow| |windowsInsiderBuildRelease|5|Release Windows Insider build|-----
v1.0 Intune Deviceconfig Windowsuseraccountcontrolsettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-deviceconfig-windowsuseraccountcontrolsettings.md
Title: "windowsUserAccountControlSettings enum type" description: "Possible values for Windows user account control settings."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for Windows user account control settings.
|notifyOnAppChanges|2|Notify on app changes.| |notifyOnAppChangesWithoutDimming|3|Notify on app changes without dimming desktop.| |neverNotify|4|Never notify.|-----
v1.0 Intune Devices Actionstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-devices-actionstate.md
Title: "actionState enum type" description: "State of the action on the device"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
State of the action on the device
|done|4|Action completed without errors.| |failed|5|Action failed| |notSupported|6|Action is not supported.|-----
v1.0 Intune Devices Applepushnotificationcertificate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-devices-applepushnotificationcertificate.md
Title: "applePushNotificationCertificate resource type" description: "Apple push notification certificate."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"certificate": "String" } ```-----
v1.0 Intune Devices Compliancestate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-devices-compliancestate.md
Title: "complianceState enum type" description: "Compliance state."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Compliance state.
|error|4|Error.| |inGracePeriod|254|Device is non-compliant but still has access to corporate resources| |configManager|255|Managed by Config Manager|-----
v1.0 Intune Devices Configurationmanagerclientenabledfeatures https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-devices-configurationmanagerclientenabledfeatures.md
Title: "configurationManagerClientEnabledFeatures resource type" description: "configuration Manager client enabled features"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"windowsUpdateForBusiness": true } ```-----
v1.0 Intune Devices Deleteuserfromsharedappledeviceactionresult https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-devices-deleteuserfromsharedappledeviceactionresult.md
Title: "deleteUserFromSharedAppleDeviceActionResult resource type" description: "Delete user from shared apple device action result"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"userPrincipalName": "String" } ```-----
v1.0 Intune Devices Detectedapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-devices-detectedapp.md
Title: "detectedApp resource type" description: "A managed or unmanaged app that is installed on a managed device. Unmanaged apps will only appear for devices marked as corporate owned."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"platform": "String" } ```-----
v1.0 Intune Devices Detectedappplatformtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-devices-detectedappplatformtype.md
Title: "detectedAppPlatformType enum type" description: "Indicates the operating system / platform of the discovered application. Some possible values are Windows, iOS, macOS. The default value is unknown (0)."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Indicates the operating system / platform of the discovered application. Some p
|androidWorkProfile|9|Indicates that the platform of the detected application is Android work profile.| |androidDedicatedAndFullyManaged|10|Indicates that the platform of the detected application is Android dedicated and fully managed.| |unknownFutureValue|11|Evolvable enumeration sentinel value. Do not use.|-----
v1.0 Intune Devices Deviceactionresult https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-devices-deviceactionresult.md
Title: "deviceActionResult resource type" description: "Device action result"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"lastUpdatedDateTime": "String (timestamp)" } ```-----
v1.0 Intune Devices Devicecategory https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-devices-devicecategory.md
Title: "deviceCategory resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"id": "String (identifier)" } ```-----
v1.0 Intune Devices Deviceenrollmenttype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-devices-deviceenrollmenttype.md
Title: "deviceEnrollmentType enum type" description: "Possible ways of adding a mobile device to management."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible ways of adding a mobile device to management.
|windowsAzureADJoinUsingDeviceAuth|10|Windows 10 Azure AD Join using Device Auth.| |appleUserEnrollment|11|Device managed by Apple user enrollment| |appleUserEnrollmentWithServiceAccount|12|Device managed by Apple user enrollment with service account|-----
v1.0 Intune Devices Deviceexchangeaccessstatesummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-devices-deviceexchangeaccessstatesummary.md
Title: "deviceExchangeAccessStateSummary resource type" description: "Device Exchange Access State summary"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"unavailableDeviceCount": 1024 } ```-----
v1.0 Intune Devices Devicegeolocation https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-devices-devicegeolocation.md
Title: "deviceGeoLocation resource type" description: "Device location"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"speed": "4.2" } ```-----
v1.0 Intune Devices Devicehealthattestationstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-devices-devicehealthattestationstate.md
Title: "deviceHealthAttestationState resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"healthAttestationSupportedStatus": "String" } ```-----
v1.0 Intune Devices Devicemanagement https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-devices-devicemanagement.md
Title: "deviceManagement resource type" description: "Singleton entity that acts as a container for all device management functionality."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"subscriptionState": "String" } ```-----
v1.0 Intune Devices Devicemanagementexchangeaccessstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-devices-devicemanagementexchangeaccessstate.md
Title: "deviceManagementExchangeAccessState enum type" description: "Device Exchange Access State."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Device Exchange Access State.
|allowed|2|Device has access to Exchange| |blocked|3|Device is Blocked in Exchange| |quarantined|4|Device is Quarantined in Exchange|-----
v1.0 Intune Devices Devicemanagementexchangeaccessstatereason https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-devices-devicemanagementexchangeaccessstatereason.md
Title: "deviceManagementExchangeAccessStateReason enum type" description: "Device Exchange Access State Reason."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Device Exchange Access State Reason.
|azureADBlockDueToAccessPolicy|14|Access State revoked by AAD Access Policy| |compromisedPassword|15|Access State revoked by compromised password| |deviceNotKnownWithManagedApp|16|Access state revoked by managed application challenge|-----
v1.0 Intune Devices Devicemanagementsubscriptionstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-devices-devicemanagementsubscriptionstate.md
Title: "deviceManagementSubscriptionState enum type" description: "Tenant mobile device management subscription state."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Tenant mobile device management subscription state.
|deleted|4|Deleted| |blocked|5|Blocked| |lockedOut|8|LockedOut|-----
v1.0 Intune Devices Deviceoperatingsystemsummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-devices-deviceoperatingsystemsummary.md
Title: "deviceOperatingSystemSummary resource type" description: "Device operating system summary."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"configMgrDeviceCount": 1024 } ```-----
v1.0 Intune Devices Deviceregistrationstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-devices-deviceregistrationstate.md
Title: "deviceRegistrationState enum type" description: "Device registration status."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Device registration status.
|certificateReset|6|The device certificate has been reset.| |notRegisteredPendingEnrollment|7|The device is not registered and pending enrollment.| |unknown|8|The device registration status is unknown.|-----
v1.0 Intune Devices Disktype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-devices-disktype.md
Title: "diskType enum type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Not yet documented
|hdd|1|Enum member for HDD devices| |ssd|2|Enum member for SSD devices| |unknownFutureValue|3|Evolvable enum member|-----
v1.0 Intune Devices Locatedeviceactionresult https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-devices-locatedeviceactionresult.md
Title: "locateDeviceActionResult resource type" description: "Locate device action result"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Devices Manageddevice https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-devices-manageddevice.md
Title: "managedDevice resource type" description: "Devices that are managed or pre-enrolled through Intune"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Devices that are managed or pre-enrolled through Intune
|easActivationDateTime|DateTimeOffset|Exchange ActivationSync activation time of the device. This property is read-only.| |azureADRegistered|Boolean|Whether the device is Azure Active Directory registered. This property is read-only.| |deviceEnrollmentType|[deviceEnrollmentType](../resources/intune-devices-deviceenrollmenttype.md)|Enrollment type of the device. This property is read-only. Possible values are: `unknown`, `userEnrollment`, `deviceEnrollmentManager`, `appleBulkWithUser`, `appleBulkWithoutUser`, `windowsAzureADJoin`, `windowsBulkUserless`, `windowsAutoEnrollment`, `windowsBulkAzureDomainJoin`, `windowsCoManagement`, `windowsAzureADJoinUsingDeviceAuth`, `appleUserEnrollment`, `appleUserEnrollmentWithServiceAccount`.|
-|activationLockBypassCode|String|Code that allows the Activation Lock on a device to be bypassed. This property is read-only.|
+|activationLockBypassCode|String|The code that allows the Activation Lock on managed device to be bypassed. Default, is Null (Non-Default property) for this property when returned as part of managedDevice entity in LIST call. Individual GET call with select query options is needed to retrieve actual values. Supports: $select. $Search is not supported. Read-only. This property is read-only.|
|emailAddress|String|Email(s) for the user associated with the device. This property is read-only.| |azureADDeviceId|String|The unique identifier for the Azure Active Directory device. Read only. This property is read-only.| |deviceRegistrationState|[deviceRegistrationState](../resources/intune-devices-deviceregistrationstate.md)|Device registration state. This property is read-only. Possible values are: `notRegistered`, `registered`, `revoked`, `keyConflict`, `approvalPending`, `certificateReset`, `notRegisteredPendingEnrollment`, `unknown`.|
Devices that are managed or pre-enrolled through Intune
|iccid|String|Integrated Circuit Card Identifier, it is A SIM card's unique identification number. Return default value null in LIST managedDevices. Real value only returned in singel device GET call with device id and included in select parameter. Supports: $select. $Search is not supported. Read-only. This property is read-only.| |udid|String|Unique Device Identifier for iOS and macOS devices. Return default value null in LIST managedDevices. Real value only returned in singel device GET call with device id and included in select parameter. Supports: $select. $Search is not supported. Read-only. This property is read-only.| |notes|String|Notes on the device created by IT Admin. Return default value null in LIST managedDevices. Real value only returned in singel device GET call with device id and included in select parameter. Supports: $select. $Search is not supported.|
-|ethernetMacAddress|String|Ethernet MAC. This property is read-only.|
+|ethernetMacAddress|String|Ethernet MAC. Default, is Null (Non-Default property) for this property when returned as part of managedDevice entity. Individual get call with select query options is needed to retrieve actual values. Example: deviceManagement/managedDevices({managedDeviceId})?$select=ethernetMacAddress Supports: $select. $Search is not supported. Read-only. This property is read-only.|
|physicalMemoryInBytes|Int64|Total Memory in Bytes. Return default value 0 in LIST managedDevices. Real value only returned in singel device GET call with device id and included in select parameter. Supports: $select. Default value is 0. Read-only. This property is read-only.| ## Relationships
Here is a JSON representation of the resource.
"physicalMemoryInBytes": 1024 } ```-----
v1.0 Intune Devices Manageddeviceoverview https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-devices-manageddeviceoverview.md
Title: "managedDeviceOverview resource type" description: "Summary data for managed devices"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Devices Manageddeviceownertype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-devices-manageddeviceownertype.md
Title: "managedDeviceOwnerType enum type" description: "Owner type of device."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Owner type of device.
|unknown|0|Unknown.| |company|1|Owned by company.| |personal|2|Owned by person.|-----
v1.0 Intune Devices Manageddevicepartnerreportedhealthstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-devices-manageddevicepartnerreportedhealthstate.md
Title: "managedDevicePartnerReportedHealthState enum type" description: "Available health states for the Device Health API"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Available health states for the Device Health API
|unresponsive|7|Device is considered unresponsive by the mobile threat defense partner. The device health is not known.| |compromised|8|Device is considered compromised by the Threat Defense partner. This means the device has an active Threat or Risk which cannot be easily remediated by the end user and the user should contact their IT Admin.| |misconfigured|9|Device is considered misconfigured with the Threat Defense partner. This means the device is missing a required profile or configuration for the Threat Defense Partner to function properly and is thus threat or risk analysis is not able to complete.|-----
v1.0 Intune Devices Managementagenttype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-devices-managementagenttype.md
Title: "managementAgentType enum type" description: "Management agent type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Management agent type.
|unknown|16|Unknown management agent type.| |jamf|32|The device attributes are fetched from Jamf.| |googleCloudDevicePolicyController|64|The device is managed by Google's CloudDPC.|-----
v1.0 Intune Devices Remotelockactionresult https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-devices-remotelockactionresult.md
Title: "remoteLockActionResult resource type" description: "Lock action result with a pin to unlock"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"unlockPin": "String" } ```-----
v1.0 Intune Devices Resetpasscodeactionresult https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-devices-resetpasscodeactionresult.md
Title: "resetPasscodeActionResult resource type" description: "Reset passcode action result"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"passcode": "String" } ```-----
v1.0 Intune Devices Updatewindowsdeviceaccountactionparameter https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-devices-updatewindowsdeviceaccountactionparameter.md
Title: "updateWindowsDeviceAccountActionParameter resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"sessionInitiationProtocalAddress": "String" } ```-----
v1.0 Intune Devices User https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-devices-user.md
Title: "user resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"id": "String (identifier)" } ```-----
v1.0 Intune Devices Userexperienceanalyticshealthstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-devices-userexperienceanalyticshealthstate.md
Title: "userExperienceAnalyticsHealthState enum type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Not yet documented
|needsAttention|2|Not yet documented| |meetingGoals|3|Not yet documented| |unknownFutureValue|4|Evolvable enum member|-----
v1.0 Intune Devices Windowsdefenderscanactionresult https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-devices-windowsdefenderscanactionresult.md
Title: "windowsDefenderScanActionResult resource type" description: "Windows Defender last scan result"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"scanType": "String" } ```-----
v1.0 Intune Devices Windowsdeviceaccount https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-devices-windowsdeviceaccount.md
Title: "windowsDeviceAccount resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"password": "String" } ```-----
v1.0 Intune Devices Windowsdeviceadaccount https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-devices-windowsdeviceadaccount.md
Title: "windowsDeviceADAccount resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"userName": "String" } ```-----
v1.0 Intune Devices Windowsdeviceazureadaccount https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-devices-windowsdeviceazureadaccount.md
Title: "windowsDeviceAzureADAccount resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"userPrincipalName": "String" } ```-----
v1.0 Intune Enrollment Devicemanagement https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-enrollment-devicemanagement.md
Title: "deviceManagement resource type" description: "The deviceManagement resource represents a tenant's collection device identities that have been pre-staged in Intune, and the enrollment profiles that may be assigned to device identities that support pre-enrollment configuration."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"id": "String (identifier)" } ```-----
v1.0 Intune Enrollment Enrollmentstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-enrollment-enrollmentstate.md
Title: "enrollmentState enum type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Not yet documented
|pendingReset|2|Enrolled but it's enrolled via enrollment profile and the enrolled profile is different from the assigned profile.| |failed|3|Not enrolled and there is enrollment failure record.| |notContacted|4|Device is imported but not enrolled.|-----
v1.0 Intune Enrollment Importedwindowsautopilotdeviceidentity https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-enrollment-importedwindowsautopilotdeviceidentity.md
Title: "importedWindowsAutopilotDeviceIdentity resource type" description: "Imported windows autopilot devices."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"assignedUserPrincipalName": "String" } ```-----
v1.0 Intune Enrollment Importedwindowsautopilotdeviceidentityimportstatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-enrollment-importedwindowsautopilotdeviceidentityimportstatus.md
Title: "importedWindowsAutopilotDeviceIdentityImportStatus enum type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Not yet documented
|partial|2|Partial status.| |complete|3|Complete status.| |error|4|Error status.|-----
v1.0 Intune Enrollment Importedwindowsautopilotdeviceidentitystate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-enrollment-importedwindowsautopilotdeviceidentitystate.md
Title: "importedWindowsAutopilotDeviceIdentityState resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"deviceErrorName": "String" } ```-----
v1.0 Intune Enrollment Importedwindowsautopilotdeviceidentityuploadstatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-enrollment-importedwindowsautopilotdeviceidentityuploadstatus.md
Title: "importedWindowsAutopilotDeviceIdentityUploadStatus enum type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Not yet documented
|pending|1|Pending status.| |complete|2|Complete status.| |error|3|Error status.|-----
v1.0 Intune Enrollment Windowsautopilotdeviceidentity https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-enrollment-windowsautopilotdeviceidentity.md
Title: "windowsAutopilotDeviceIdentity resource type" description: "The windowsAutopilotDeviceIdentity resource represents a Windows Autopilot Device."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"displayName": "String" } ```-----
v1.0 Intune Mam Androidmanagedappprotection https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-mam-androidmanagedappprotection.md
Title: "androidManagedAppProtection resource type" description: "Policy used to configure detailed management settings targeted to specific security groups and for a specified set of apps on an Android device"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"customBrowserDisplayName": "String" } ```-----
v1.0 Intune Mam Androidmanagedappregistration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-mam-androidmanagedappregistration.md
Title: "androidManagedAppRegistration resource type" description: "Represents the synchronization details of an android app, with management capabilities, for a specific user. The ManagedAppRegistration resource represents the details of an app, with management capability, used by a member of the organization."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"version": "String" } ```-----
v1.0 Intune Mam Androidmobileappidentifier https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-mam-androidmobileappidentifier.md
Title: "androidMobileAppIdentifier resource type" description: "The identifier for an Android app."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"packageId": "String" } ```-----
v1.0 Intune Mam Defaultmanagedappprotection https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-mam-defaultmanagedappprotection.md
Title: "defaultManagedAppProtection resource type" description: "Policy used to configure detailed management settings for a specified set of apps for all users not targeted by a TargetedManagedAppProtection Policy"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"faceIdBlocked": true } ```-----
v1.0 Intune Mam Deviceappmanagement https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-mam-deviceappmanagement.md
Title: "deviceAppManagement resource type" description: "Device app management singleton entity."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"id": "String (identifier)" } ```-----
v1.0 Intune Mam Iosmanagedappprotection https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-mam-iosmanagedappprotection.md
Title: "iosManagedAppProtection resource type" description: "Policy used to configure detailed management settings targeted to specific security groups and for a specified set of apps on an iOS device"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"customBrowserProtocol": "String" } ```-----
v1.0 Intune Mam Iosmanagedappregistration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-mam-iosmanagedappregistration.md
Title: "iosManagedAppRegistration resource type" description: "Represents the synchronization details of an ios app, with management capabilities, for a specific user. The ManagedAppRegistration resource represents the details of an app, with management capability, used by a member of the organization."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"version": "String" } ```-----
v1.0 Intune Mam Iosmobileappidentifier https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-mam-iosmobileappidentifier.md
Title: "iosMobileAppIdentifier resource type" description: "The identifier for an iOS app."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"bundleId": "String" } ```-----
v1.0 Intune Mam Iprange https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-mam-iprange.md
Title: "ipRange resource type" description: "IP range base class for representing IPV4, IPV6 address ranges"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"@odata.type": "#microsoft.graph.ipRange" } ```-----
v1.0 Intune Mam Ipv4range https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-mam-ipv4range.md
Title: "iPv4Range resource type" description: "IPv4 Range definition."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"upperAddress": "String" } ```-----
v1.0 Intune Mam Ipv6range https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-mam-ipv6range.md
Title: "iPv6Range resource type" description: "IPv6 Range definition."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"upperAddress": "String" } ```-----
v1.0 Intune Mam Json https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-mam-json.md
Title: "Json resource type" description: "Represents data returned in JSON format"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"@odata.type": "#microsoft.graph.Json" } ```-----
v1.0 Intune Mam Managedappclipboardsharinglevel https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-mam-managedappclipboardsharinglevel.md
Title: "managedAppClipboardSharingLevel enum type" description: "Represents the level to which the device's clipboard may be shared between apps"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Represents the level to which the device's clipboard may be shared between apps
|managedAppsWithPasteIn|1|Sharing is allowed between all managed apps with paste in enabled| |managedApps|2|Sharing is allowed between all managed apps| |blocked|3|Sharing between apps is disabled|-----
v1.0 Intune Mam Managedappconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-mam-managedappconfiguration.md
Title: "managedAppConfiguration resource type" description: "Configuration used to deliver a set of custom settings as-is to apps for users to whom the configuration is scoped"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Mam Managedappdataencryptiontype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-mam-managedappdataencryptiontype.md
Title: "managedAppDataEncryptionType enum type" description: "Represents the level to which app data is encrypted for managed apps"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Represents the level to which app data is encrypted for managed apps
|afterDeviceRestart|1|App data is encrypted when the device is restarted.| |whenDeviceLockedExceptOpenFiles|2|App data associated with this policy is encrypted when the device is locked, except data in files that are open| |whenDeviceLocked|3|App data associated with this policy is encrypted when the device is locked|-----
v1.0 Intune Mam Managedappdatastoragelocation https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-mam-managedappdatastoragelocation.md
Title: "managedAppDataStorageLocation enum type" description: "Storage locations where managed apps can potentially store their data"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Storage locations where managed apps can potentially store their data
|sharePoint|2|SharePoint| |box|3|Box| |localStorage|6|Local storage on the device|-----
v1.0 Intune Mam Managedappdatatransferlevel https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-mam-managedappdatatransferlevel.md
Title: "managedAppDataTransferLevel enum type" description: "Data can be transferred from/to these classes of apps"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Data can be transferred from/to these classes of apps
|allApps|0|All apps.| |managedApps|1|Managed apps.| |none|2|No apps.|-----
v1.0 Intune Mam Managedappdiagnosticstatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-mam-managedappdiagnosticstatus.md
Title: "managedAppDiagnosticStatus resource type" description: "Represents diagnostics status."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"mitigationInstruction": "String" } ```-----
v1.0 Intune Mam Managedappflaggedreason https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-mam-managedappflaggedreason.md
Title: "managedAppFlaggedReason enum type" description: "The reason for which a user has been flagged"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
The reason for which a user has been flagged
|:|:|:| |none|0|No issue.| |rootedDevice|1|The app registration is running on a rooted/unlocked device.|-----
v1.0 Intune Mam Managedappoperation https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-mam-managedappoperation.md
Title: "managedAppOperation resource type" description: "Represents an operation applied against an app registration."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"version": "String" } ```-----
v1.0 Intune Mam Managedapppincharacterset https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-mam-managedapppincharacterset.md
Title: "managedAppPinCharacterSet enum type" description: "Character set which is to be used for a user's app PIN"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Character set which is to be used for a user's app PIN
|:|:|:| |numeric|0|Numeric characters| |alphanumericAndSymbol|1|Alphanumeric and symbolic characters|-----
v1.0 Intune Mam Managedapppolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-mam-managedapppolicy.md
Title: "managedAppPolicy resource type" description: "The ManagedAppPolicy resource represents a base type for platform specific policies."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"version": "String" } ```-----
v1.0 Intune Mam Managedapppolicydeploymentsummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-mam-managedapppolicydeploymentsummary.md
Title: "managedAppPolicyDeploymentSummary resource type" description: "The ManagedAppEntity is the base entity type for all other entity types under app management workflow."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"version": "String" } ```-----
v1.0 Intune Mam Managedapppolicydeploymentsummaryperapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-mam-managedapppolicydeploymentsummaryperapp.md
Title: "managedAppPolicyDeploymentSummaryPerApp resource type" description: "Represents policy deployment summary per app."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"configurationAppliedUserCount": 1024 } ```-----
v1.0 Intune Mam Managedappprotection https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-mam-managedappprotection.md
Title: "managedAppProtection resource type" description: "Policy used to configure detailed management settings for a specified set of apps"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"managedBrowser": "String" } ```-----
v1.0 Intune Mam Managedappregistration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-mam-managedappregistration.md
Title: "managedAppRegistration resource type" description: "The ManagedAppEntity is the base entity type for all other entity types under app management workflow. The ManagedAppRegistration resource represents the details of an app, with management capability, used by a member of the organization."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"version": "String" } ```-----
v1.0 Intune Mam Managedappstatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-mam-managedappstatus.md
Title: "managedAppStatus resource type" description: "Represents app protection and configuration status for the organization."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"version": "String" } ```-----
v1.0 Intune Mam Managedappstatusraw https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-mam-managedappstatusraw.md
Title: "managedAppStatusRaw resource type" description: "Represents an un-typed status report about organizations app protection and configuration."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Mam Managedbrowsertype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-mam-managedbrowsertype.md
Title: "managedBrowserType enum type" description: "Type of managed browser"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Type of managed browser
|:|:|:| |notConfigured|0|Not configured| |microsoftEdge|1|Microsoft Edge|-----
v1.0 Intune Mam Managedmobileapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-mam-managedmobileapp.md
Title: "managedMobileApp resource type" description: "The identifier for the deployment an app."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"version": "String" } ```-----
v1.0 Intune Mam Mdmwindowsinformationprotectionpolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-mam-mdmwindowsinformationprotectionpolicy.md
Title: "mdmWindowsInformationProtectionPolicy resource type" description: "Policy for Windows information protection with MDM"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"isAssigned": true } ```-----
v1.0 Intune Mam Mobileappidentifier https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-mam-mobileappidentifier.md
Title: "mobileAppIdentifier resource type" description: "The identifier for a mobile app."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"@odata.type": "#microsoft.graph.mobileAppIdentifier" } ```-----
v1.0 Intune Mam Proxieddomain https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-mam-proxieddomain.md
Title: "proxiedDomain resource type" description: "Proxied Domain"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"proxy": "String" } ```-----
v1.0 Intune Mam Targetedmanagedappconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-mam-targetedmanagedappconfiguration.md
Title: "targetedManagedAppConfiguration resource type" description: "Configuration used to deliver a set of custom settings as-is to all users in the targeted security group"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"isAssigned": true } ```-----
v1.0 Intune Mam Targetedmanagedappgrouptype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-mam-targetedmanagedappgrouptype.md
Title: "targetedManagedAppGroupType enum type" description: "Indicates a collection of apps to target which can be one of several pre-defined lists of apps or a manually selected list of apps"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Indicates a collection of apps to target which can be one of several pre-defined
|allCoreMicrosoftApps|1|Target the core set of Microsoft apps (Office, Edge, etc).| |allMicrosoftApps|2|Target all apps with Microsoft as publisher.| |allApps|4|Target all apps with an available assignment.|-----
v1.0 Intune Mam Targetedmanagedapppolicyassignment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-mam-targetedmanagedapppolicyassignment.md
Title: "targetedManagedAppPolicyAssignment resource type" description: "The type for deployment of groups or apps."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Mam Targetedmanagedappprotection https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-mam-targetedmanagedappprotection.md
Title: "targetedManagedAppProtection resource type" description: "Policy used to configure detailed management settings targeted to specific security groups"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"isAssigned": true } ```-----
v1.0 Intune Mam User https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-mam-user.md
Title: "user resource type" description: "Represents an Azure Active Directory user object."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"id": "String (identifier)" } ```-----
v1.0 Intune Mam Windowsinformationprotection https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-mam-windowsinformationprotection.md
Title: "windowsInformationProtection resource type" description: "Policy for Windows information protection to configure detailed management settings"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"isAssigned": true } ```-----
v1.0 Intune Mam Windowsinformationprotectionapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-mam-windowsinformationprotectionapp.md
Title: "windowsInformationProtectionApp resource type" description: "App for Windows information protection"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"denied": true } ```-----
v1.0 Intune Mam Windowsinformationprotectionapplockerfile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-mam-windowsinformationprotectionapplockerfile.md
Title: "windowsInformationProtectionAppLockerFile resource type" description: "Windows Information Protection AppLocker File"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"version": "String" } ```-----
v1.0 Intune Mam Windowsinformationprotectiondatarecoverycertificate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-mam-windowsinformationprotectiondatarecoverycertificate.md
Title: "windowsInformationProtectionDataRecoveryCertificate resource type" description: "Windows Information Protection DataRecoveryCertificate"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"certificate": "binary" } ```-----
v1.0 Intune Mam Windowsinformationprotectiondesktopapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-mam-windowsinformationprotectiondesktopapp.md
Title: "windowsInformationProtectionDesktopApp resource type" description: "Desktop App for Windows information protection"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"binaryVersionHigh": "String" } ```-----
v1.0 Intune Mam Windowsinformationprotectionenforcementlevel https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-mam-windowsinformationprotectionenforcementlevel.md
Title: "windowsInformationProtectionEnforcementLevel enum type" description: "Possible values for WIP Protection enforcement levels"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for WIP Protection enforcement levels
|encryptAndAuditOnly|1|Encrypt and Audit only| |encryptAuditAndPrompt|2|Encrypt, Audit and Prompt| |encryptAuditAndBlock|3|Encrypt, Audit and Block|-----
v1.0 Intune Mam Windowsinformationprotectioniprangecollection https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-mam-windowsinformationprotectioniprangecollection.md
Title: "windowsInformationProtectionIPRangeCollection resource type" description: "Windows Information Protection IP Range Collection"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Mam Windowsinformationprotectionpincharacterrequirements https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-mam-windowsinformationprotectionpincharacterrequirements.md
Title: "windowsInformationProtectionPinCharacterRequirements enum type" description: "Pin Character Requirements"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Pin Character Requirements
|notAllow|0|Not allow| |requireAtLeastOne|1|Require atleast one| |allow|2|Allow any number|-----
v1.0 Intune Mam Windowsinformationprotectionpolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-mam-windowsinformationprotectionpolicy.md
Title: "windowsInformationProtectionPolicy resource type" description: "Policy for Windows information protection without MDM"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"daysWithoutContactBeforeUnenroll": 1024 } ```-----
v1.0 Intune Mam Windowsinformationprotectionproxieddomaincollection https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-mam-windowsinformationprotectionproxieddomaincollection.md
Title: "windowsInformationProtectionProxiedDomainCollection resource type" description: "Windows Information Protection Proxied Domain Collection"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Mam Windowsinformationprotectionresourcecollection https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-mam-windowsinformationprotectionresourcecollection.md
Title: "windowsInformationProtectionResourceCollection resource type" description: "Windows Information Protection Resource Collection"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Mam Windowsinformationprotectionstoreapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-mam-windowsinformationprotectionstoreapp.md
Title: "windowsInformationProtectionStoreApp resource type" description: "Store App for Windows information protection"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"denied": true } ```-----
v1.0 Intune Mstunnel Devicemanagement https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-mstunnel-devicemanagement.md
Title: "deviceManagement resource type" description: "Singleton that acts as container for a collection of Resource Access entities."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"id": "String (identifier)" } ```-----
v1.0 Intune Mstunnel Microsofttunnelconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-mstunnel-microsofttunnelconfiguration.md
Title: "microsoftTunnelConfiguration resource type" description: "Entity that represents a collection of Microsoft Tunnel settings"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Entity that represents a collection of Microsoft Tunnel settings
|network|String|The subnet that will be used to allocate virtual address for the clients| |dnsServers|String collection|The DNS servers that will be used by the clients| |defaultDomainSuffix|String|The Default Domain appendix that will be used by the clients|
+|routeIncludes|String collection|The routes that will be routed by the server|
+|routeExcludes|String collection|Subsets of the routes that will not be routed by the server|
|splitDNS|String collection|The domains that will be resolved using the provided dns servers| |listenPort|Int32|The port that both TCP and UPD will listen over on the server| |advancedSettings|[keyValuePair](../resources/intune-shared-keyvaluepair.md) collection|Additional settings that may be applied to the server|
Here is a JSON representation of the resource.
"String" ], "defaultDomainSuffix": "String",
+ "routeIncludes": [
+ "String"
+ ],
+ "routeExcludes": [
+ "String"
+ ],
"splitDNS": [ "String" ],
Here is a JSON representation of the resource.
"disableUdpConnections": true } ```-----
v1.0 Intune Mstunnel Microsofttunnelhealththreshold https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-mstunnel-microsofttunnelhealththreshold.md
Title: "microsoftTunnelHealthThreshold resource type" description: "Entity that represents the health thresholds of a health metric"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"defaultUnhealthyThreshold": 1024 } ```-----
v1.0 Intune Mstunnel Microsofttunnellogcollectionstatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-mstunnel-microsofttunnellogcollectionstatus.md
Title: "microsoftTunnelLogCollectionStatus enum type" description: "Enum type that represent the status of log collection"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Enum type that represent the status of log collection
|pending|0|Indicates that the log collection is in progress| |completed|1|Indicates that the log collection is completed| |failed|2|Indicates that the log collection has failed|-----
+|unknownFutureValue|3|Placeholder value for future expansion enums|
v1.0 Intune Mstunnel Microsofttunnelserver https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-mstunnel-microsofttunnelserver.md
Title: "microsoftTunnelServer resource type" description: "Entity that represents a single Microsoft Tunnel server"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Entity that represents a single Microsoft Tunnel server
|[Create microsoftTunnelServer](../api/intune-mstunnel-microsofttunnelserver-create.md)|[microsoftTunnelServer](../resources/intune-mstunnel-microsofttunnelserver.md)|Create a new [microsoftTunnelServer](../resources/intune-mstunnel-microsofttunnelserver.md) object.| |[Delete microsoftTunnelServer](../api/intune-mstunnel-microsofttunnelserver-delete.md)|None|Deletes a [microsoftTunnelServer](../resources/intune-mstunnel-microsofttunnelserver.md).| |[Update microsoftTunnelServer](../api/intune-mstunnel-microsofttunnelserver-update.md)|[microsoftTunnelServer](../resources/intune-mstunnel-microsofttunnelserver.md)|Update the properties of a [microsoftTunnelServer](../resources/intune-mstunnel-microsofttunnelserver.md) object.|
+|[generateServerLogCollectionRequest action](../api/intune-mstunnel-microsofttunnelserver-generateserverlogcollectionrequest.md)|[microsoftTunnelServerLogCollectionResponse](../resources/intune-mstunnel-microsofttunnelserverlogcollectionresponse.md)|Not yet documented|
## Properties |Property|Type|Description| |:|:|:| |id|String|The unique identifier for the managed server. This id is assigned at enrollment time. Supports: $delete. $Update, $insert, $skip, $top is not supported. Read-only.| |displayName|String|The display name for the server. This property is required when a server is created and cannot be cleared during updates.|
-|tunnelServerHealthStatus|[microsoftTunnelServerHealthStatus](../resources/intune-mstunnel-microsofttunnelserverhealthstatus.md)|Indicates the server's health Status as of the last evaluation time. Health is evaluated every 60 seconds, and the possible values are: unknown, healthy, unhealthy, warning, offline, upgradeInProgress, upgradeFailed. Possible values are: `unknown`, `healthy`, `unhealthy`, `warning`, `offline`, `upgradeInProgress`, `upgradeFailed`.|
+|tunnelServerHealthStatus|[microsoftTunnelServerHealthStatus](../resources/intune-mstunnel-microsofttunnelserverhealthstatus.md)|Indicates the server's health Status as of the last evaluation time. Health is evaluated every 60 seconds, and the possible values are: unknown, healthy, unhealthy, warning, offline, upgradeInProgress, upgradeFailed. Possible values are: `unknown`, `healthy`, `unhealthy`, `warning`, `offline`, `upgradeInProgress`, `upgradeFailed`, `unknownFutureValue`.|
|lastCheckinDateTime|DateTimeOffset|Indicates when the server last checked in| |agentImageDigest|String|The digest of the current agent image running on this server| |serverImageDigest|String|The digest of the current server image running on this server|
Here is a JSON representation of the resource.
"serverImageDigest": "String" } ```-----
v1.0 Intune Mstunnel Microsofttunnelserverhealthstatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-mstunnel-microsofttunnelserverhealthstatus.md
Title: "microsoftTunnelServerHealthStatus enum type" description: "Enum of possible MicrosoftTunnelServer health status types"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Enum of possible MicrosoftTunnelServer health status types
|offline|4|Indicates the server state is offline| |upgradeInProgress|5|Indicates the upgrade in progress during the upgrade cycle of when Intune begins upgrading servers, one server at a time| |upgradeFailed|6|Indicates the failure of the upgrade during the upgrade cycle of when Intune begins upgrading servers, one server at a time|-----
+|unknownFutureValue|7|Evolvable enumeration sentinel value. Do not use enums.|
v1.0 Intune Mstunnel Microsofttunnelserverlogcollectionresponse https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-mstunnel-microsofttunnelserverlogcollectionresponse.md
Title: "microsoftTunnelServerLogCollectionResponse resource type" description: "Entity that stores the server log collection status."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Entity that stores the server log collection status.
|Property|Type|Description| |:|:|:| |id|String|The unique identifier for server log collection response. Read-only.|
-|status|[microsoftTunnelLogCollectionStatus](../resources/intune-mstunnel-microsofttunnellogcollectionstatus.md)|The status of log collection. Possible values are: pending, completed, failed. Possible values are: `pending`, `completed`, `failed`.|
+|status|[microsoftTunnelLogCollectionStatus](../resources/intune-mstunnel-microsofttunnellogcollectionstatus.md)|The status of log collection. Possible values are: pending, completed, failed. Possible values are: `pending`, `completed`, `failed`, `unknownFutureValue`.|
|startDateTime|DateTimeOffset|The start time of the logs collected| |endDateTime|DateTimeOffset|The end time of the logs collected| |sizeInBytes|Int64|The size of the logs in bytes|
Here is a JSON representation of the resource.
"expiryDateTime": "String (timestamp)" } ```-----
v1.0 Intune Mstunnel Microsofttunnelsite https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-mstunnel-microsofttunnelsite.md
Title: "microsoftTunnelSite resource type" description: "Entity that represents a Microsoft Tunnel site"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Notification Devicemanagement https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-notification-devicemanagement.md
Title: "deviceManagement resource type" description: "Singleton entity that acts as a container for all device management functionality."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"id": "String (identifier)" } ```-----
v1.0 Intune Notification Localizednotificationmessage https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-notification-localizednotificationmessage.md
Title: "localizedNotificationMessage resource type" description: "The text content of a Notification Message Template for the specified locale."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"isDefault": true } ```-----
v1.0 Intune Notification Notificationmessagetemplate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-notification-notificationmessagetemplate.md
Title: "notificationMessageTemplate resource type" description: "Notification messages are messages that are sent to end users who are determined to be not-compliant with the compliance policies defined by the administrator. Administrators choose notifications and configure them in the Intune Admin Console using the compliance policy creation page under the ΓÇ£Actions for non-complianceΓÇ¥ section. Use the notificationMessageTemplate object to create your own custom notifications for administrators to choose while configuring actions for non-compliance."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Notification messages are messages that are sent to end users who are determined
|lastModifiedDateTime|DateTimeOffset|DateTime the object was last modified.| |displayName|String|Display name for the Notification Message Template.| |defaultLocale|String|The default locale to fallback onto when the requested locale is not available.|
-|brandingOptions|[notificationTemplateBrandingOptions](../resources/intune-notification-notificationtemplatebrandingoptions.md)|The Message Template Branding Options. Branding is defined in the Intune Admin Console. Possible values are: `none`, `includeCompanyLogo`, `includeCompanyName`, `includeContactInformation`, `includeDeviceDetails`.|
+|brandingOptions|[notificationTemplateBrandingOptions](../resources/intune-notification-notificationtemplatebrandingoptions.md)|The Message Template Branding Options. Branding is defined in the Intune Admin Console. Possible values are: `none`, `includeCompanyLogo`, `includeCompanyName`, `includeContactInformation`, `includeCompanyPortalLink`, `includeDeviceDetails`.|
## Relationships |Relationship|Type|Description|
Here is a JSON representation of the resource.
"brandingOptions": "String" } ```-----
v1.0 Intune Notification Notificationtemplatebrandingoptions https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-notification-notificationtemplatebrandingoptions.md
Title: "notificationTemplateBrandingOptions enum type" description: "Branding Options for the Message Template. Branding is defined in the Intune Admin Console."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Branding Options for the Message Template. Branding is defined in the Intune Adm
|includeCompanyLogo|1|Include Company Logo.| |includeCompanyName|2|Include Company Name.| |includeContactInformation|4|Include Contact Info.|
+|includeCompanyPortalLink|8|Include Company Portal Link.|
|includeDeviceDetails|16|Include Device Details.|-----
v1.0 Intune Onboarding Compliancemanagementpartner https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-onboarding-compliancemanagementpartner.md
Title: "complianceManagementPartner resource type" description: "Compliance management partner for all platforms"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Onboarding Compliancemanagementpartnerassignment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-onboarding-compliancemanagementpartnerassignment.md
Title: "complianceManagementPartnerAssignment resource type" description: "User group targeting for Compliance Management Partner"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Onboarding Deviceappmanagement https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-onboarding-deviceappmanagement.md
Title: "deviceAppManagement resource type" description: "Singleton entity that acts as a container for all device app management functionality."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"microsoftStoreForBusinessLastCompletedApplicationSyncTime": "String (timestamp)" } ```-----
v1.0 Intune Onboarding Devicecategory https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-onboarding-devicecategory.md
Title: "deviceCategory resource type" description: "Device categories provides a way to organize your devices. Using device categories, company administrators can define their own categories that make sense to their company. These categories can then be applied to a device in the Intune Azure console or selected by a user during device enrollment. You can filter reports and create dynamic Azure Active Directory device groups based on device categories."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"description": "String" } ```-----
v1.0 Intune Onboarding Deviceenrollmentconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-onboarding-deviceenrollmentconfiguration.md
Title: "deviceEnrollmentConfiguration resource type" description: "The Base Class of Device Enrollment Configuration"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"version": 1024 } ```-----
v1.0 Intune Onboarding Deviceenrollmentlimitconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-onboarding-deviceenrollmentlimitconfiguration.md
Title: "deviceEnrollmentLimitConfiguration resource type" description: "Device Enrollment Configuration that restricts the number of devices a user can enroll"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"limit": 1024 } ```-----
v1.0 Intune Onboarding Deviceenrollmentplatformrestriction https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-onboarding-deviceenrollmentplatformrestriction.md
Title: "deviceEnrollmentPlatformRestriction resource type" description: "Platform specific enrollment restrictions"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"osMaximumVersion": "String" } ```-----
v1.0 Intune Onboarding Deviceenrollmentplatformrestrictionsconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-onboarding-deviceenrollmentplatformrestrictionsconfiguration.md
Title: "deviceEnrollmentPlatformRestrictionsConfiguration resource type" description: "Device Enrollment Configuration that restricts the types of devices a user can enroll"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Onboarding Deviceenrollmentwindowshelloforbusinessconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-onboarding-deviceenrollmentwindowshelloforbusinessconfiguration.md
Title: "deviceEnrollmentWindowsHelloForBusinessConfiguration resource type" description: "Windows Hello for Business settings lets users access their devices using a gesture, such as biometric authentication, or a PIN. Configure settings for enrolled Windows 10, Windows 10 Mobile and later."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"enhancedBiometricsState": "String" } ```-----
v1.0 Intune Onboarding Devicemanagement https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-onboarding-devicemanagement.md
Title: "deviceManagement resource type" description: "Singleton entity that acts as a container for all device management functionality."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Onboarding Devicemanagementexchangeconnector https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-onboarding-devicemanagementexchangeconnector.md
Title: "deviceManagementExchangeConnector resource type" description: "Entity which represents a connection to an Exchange environment."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"exchangeOrganization": "String" } ```-----
v1.0 Intune Onboarding Devicemanagementexchangeconnectorstatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-onboarding-devicemanagementexchangeconnectorstatus.md
Title: "deviceManagementExchangeConnectorStatus enum type" description: "The current status of the Exchange Connector."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
The current status of the Exchange Connector.
|connectionPending|1|Pending Connection to the Exchange Environment.| |connected|2|Connected to the Exchange Environment| |disconnected|3|Disconnected from the Exchange Environment|-----
v1.0 Intune Onboarding Devicemanagementexchangeconnectorsynctype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-onboarding-devicemanagementexchangeconnectorsynctype.md
Title: "deviceManagementExchangeConnectorSyncType enum type" description: "The type of Exchange Connector sync requested."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
The type of Exchange Connector sync requested.
|:|:|:| |fullSync|0|Discover all the device in Exchange.| |deltaSync|1|Discover only the device in Exchange which have updated during the delta sync window.|-----
v1.0 Intune Onboarding Devicemanagementexchangeconnectortype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-onboarding-devicemanagementexchangeconnectortype.md
Title: "deviceManagementExchangeConnectorType enum type" description: "The type of Exchange Connector."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
The type of Exchange Connector.
|hosted|1|Connects to O365 multi-tenant Exchange environment| |serviceToService|2|Intune Service connects directly to O365 multi-tenant Exchange environment| |dedicated|3|Connects to O365 Dedicated Exchange environment.|-----
v1.0 Intune Onboarding Devicemanagementpartner https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-onboarding-devicemanagementpartner.md
Title: "deviceManagementPartner resource type" description: "Entity which represents a connection to device management partner."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"whenPartnerDevicesWillBeMarkedAsNonCompliantDateTime": "String (timestamp)" } ```-----
v1.0 Intune Onboarding Devicemanagementpartnerapptype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-onboarding-devicemanagementpartnerapptype.md
Title: "deviceManagementPartnerAppType enum type" description: "Partner App Type."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Partner App Type.
|unknown|0|Partner App type is unknown.| |singleTenantApp|1|Partner App is Single tenant in AAD.| |multiTenantApp|2|Partner App is Multi tenant in AAD.|-----
v1.0 Intune Onboarding Devicemanagementpartnertenantstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-onboarding-devicemanagementpartnertenantstate.md
Title: "deviceManagementPartnerTenantState enum type" description: "Partner state of this tenant."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Partner state of this tenant.
|terminated|3|Partner connection is terminated.| |rejected|4|Partner messages are rejected.| |unresponsive|5|Partner is unresponsive.|-----
v1.0 Intune Onboarding Enablement https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-onboarding-enablement.md
Title: "enablement enum type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Not yet documented
|notConfigured|0|Device default value, no intent.| |enabled|1|Enables the setting on the device.| |disabled|2|Disables the setting on the device.|-----
v1.0 Intune Onboarding Enrollmentconfigurationassignment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-onboarding-enrollmentconfigurationassignment.md
Title: "enrollmentConfigurationAssignment resource type" description: "Enrollment Configuration Assignment"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
} } ```-----
v1.0 Intune Onboarding Intunebrand https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-onboarding-intunebrand.md
Title: "intuneBrand resource type" description: "intuneBrand contains data which is used in customizing the appearance of the Company Portal applications as well as the end user web portal."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"privacyUrl": "String" } ```-----
v1.0 Intune Onboarding Mdmauthority https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-onboarding-mdmauthority.md
Title: "mdmAuthority enum type" description: "Mobile device management authority."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Mobile device management authority.
|intune|1|Intune| |sccm|2|SCCM| |office365|3|Office365|-----
v1.0 Intune Onboarding Mobilethreatdefenseconnector https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-onboarding-mobilethreatdefenseconnector.md
Title: "mobileThreatDefenseConnector resource type" description: "Entity which represents a connection to Mobile threat defense partner."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"partnerUnresponsivenessThresholdInDays": 1024 } ```-----
v1.0 Intune Onboarding Mobilethreatpartnertenantstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-onboarding-mobilethreatpartnertenantstate.md
Title: "mobileThreatPartnerTenantState enum type" description: "Partner state of this tenant."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Partner state of this tenant.
|available|1|Partner is available.| |enabled|2|Partner is enabled.| |unresponsive|3|Partner is unresponsive.|-----
v1.0 Intune Onboarding Onpremisesconditionalaccesssettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-onboarding-onpremisesconditionalaccesssettings.md
Title: "onPremisesConditionalAccessSettings resource type" description: "Singleton entity which represents the Exchange OnPremises Conditional Access Settings for a tenant."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"overrideDefaultRule": true } ```-----
v1.0 Intune Onboarding Organization https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-onboarding-organization.md
Title: "organization resource type" description: "The organization resource represents an instance of global settings and resources which operate and are provisioned at the tenant-level."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"mobileDeviceManagementAuthority": "String" } ```-----
v1.0 Intune Onboarding Rgbcolor https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-onboarding-rgbcolor.md
Title: "rgbColor resource type" description: "Color in RGB."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"b": 1024 } ```-----
v1.0 Intune Onboarding User https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-onboarding-user.md
Title: "user resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"deviceEnrollmentLimit": 1024 } ```-----
v1.0 Intune Onboarding Vpptoken https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-onboarding-vpptoken.md
Title: "vppToken resource type" description: "You purchase multiple licenses for iOS apps through the Apple Volume Purchase Program for Business or Education. This involves setting up an Apple VPP account from the Apple website and uploading the Apple VPP Business or Education token to Intune. You can then synchronize your volume purchase information with Intune and track your volume-purchased app use. You can upload multiple Apple VPP Business or Education tokens."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"countryOrRegion": "String" } ```-----
v1.0 Intune Onboarding Vpptokenstate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-onboarding-vpptokenstate.md
Title: "vppTokenState enum type" description: "Possible states associated with an Apple Volume Purchase Program token."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible states associated with an Apple Volume Purchase Program token.
|expired|2|Token is expired.| |invalid|3|Token is invalid.| |assignedToExternalMDM|4|Token is managed by another MDM Service.|-----
v1.0 Intune Onboarding Vpptokensyncstatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-onboarding-vpptokensyncstatus.md
Title: "vppTokenSyncStatus enum type" description: "Possible sync statuses associated with an Apple Volume Purchase Program token."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible sync statuses associated with an Apple Volume Purchase Program token.
|inProgress|1|Last Sync in progress.| |completed|2|Last Sync completed successfully.| |failed|3|Last Sync failed.|-----
v1.0 Intune Onboarding Windowshelloforbusinesspinusage https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-onboarding-windowshelloforbusinesspinusage.md
Title: "windowsHelloForBusinessPinUsage enum type" description: "Windows Hello for Business pin usage options"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Windows Hello for Business pin usage options
|allowed|0|Allowed the usage of certain pin rule| |required|1|Enforce the usage of certain pin rule| |disallowed|2|Forbit the usage of certain pin rule|-----
v1.0 Intune Rbac Deviceandappmanagementroleassignment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-rbac-deviceandappmanagementroleassignment.md
Title: "deviceAndAppManagementRoleAssignment resource type" description: "The Role Assignment resource. Role assignments tie together a role definition with members and scopes. There can be one or more role assignments per role. This applies to custom and built-in roles."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Rbac Deviceandappmanagementroledefinition https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-rbac-deviceandappmanagementroledefinition.md
Title: "deviceAndAppManagementRoleDefinition resource type" description: "The Role Definition resource. The role definition is the foundation of role based access in Intune. The role combines an Intune resource such as a Mobile App and associated role permissions such as Create or Read for the resource. There are two types of roles, built-in and custom. Built-in roles cannot be modified. Both built-in roles and custom roles must have assignments to be enforced. Create custom roles if you want to define a role that allows any of the available resources and role permissions to be combined into a single role."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"isBuiltIn": true } ```-----
v1.0 Intune Rbac Devicemanagement https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-rbac-devicemanagement.md
Title: "deviceManagement resource type" description: "Singleton entity that acts as a container for all device management functionality."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"id": "String (identifier)" } ```-----
v1.0 Intune Rbac Resourceaction https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-rbac-resourceaction.md
Title: "resourceAction resource type" description: "Set of allowed and not allowed actions for a resource."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Rbac Resourceoperation https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-rbac-resourceoperation.md
Title: "resourceOperation resource type" description: "Describes the resourceOperation resource (entity) of the Microsoft Graph API (REST), which supports Intune workflows related to role-based access control (RBAC)."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"description": "String" } ```-----
v1.0 Intune Rbac Roleassignment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-rbac-roleassignment.md
Title: "roleAssignment resource type" description: "The Role Assignment resource. Role assignments tie together a role definition with members and scopes. There can be one or more role assignments per role. This applies to custom and built-in roles."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Rbac Roledefinition https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-rbac-roledefinition.md
Title: "roleDefinition resource type" description: "The Role Definition resource. The role definition is the foundation of role based access in Intune. The role combines an Intune resource such as a Mobile App and associated role permissions such as Create or Read for the resource. There are two types of roles, built-in and custom. Built-in roles cannot be modified. Both built-in roles and custom roles must have assignments to be enforced. Create custom roles if you want to define a role that allows any of the available resources and role permissions to be combined into a single role."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"isBuiltIn": true } ```-----
v1.0 Intune Rbac Rolepermission https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-rbac-rolepermission.md
Title: "rolePermission resource type" description: "Contains the set of ResourceActions determining the allowed and not allowed permissions for each role."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Reporting Devicemanagement https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-reporting-devicemanagement.md
Title: "deviceManagement resource type" description: "Singleton entity that acts as a container for all device management functionality."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"id": "String (identifier)" } ```-----
v1.0 Intune Reporting Devicemanagementexportjob https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-reporting-devicemanagementexportjob.md
Title: "deviceManagementExportJob resource type" description: "Entity representing a job to export a report"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"expirationDateTime": "String (timestamp)" } ```-----
v1.0 Intune Reporting Devicemanagementexportjoblocalizationtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-reporting-devicemanagementexportjoblocalizationtype.md
Title: "deviceManagementExportJobLocalizationType enum type" description: "Configures how the requested export job is localized"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Configures how the requested export job is localized
|:|:|:| |localizedValuesAsAdditionalColumn|0|Configures the export job to expose localized values as an additional column| |replaceLocalizableValues|1|Configures the export job to replace enumerable values with their localized values|-----
v1.0 Intune Reporting Devicemanagementreportfileformat https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-reporting-devicemanagementreportfileformat.md
Title: "deviceManagementReportFileFormat enum type" description: "Possible values for the file format of a report"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for the file format of a report
|pdf|1|PDF Format (Deprecate later)| |json|2|JSON Format| |unknownFutureValue|3|Evolvable enumeration sentinel value. Do not use.|-----
v1.0 Intune Reporting Devicemanagementreports https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-reporting-devicemanagementreports.md
Title: "deviceManagementReports resource type" description: "Singleton entity that acts as a container for all reports functionality."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Singleton entity that acts as a container for all reports functionality.
|[Update deviceManagementReports](../api/intune-reporting-devicemanagementreports-update.md)|[deviceManagementReports](../resources/intune-reporting-devicemanagementreports.md)|Update the properties of a [deviceManagementReports](../resources/intune-reporting-devicemanagementreports.md) object.| |[getDeviceNonComplianceReport action](../api/intune-reporting-devicemanagementreports-getdevicenoncompliancereport.md)|Stream|Not yet documented| |[getNoncompliantDevicesAndSettingsReport action](../api/intune-reporting-devicemanagementreports-getnoncompliantdevicesandsettingsreport.md)|Stream|Not yet documented|
+|[getDevicesWithoutCompliancePolicyReport action](../api/intune-reporting-devicemanagementreports-getdeviceswithoutcompliancepolicyreport.md)|Stream|Not yet documented|
|[getPolicyNonComplianceReport action](../api/intune-reporting-devicemanagementreports-getpolicynoncompliancereport.md)|Stream|Not yet documented| |[getPolicyNonComplianceMetadata action](../api/intune-reporting-devicemanagementreports-getpolicynoncompliancemetadata.md)|Stream|Not yet documented| |[getPolicyNonComplianceSummaryReport action](../api/intune-reporting-devicemanagementreports-getpolicynoncompliancesummaryreport.md)|Stream|Not yet documented|
Here is a JSON representation of the resource.
"id": "String (identifier)" } ```-----
v1.0 Intune Reporting Devicemanagementreportstatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-reporting-devicemanagementreportstatus.md
Title: "deviceManagementReportStatus enum type" description: "Possible statuses associated with a generated report"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible statuses associated with a generated report
|inProgress|2|Report generation is in progress| |completed|3|Report generation is completed| |failed|4|Report generation has failed|-----
v1.0 Intune Shared Alldevicesassignmenttarget https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-shared-alldevicesassignmenttarget.md
Title: "allDevicesAssignmentTarget resource type" description: "Represents an assignment to all managed devices in the tenant."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"@odata.type": "#microsoft.graph.allDevicesAssignmentTarget" } ```-----
v1.0 Intune Shared Alllicensedusersassignmenttarget https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-shared-alllicensedusersassignmenttarget.md
Title: "allLicensedUsersAssignmentTarget resource type" description: "Represents an assignment to all licensed users in the tenant."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"@odata.type": "#microsoft.graph.allLicensedUsersAssignmentTarget" } ```-----
v1.0 Intune Shared Androidenterprisealwaysonvpnpackagetype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-shared-androidenterprisealwaysonvpnpackagetype.md
Title: "androidEnterpriseAlwaysOnVpnPackageType enum type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Not yet documented
|f5Access|3|F5 Access.| |paloAltoNetworksGlobalProtect|4|Palo Alto Networks GlobalProtect.| |pulseSecure|5|Pulse Secure.|-----
v1.0 Intune Shared Compliancestatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-shared-compliancestatus.md
Title: "complianceStatus enum type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Not yet documented
|error|5|Not yet documented| |conflict|6|Not yet documented| |notAssigned|7|Not yet documented|-----
v1.0 Intune Shared Configurationmanagercollectionassignmenttarget https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-shared-configurationmanagercollectionassignmenttarget.md
Title: "configurationManagerCollectionAssignmentTarget resource type" description: "Represents an assignment to a Configuration Manager Collection."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"collectionId": "String" } ```-----
v1.0 Intune Shared Deviceandappmanagementassignmenttarget https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-shared-deviceandappmanagementassignmenttarget.md
Title: "deviceAndAppManagementAssignmentTarget resource type" description: "Base type for assignment targets."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"@odata.type": "#microsoft.graph.deviceAndAppManagementAssignmentTarget" } ```-----
v1.0 Intune Shared Exclusiongroupassignmenttarget https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-shared-exclusiongroupassignmenttarget.md
Title: "exclusionGroupAssignmentTarget resource type" description: "Represents a group that should be excluded from an assignment."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"groupId": "String" } ```-----
v1.0 Intune Shared Groupassignmenttarget https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-shared-groupassignmenttarget.md
Title: "groupAssignmentTarget resource type" description: "Represents an assignment to a group."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"groupId": "String" } ```-----
v1.0 Intune Shared Installintent https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-shared-installintent.md
Title: "installIntent enum type" description: "Possible values for the install intent chosen by the admin."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible values for the install intent chosen by the admin.
|required|1|Required install intent.| |uninstall|2|Uninstall install intent.| |availableWithoutEnrollment|3|Available without enrollment install intent.|-----
v1.0 Intune Shared Keyvaluepair https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-shared-keyvaluepair.md
Title: "keyValuePair resource type" description: "Key value pair for storing custom settings"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"value": "String" } ```-----
v1.0 Intune Shared Mimecontent https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-shared-mimecontent.md
Title: "mimeContent resource type" description: "Contains properties for a generic mime content."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"value": "binary" } ```-----
v1.0 Intune Shared Saveduistategenerationoptions https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-shared-saveduistategenerationoptions.md
Title: "savedUIStateGenerationOptions enum type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Not yet documented
|:|:|:| |none|0|Not yet documented| |omitSilverlightPolicyReferences|1|Not yet documented|-----
v1.0 Intune Shared Uri https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-shared-uri.md
Title: "uri resource type" description: "Not yet documented"-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
] } ```-----
v1.0 Intune Shared Vpptokenaccounttype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-shared-vpptokenaccounttype.md
Title: "vppTokenAccountType enum type" description: "Possible types of an Apple Volume Purchase Program token."-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible types of an Apple Volume Purchase Program token.
|:|:|:| |business|0|Apple Volume Purchase Program token associated with an business program.| |education|1|Apple Volume Purchase Program token associated with an education program.|-----
v1.0 Intune Tem Devicemanagement https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-tem-devicemanagement.md
Title: "deviceManagement resource type" description: "Singleton entity that acts as a container for all device management functionality."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"id": "String (identifier)" } ```-----
v1.0 Intune Tem Telecomexpensemanagementpartner https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-tem-telecomexpensemanagementpartner.md
Title: "telecomExpenseManagementPartner resource type" description: "telecomExpenseManagementPartner resources represent the metadata and status of a given TEM service. Once your organization has onboarded with a partner, the partner can be enabled or disabled to switch TEM functionality on or off."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"lastConnectionDateTime": "String (timestamp)" } ```-----
v1.0 Intune Wip Applicationtype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-wip-applicationtype.md
Title: "applicationType enum type" description: "Possible types of Application"-+ localization_priority: Normal ms.prod: "intune" doc_type: enumPageType
Possible types of Application
|:|:|:| |universal|1|The windows universal application| |desktop|2|The windows desktop application|-----
v1.0 Intune Wip Devicemanagement https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-wip-devicemanagement.md
Title: "deviceManagement resource type" description: "Singleton entity that acts as a container for all device management functionality."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"id": "String (identifier)" } ```-----
v1.0 Intune Wip Windowsinformationprotectionapplearningsummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-wip-windowsinformationprotectionapplearningsummary.md
Title: "windowsInformationProtectionAppLearningSummary resource type" description: "Windows Information Protection AppLearning Summary entity."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"deviceCount": 1024 } ```-----
v1.0 Intune Wip Windowsinformationprotectionnetworklearningsummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/intune-wip-windowsinformationprotectionnetworklearningsummary.md
Title: "windowsInformationProtectionNetworkLearningSummary resource type" description: "Windows Information Protection Network learning Summary entity."-+ localization_priority: Normal ms.prod: "intune" doc_type: resourcePageType
Here is a JSON representation of the resource.
"deviceCount": 1024 } ```-----
v1.0 Invitation https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/invitation.md
Creating an invitation will return a redemption URL in the response (*inviteRede
|invitedUserDisplayName|String|The display name of the user being invited.| |invitedUserEmailAddress|String|The email address of the user being invited. Required. The following special characters are not permitted in the email address:<br><ul><li>Tilde (`~`)</li><li>Exclamation point (`!`)</li><li>Number sign (`#`)</li><li>Dollar sign (`$`)</li><li>Percent (`%`)</li><li>Circumflex (`^`)</li><li>Ampersand (`&`)</li><li>Asterisk (`*`)</li><li>Parentheses (`( )`)</li><li>Plus sign (`+`)</li><li>Equal sign (`=`)</li><li>Brackets (`[ ]`)</li><li>Braces (`{ }`)</li><li>Backslash (`\`)</li><li>Slash mark (`/`)</li><li>Pipe (`\|`)</li><li>Semicolon (`;`)</li><li>Colon (`:`)</li><li>Quotation marks (`"`)</li><li>Angle brackets (`< >`)</li><li>Question mark (`?`)</li><li>Comma (`,`)</li></ul><br>However, the following exceptions apply:<br><ul><li>A period (`.`) or a hyphen (`-`) is permitted anywhere in the user name, except at the beginning or end of the name.</li><li>An underscore (`_`) is permitted anywhere in the user name. This includes at the beginning or end of the name.</li></ul>| |invitedUserMessageInfo|[invitedUserMessageInfo](invitedusermessageinfo.md)|Additional configuration for the message being sent to the invited user, including customizing message text, language and cc recipient list.|
-|sendInvitationMessage|Boolean|Indicates whether an email should be sent to the user being invited. The default is `false`.|
+|invitedUserType|String|The userType of the user being invited. By default, this is `Guest`. You can invite as `Member` if you are a company administrator. |
|inviteRedirectUrl|String|The URL the user should be redirected to once the invitation is redeemed. Required.| |inviteRedeemUrl|String|The URL the user can use to redeem their invitation. Read-only.|
-|invitedUserType|String|The userType of the user being invited. By default, this is `Guest`. You can invite as `Member` if you are a company administrator. |
|resetRedemption|Boolean|Reset the user's redemption status and reinvite a user while retaining their user identifier, group memberships, and app assignments. This property allows you to enable a user to sign-in using a different email address from the one in the previous invitation. For more information about using this property, see [Reset redemption status for a guest user](/azure/active-directory/external-identities/reset-redemption-status#use-microsoft-graph-api-to-reset-redemption-status).|
+|sendInvitationMessage|Boolean|Indicates whether an email should be sent to the user being invited. The default is `false`.|
|status|String|The status of the invitation. Possible values are: `PendingAcceptance`, `Completed`, `InProgress`, and `Error`.| ## Relationships
v1.0 Invitationparticipantinfo https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/invitationparticipantinfo.md
This resource is used to represent the entity that is being invited to a group c
| Property | Type | Description | | : | :- | :-- |
+| hidden | Boolean | Optional. Whether to hide the participant from the roster. |
| identity | [identitySet](identityset.md) | The [identitySet](identityset.md) associated with this invitation. | | participantId | String | Optional. The ID of the target participant. |
-| replacesCallId | String | Optional. The call which the target identity is currently a part of. For peer-to-peer case, the call will be dropped once the participant is added successfully. |
| removeFromDefaultAudioRoutingGroup | Boolean | Optional. Whether to remove them from the main mixer. |
-| hidden | Boolean | Optional. Whether to hide the participant from the roster. |
+| replacesCallId | String | Optional. The call which the target identity is currently a part of. For peer-to-peer case, the call will be dropped once the participant is added successfully. |
## JSON representation
v1.0 Itemactivity https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/itemactivity.md
The actions that took place within an itemActivity are detailed in the [itemActi
| Property | Type | Description |:|:|:-
-| id | string | The unique identifier of the activity. Read-only.
| access | [accessAction][] | An item was accessed.
-| actor | [identitySet][] | Identity of who performed the action. Read-only.
| activityDateTime | DateTimeOffset | Details about when the activity took place. Read-only.
+| actor | [identitySet][] | Identity of who performed the action. Read-only.
+| id | string | The unique identifier of the activity. Read-only.
[accessAction]: accessaction.md [identitySet]: identityset.md
v1.0 Itemactivitystat https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/itemactivitystat.md
The **itemActivityStat** resource provides information about activities that too
| Property | Type | Description |:--|:|:-
-| incompleteData | [incompleteData][] | Indicates that the statistics in this interval are based on incomplete data. Read-only.
-| isTrending | Boolean | Indicates whether the item is "trending." Read-only.
-| startDateTime | DateTimeOffset | When the interval starts. Read-only.
-| endDateTime | DateTimeOffset | When the interval ends. Read-only.
+| access | [itemActionStat][] | Statistics about the **access** actions in this interval. Read-only.
| create | [itemActionStat][] | Statistics about the **create** actions in this interval. Read-only.
-| edit | [itemActionStat][] | Statistics about the **edit** actions in this interval. Read-only.
| delete | [itemActionStat][] | Statistics about the **delete** actions in this interval. Read-only.
+| edit | [itemActionStat][] | Statistics about the **edit** actions in this interval. Read-only.
+| endDateTime | DateTimeOffset | When the interval ends. Read-only.
+| incompleteData | [incompleteData][] | Indicates that the statistics in this interval are based on incomplete data. Read-only.
+| isTrending | Boolean | Indicates whether the item is "trending." Read-only.
| move | [itemActionStat][] | Statistics about the **move** actions in this interval. Read-only.
-| access | [itemActionStat][] | Statistics about the **access** actions in this interval. Read-only.
+| startDateTime | DateTimeOffset | When the interval starts. Read-only.
+ [itemActionStat]: itemactionstat.md [incompleteData]: incompletedata.md
v1.0 Itempreviewinfo https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/itempreviewinfo.md
Contains information about how to embed a preview of a [driveItem](driveitem.md)
| Name | Type | Description |:|:-|: | getUrl | string | URL suitable for embedding using HTTP GET (iframes, etc.)
-| postUrl | string | URL suitable for embedding using HTTP POST (form post, JS, etc.)
| postParameters | string | POST parameters to include if using postUrl
+| postUrl | string | URL suitable for embedding using HTTP POST (form post, JS, etc.)
Either getUrl, postUrl, or both may be returned depending on the current state of support for the specified options.
v1.0 Joinmeetingidmeetinginfo https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/joinmeetingidmeetinginfo.md
+
+ Title: "joinMeetingIdMeetingInfo resource type"
+description: "Contains information that allows you to join an existing meeting with a joinMeetingId and a passcode."
+
+ms.localizationpriority: medium
++
+# joinMeetingIdMeetingInfo resource type
+
+Namespace: microsoft.graph
+
+Contains information that allows you to join an existing meeting with a **joinMeetingId** and a **passcode** (if required). You can retrieve these properties from the [Get onlineMeeting](../api/onlinemeeting-get.md) API.
+
+Inherits from [meetingInfo](../resources/meetinginfo.md).
+
+## Properties
+
+| Property | Type | Description |
+| :- | : | : |
+| joinMeetingId | String | The ID used to join the meeting. |
+| passcode | String | The passcode used to join the meeting. Optional. |
+
+## JSON representation
+
+The following is a JSON representation of the resource.
+
+<!-- {
+ "blockType": "resource",
+ "optionalProperties": [
+ ],
+ "@odata.type": "microsoft.graph.joinMeetingIdMeetingInfo"
+}-->
+```json
+{
+ "joinMeetingId": "String",
+ "passcode": "String"
+}
+```
v1.0 Joinmeetingidsettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/joinmeetingidsettings.md
+
+ Title: "joinMeetingIdSettings resource type"
+description: "Specifies the joinMeetingId, the meeting passcode, and the requirement for the passcode."
+
+ms.localizationpriority: medium
++
+# joinMeetingIdSettings resource type
+
+Namespace: microsoft.graph
+
+Specifies the **joinMeetingId**, the meeting passcode, and the requirement for the passcode for an online meeting.
+
+## Properties
+
+| Property | Type | Description |
+|:--|:-|:-|
+| isPasscodeRequired | Boolean | Indicates whether a passcode is required to join a meeting when using **joinMeetingId**. Optional. |
+| joinMeetingId | String | The meeting ID to be used to join a meeting. Optional. Read-only. |
+| passcode | String | The passcode to join a meeting. Optional. Read-only. |
+
+## JSON representation
+
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.joinMeetingIdSettings"
+}
+-->
+
+``` json
+{
+ "@odata.type": "#microsoft.graph.joinMeetingIdSettings",
+ "isPasscodeRequired": "Boolean",
+ "joinMeetingId": "String",
+ "passcode": "String"
+}
+```
v1.0 Keycredential https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/keycredential.md
Contains a key credential associated with an application or a service principal.
## Properties | Property | Type |Description| |:|:--|:-|
-|customKeyIdentifier|Binary| Custom key identifier |
+|customKeyIdentifier|Binary| A 40-character binary type that can be used to identify the credential. Optional. When not provided in the payload, defaults to the thumbprint of the certificate. |
| displayName | String | Friendly name for the key. Optional. | |endDateTime|DateTimeOffset|The date and time at which the credential expires. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is `2014-01-01T00:00:00Z`.| |key|Binary| The certificate's raw data in byte array converted to Base64 string. Returned only on `$select` for a single object, that is, `GET applications/{applicationId}?$select=keyCredentials` or `GET servicePrincipals/{servicePrincipalId}?$select=keyCredentials`; otherwise, it is always `null`. |
v1.0 List https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/list.md
- Title: List resource+
+ Title: "List resource"
ms.localizationpriority: high ms.prod: "sharepoint" description: "The list resource represents a list in a site."
All examples below are relative to a site, for example, `https://graph.microsoft
The **list** resource has the following properties.
-| Property name | Type | Description
-|:--|:|:
-| **displayName** | string | The displayable title of the list.
-| **list** | [listInfo][] | Provides additional details about the list.
-| **system** | [systemFacet][] | If present, indicates that this is a system-managed list. Read-only.
+| Property name | Type | Description |
+|:-|:-|:|
+| **displayName** | string | The displayable title of the list. |
+| **list** | [listInfo][] | Provides additional details about the list. |
+| **system** | [systemFacet][] | If present, indicates that this is a system-managed list. Read-only. |
The following properties are inherited from **[baseItem][]**.
-| Property name | Type | Description
-|:-|:|:
-| **id** | string | The unique identifier of the item. Read-only.
-| **name** | string | The name of the item.
-| **createdBy** | [identitySet][] | Identity of the creator of this item. Read-only.
-| **createdDateTime** | DateTimeOffset | The date and time the item was created. Read-only.
-| **description** | string | The descriptive text for the item.
-| **eTag** | string | ETag for the item. Read-only. |
-| **lastModifiedBy** | [identitySet][] | Identity of the last modifier of this item. Read-only.
-| **lastModifiedDateTime** | DateTimeOffset | The date and time the item was last modified. Read-only.
-| **parentReference** | [itemReference][] | Parent information, if the item has a parent. Read-write.
-| **sharepointIds** | [sharepointIds][] | Returns identifiers useful for SharePoint REST compatibility. Read-only.
-| **webUrl** | string (url) | URL that displays the item in the browser. Read-only.
+| Property name | Type | Description |
+|:-|:|:-|
+| **createdBy** | [identitySet][] | Identity of the creator of this item. Read-only. |
+| **createdDateTime** | DateTimeOffset | The date and time the item was created. Read-only. |
+| **description** | string | The descriptive text for the item. |
+| **eTag** | string | ETag for the item. |
+| **id** | string | The unique identifier of the item. Read-only. |
+| **name** | string | The name of the item. Read-only. |
+| **lastModifiedBy** | [identitySet][] | Identity of the last modifier of this item. Read-only. |
+| **lastModifiedDateTime** | DateTimeOffset | The date and time the item was last modified. Read-only. |
+| **parentReference** | [itemReference][] | Parent information, if the item has a parent. Read-write. |
+| **sharepointIds** | [sharepointIds][] | Returns identifiers useful for SharePoint REST compatibility. Read-only. |
+| **webUrl** | string (url) | URL that displays the item in the browser. Read-only. |
## Relationships
The **list** resource has the following relationships to other resources.
| Relationship name | Type | Description |:|:|:-
-| **drive** | [drive][] | Only present on document libraries. Allows access to the list as a [drive][] resource with [driveItems][driveItem].
-| **items** | Collection([listItem][]) | All items contained in the list.
| **columns** | Collection([columnDefinition][]) | The collection of field definitions for this list. | **contentTypes** | Collection([contentType][]) | The collection of content types present in this list.
+| **drive** | [drive][] | Only present on document libraries. Allows access to the list as a [drive][] resource with [driveItems][driveItem].
+| **items** | Collection([listItem][]) | All items contained in the list.
| **operations** | [richLongRunningOperation](../resources/richlongrunningoperation.md) collection | The collection of long-running operations on the list. | **subscriptions** | Collection([subscription][]) | The set of subscriptions on the list.
v1.0 Listitem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/listitem.md
The following properties are inherited from **[baseItem][]**.
| Property | Type | Description | |:|:|:-|
-| id | string | The unique identifier of the item. Read-only. |
-| name | string | The name / title of the item. |
| createdBy | [identitySet][] | Identity of the creator of this item. Read-only. | | createdDateTime | DateTimeOffset | The date and time the item was created. Read-only. | | description | string | The descriptive text for the item. | | eTag | string | ETag for the item. Read-only. |
+| id | string | The unique identifier of the item. Read-only. |
| lastModifiedBy | [identitySet][] | Identity of the last modifier of this item. Read-only. | | lastModifiedDateTime | DateTimeOffset | The date and time the item was last modified. Read-only. |
+| name | string | The name / title of the item. |
| parentReference | [itemReference][] | Parent information, if the item has a parent. Read-write. | | sharepointIds | [sharepointIds][] | Returns identifiers useful for SharePoint REST compatibility. Read-only. | | webUrl | string (url) | URL that displays the item in the browser. Read-only. |
v1.0 Lobbybypasssettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/lobbybypasssettings.md
Specifies which participants can bypass the meeting lobby.
| Property | Type | Description | | | - | - |
-| scope | [lobbyBypassScope](#lobbybypassscope-values) | Specifies the type of participants that are automatically admitted into a meeting, bypassing the lobby. Optional.|
| isDialInBypassEnabled | Boolean | Specifies whether or not to always let dial-in callers bypass the lobby. Optional. |
+| scope | [lobbyBypassScope](#lobbybypassscope-values) | Specifies the type of participants that are automatically admitted into a meeting, bypassing the lobby. Optional.|
### lobbyBypassScope values
v1.0 Localeinfo https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/localeinfo.md
Information about the locale, including the preferred language and country/regio
## Properties | Property | Type |Description| |:|:--|:-|
-|locale|string|A locale representation for the user, which includes the user's preferred language and country/region. For example, "en-us". The language component follows 2-letter codes as defined in [ISO 639-1](https://www.iso.org/iso/home/standards/language_codes.htm), and the country component follows 2-letter codes as defined in [ISO 3166-1 alpha-2](https://www.iso.org/iso/country_codes.htm).|
|displayName|string|A name representing the user's locale in natural language, for example, "English (United States)".|
+|locale|string|A locale representation for the user, which includes the user's preferred language and country/region. For example, "en-us". The language component follows 2-letter codes as defined in [ISO 639-1](https://www.iso.org/iso/home/standards/language_codes.htm), and the country component follows 2-letter codes as defined in [ISO 3166-1 alpha-2](https://www.iso.org/iso/country_codes.htm).|
## JSON representation
v1.0 Longrunningoperation https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/longrunningoperation.md
The status of a long-running operation.
## Properties |Property|Type|Description| |:|:|:|
-|createdDateTime|DateTimeOffset|The start time of the operation.|
-|id|String|The unique identifier of the operation |
-|lastActionDateTime|DateTimeOffset|The time of the last action in the operation.|
+|createdDateTime|DateTimeOffset|The start time of the operation. 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`.|
+|id|String|The unique identifier of the operation. |
+|lastActionDateTime|DateTimeOffset|The time of the last action in the operation. 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`.|
|resourceLocation|String| URI of the resource that the operation is performed on. | |status|longRunningOperationStatus|The status of the operation. The possible values are: `notStarted`, `running`, `succeeded`, `failed`, `unknownFutureValue`.| |statusDetail|String|Details about the status of the operation.|
The status of a long-running operation.
## JSON representation
-Here is a JSON representation of the resource.
+The following is a JSON representation of the resource.
<!-- { "blockType": "resource",
Here is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.longRunningOperation",
- "id": "String (identifier)",
"createdDateTime": "String (timestamp)",
+ "id": "String (identifier)",
"lastActionDateTime": "String (timestamp)", "resourceLocation": "String", "status": "String",
v1.0 Mailassessmentrequest https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/mailassessmentrequest.md
When you create a mail threat assessment request, the mail should be received by
| Property | Type | Description | |:-|:|:|
-|destinationRoutingReason|[mailDestinationRoutingReason](enums.md#maildestinationroutingreason-values)|The reason for mail routed to its destination. Possible values are: `none`, `mailFlowRule`, `safeSender`, `blockedSender`, `advancedSpamFiltering`, `domainAllowList`, `domainBlockList`, `notInAddressBook`, `firstTimeSender`, `autoPurgeToInbox`, `autoPurgeToJunk`, `autoPurgeToDeleted`, `outbound`, `notJunk`, `junk`.|
-|messageUri|String|The resource URI of the mail message for assessment.|
-|recipientEmail|String|The mail recipient whose policies are used to assess the mail.|
|category|[threatCategory](enums.md#threatcategory-values)|The threat category. Possible values are: `spam`, `phishing`, `malware`.| |contentType|[threatAssessmentContentType](enums.md#threatassessmentcontenttype-values)|The content type of threat assessment. Possible values are: `mail`, `url`, `file`.| |createdBy|[identitySet](identityset.md)|The threat assessment request creator.| |createdDateTime|DateTimeOffset|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`.|
+|destinationRoutingReason|[mailDestinationRoutingReason](enums.md#maildestinationroutingreason-values)|The reason for mail routed to its destination. Possible values are: `none`, `mailFlowRule`, `safeSender`, `blockedSender`, `advancedSpamFiltering`, `domainAllowList`, `domainBlockList`, `notInAddressBook`, `firstTimeSender`, `autoPurgeToInbox`, `autoPurgeToJunk`, `autoPurgeToDeleted`, `outbound`, `notJunk`, `junk`.|
|expectedAssessment|[threatExpectedAssessment](enums.md#threatexpectedassessment-values)|The expected assessment from submitter. Possible values are: `block`, `unblock`.| |id|String|The threat assessment request ID is a globally unique identifier (GUID).|
+|messageUri|String|The resource URI of the mail message for assessment.|
+|recipientEmail|String|The mail recipient whose policies are used to assess the mail.|
|requestSource|[threatAssessmentRequestSource](enums.md#threatassessmentrequestsource-values)|The source of threat assessment request. Possible values are: `administrator`.| |status|[threatAssessmentStatus](enums.md#threatassessmentstatus-values)|The assessment process status. Possible values are: `pending`, `completed`.|
v1.0 Mailsearchfolder https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/mailsearchfolder.md
When a search folder is deleted, your app should create a new search folder reso
| Property | Type | Description | |:|:--|:-|
-| isSupported | Boolean | Indicates whether a search folder is editable using REST APIs. |
+| filterQuery | String | The OData query to filter the messages. |
| includeNestedFolders | Boolean | Indicates how the mailbox folder hierarchy should be traversed in the search. `true` means that a deep search should be done to include child folders in the hierarchy of each folder explicitly specified in **sourceFolderIds**. `false` means a shallow search of only each of the folders explicitly specified in **sourceFolderIds**. |
+| isSupported | Boolean | Indicates whether a search folder is editable using REST APIs. |
| sourceFolderIds | String collection | The mailbox folders that should be mined. |
-| filterQuery | String | The OData query to filter the messages. |
## JSON representation
v1.0 Mailtipserror https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/mailtipserror.md
An error that occurs during an action.
## Properties | Property | Type |Description| |:--|:--|:--|
-| message | String | The error message. |
| code | String | The error code. |
+| message | String | The error message. |
## JSON representation
v1.0 Meetinginfo https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/meetinginfo.md
Title: "meetingInfo resource type"
-description: "Meeting information specified to create or join a meeting."
+description: "An abstract class that contains meeting-specific information."
ms.localizationpriority: medium ms.prod: "cloud-communications"
doc_type: resourcePageType
Namespace: microsoft.graph
-This is an abstract class that contains meeting specific information.
-
-To join an existing meeting, you must either specify the [organizerMeetingInfo](organizermeetinginfo.md)
-in combination with the [chatInfo](./chatinfo.md), or just
-the [tokenMeetingInfo](tokenmeetinginfo.md).
+An abstract class that contains meeting-specific information.
+To join an existing meeting, you must either specify the [organizerMeetingInfo](organizermeetinginfo.md) in combination with the [chatInfo](./chatinfo.md), the [tokenMeetingInfo](tokenmeetinginfo.md), or the [joinMeetingIdMeetingInfo](joinmeetingidmeetinginfo.md).
-## Derived types
+Base type of [organizerMeetingInfo](organizermeetinginfo.md), [tokenMeetingInfo](tokenmeetinginfo.md), and [joinMeetingIdMeetingInfo](joinmeetingidmeetinginfo.md).
-| Type | Description |
-|:--|:--|
-| [organizerMeetingInfo](./organizermeetinginfo.md) | Details about the organizer of the meeting |
-| [tokenMeetingInfo](tokenmeetinginfo.md) | An encrypted token that contains the information about the meeting |
+## Properties
+
+None.
## JSON representation
The following is a JSON representation of the resource.
"suppressions": [] } -->-
v1.0 Meetingparticipantinfo https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/meetingparticipantinfo.md
Information about a participant in a meeting.
| Property | Type | Description | | :- | :- | :- | | identity | [identitySet](identityset.md) | Identity information of the participant. |
-| upn | String | User principal name of the participant. |
| role | onlineMeetingRole | Specifies the participant's role in the meeting. Possible values are `attendee`, `presenter`, `producer`, and `unknownFutureValue`.|
+| upn | String | User principal name of the participant. |
> [!TIP] >
v1.0 Microsoftauthenticatorauthenticationmethod https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/microsoftauthenticatorauthenticationmethod.md
Namespace: microsoft.graph
A representation of the Microsoft Authenticator app registered to a user. Microsoft Authenticator is an authentication method.
-Inherits from [authenticationMethod](../resources/authenticationmethod.md).
+This is a derived type that inherits from the [authenticationMethod](authenticationmethod.md) resource type.
## Methods |Method|Return type|Description|
Inherits from [authenticationMethod](../resources/authenticationmethod.md).
|Property|Type|Description| |:|:|:| |createdDateTime|DateTimeOffset|The date and time that this app was registered. This property is null if the device is not registered for passwordless Phone Sign-In.|
+|deviceTag|String|Tags containing app metadata.|
|displayName|String|The name of the device on which this app is registered.| |id|String|A unique identifier for this authentication method. Inherited from [authenticationMethod](../resources/authenticationmethod.md)|
-|deviceTag|String|Tags containing app metadata.|
|phoneAppVersion|String|Numerical version of this instance of the Authenticator app.| ## Relationships
v1.0 Microsoftauthenticatorauthenticationmethodconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/microsoftauthenticatorauthenticationmethodconfiguration.md
Represents a Microsoft Authenticator authentication methods policy. Authenticati
|Property|Type|Description| |:|:|:| |id|String|The authentication method policy identifier.|
-|state|authenticationMethodState|Possible values are: `enabled`, `disabled`.|
|featureSettings|[microsoftAuthenticatorFeatureSettings](../resources/microsoftauthenticatorfeaturesettings.md)|A collection of Microsoft Authenticator settings such as application context and location context, and whether they are enabled for all users or specific users only.|
+|state|authenticationMethodState|Possible values are: `enabled`, `disabled`.|
## Relationships |Relationship|Type|Description| |:|:|:|
-|includeTargets|[microsoftAuthenticatorAuthenticationMethodTarget](../resources/microsoftauthenticatorauthenticationmethodtarget.md) collection|A collection of users or groups who are enabled to use the authentication method. Expanded by default.|
+|includeTargets|[microsoftAuthenticatorAuthenticationMethodTarget](../resources/microsoftauthenticatorauthenticationmethodtarget.md) collection|A collection of groups that are enabled to use the authentication method. Expanded by default.|
## JSON representation The following is a JSON representation of the resource.
v1.0 Microsoftauthenticatorauthenticationmethodtarget https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/microsoftauthenticatorauthenticationmethodtarget.md
Title: "microsoftAuthenticatorAuthenticationMethodTarget resource type"
-description: "A collection of users or groups enabled to use Microsoft Authenticator authentication methods policy."
+description: "A collection of groups enabled to use Microsoft Authenticator authentication methods policy."
ms.localizationpriority: medium ms.prod: "identity-and-sign-in"
doc_type: resourcePageType
# microsoftAuthenticatorAuthenticationMethodTarget resource type Namespace: microsoft.graph
-A collection of users or groups enabled to use [Microsoft Authenticator authentication methods policy](../resources/microsoftAuthenticatorAuthenticationMethodConfiguration.md) in Azure AD.
+A collection of groups enabled to use [Microsoft Authenticator authentication methods policy](../resources/microsoftAuthenticatorAuthenticationMethodConfiguration.md) in Azure AD.
## Properties |Property|Type|Description| |:|:|:|
-|id|String|Object ID of an Azure AD user or group.|
|authenticationMode|microsoftAuthenticatorAuthenticationMode|Determines which types of notifications can be used for sign-in. Possible values are: `any`, `deviceBasedPush` (passwordless only), `push`.|
+|id|String|Object ID of an Azure AD user or group.|
|isRegistrationRequired|Boolean|Determines whether the user is enforced to register the authentication method. *Not supported*. | |targetType|authenticationMethodTargetType| Possible values are: `user`, `group`.|
v1.0 Multivaluelegacyextendedproperty https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/multivaluelegacyextendedproperty.md
Title: "multiValueLegacyExtendedProperty resource type"
description: "An extended property that contains a collection of values." ms.localizationpriority: medium doc_type: resourcePageType
v1.0 Nameditem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/nameditem.md
Represents a defined name for a range of cells or value. Names can be primitive
## Properties | Property | Type |Description| |:|:--|:-|
-|name|string|The name of the object. Read-only.|
|comment|string|Represents the comment associated with this name.|
+|name|string|The name of the object. Read-only.|
|scope|string|Indicates whether the name is scoped to the workbook or to a specific worksheet. Read-only.| |type|string|Indicates what type of reference is associated with the name. The possible values are: `String`, `Integer`, `Double`, `Boolean`, `Range`. Read-only.| |value|Json|Represents the formula that the name is defined to refer to. E.g. =Sheet14!$B$2:$H$12, =4.75, etc. Read-only.|
v1.0 Networkconnection https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/networkconnection.md
Contains stateful information about the network connection related to the alert.
|:|:--|:-| |applicationName|String|Name of the application managing the network connection (for example, Facebook or SMTP).| |destinationAddress|String|Destination IP address (of the network connection).|
-|destinationLocation|String|Location (by IP address mapping) associated with the destination of a network connection.|
|destinationDomain|String|Destination domain portion of the destination URL. (for example 'www.contoso.com').|
+|destinationLocation|String|Location (by IP address mapping) associated with the destination of a network connection.|
|destinationPort|String|Destination port (of the network connection).| |destinationUrl|String|Network connection URL/URI string - excluding parameters. (for example 'www.contoso.com/products/default.html')| |direction|connectionDirection|Network connection direction. Possible values are: `unknown`, `inbound`, `outbound`.|
v1.0 Notebook https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/notebook.md
Here is a JSON representation of the resource
|:|:--|:-| |createdBy|[identitySet](identityset.md)|Identity of the user, device, and application which created the item. Read-only.| |createdDateTime|DateTimeOffset|The date and time when the notebook was created. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is `2014-01-01T00:00:00Z`. Read-only.|
+|displayName|String|The name of the notebook.|
|id|String|The unique identifier of the notebook. Read-only.| |isDefault|Boolean|Indicates whether this is the user's default notebook. Read-only.| |isShared|Boolean|Indicates whether the notebook is shared. If true, the contents of the notebook can be seen by people other than the owner. Read-only.| |lastModifiedBy|[identitySet](identityset.md)|Identity of the user, device, and application which created the item. Read-only.| |lastModifiedDateTime|DateTimeOffset|The date and time when the notebook was last modified. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is `2014-01-01T00:00:00Z`. Read-only.| |links|[NotebookLinks](notebooklinks.md)|Links for opening the notebook. The `oneNoteClientURL` link opens the notebook in the OneNote native client if it's installed. The `oneNoteWebURL` link opens the notebook in OneNote on the web.|
-|displayName|String|The name of the notebook.|
|sectionGroupsUrl|String|The URL for the `sectionGroups` navigation property, which returns all the section groups in the notebook. Read-only.| |sectionsUrl|String|The URL for the `sections` navigation property, which returns all the sections in the notebook. Read-only.| |self|String|The endpoint where you can get details about the notebook. Read-only.|
v1.0 Oauth2permissiongrant https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/oauth2permissiongrant.md
Delegated permissions are sometimes referred to as "OAuth 2.0 scopes" or "scopes
| Property | Type | Description | |:|:--|:-|
-| id | String | Unique identifier for the **oAuth2PermissionGrant**. Read-only.|
| clientId | String | The **id** of the client [service principal](serviceprincipal.md) for the application which is authorized to act on behalf of a signed-in user when accessing an API. Required. Supports `$filter` (`eq` only). | | consentType | String | Indicates if authorization is granted for the client application to impersonate all users or only a specific user. *AllPrincipals* indicates authorization to impersonate all users. *Principal* indicates authorization to impersonate a specific user. Consent on behalf of all users can be granted by an administrator. Non-admin users may be authorized to consent on behalf of themselves in some cases, for some delegated permissions. Required. Supports `$filter` (`eq` only). |
+| id | String | Unique identifier for the **oAuth2PermissionGrant**. Read-only.|
| principalId | String | The **id** of the [user](user.md) on behalf of whom the client is authorized to access the resource, when **consentType** is *Principal*. If **consentType** is *AllPrincipals* this value is null. Required when **consentType** is *Principal*. Supports `$filter` (`eq` only).| | resourceId | String | The **id** of the resource [service principal](serviceprincipal.md) to which access is authorized. This identifies the API which the client is authorized to attempt to call on behalf of a signed-in user. Supports `$filter` (`eq` only). | | scope | String | A space-separated list of the claim values for delegated permissions which should be included in access tokens for the resource application (the API). For example, `openid User.Read GroupMember.Read.All`. Each claim value should match the **value** field of one of the delegated permissions defined by the API, listed in the **oauth2PermissionScopes** property of the resource [service principal](serviceprincipal.md). Must not exceed 3850 characters in length.|
v1.0 Objectidentity https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/objectidentity.md
The **identities** property of the [user](user.md) resource is an **objectIdenti
| Property | Type |Description| |:|:--|:-|
-|signInType|String| Specifies the user sign-in types in your directory, such as `emailAddress`, `userName`, `federated`, or `userPrincipalName`. `federated` represents a unique identifier for a user from an issuer, that can be in any format chosen by the issuer. Setting or updating a `userPrincipalName` identity will update the value of the **userPrincipalName** property on the user object. The validations performed on the `userPrincipalName` property on the user object, for example, verified domains and acceptable characters, will be performed when setting or updating a `userPrincipalName` identity. Additional validation is enforced on **issuerAssignedId** when the sign-in type is set to `emailAddress` or `userName`. This property can also be set to any custom string. |
|issuer|string|Specifies the issuer of the identity, for example `facebook.com`.<br>For local accounts (where **signInType** is not `federated`), this property is the local B2C tenant default domain name, for example `contoso.onmicrosoft.com`.<br>For external users from other Azure AD organization, this will be the domain of the federated organization, for example `contoso.com`.<br><br>Supports `$filter`. 512 character limit.|
-|issuerAssignedId|string|Specifies the unique identifier assigned to the user by the issuer. The combination of **issuer** and **issuerAssignedId** must be unique within the organization. Represents the sign-in name for the user, when **signInType** is set to `emailAddress` or `userName` (also known as local accounts).<br>When **signInType** is set to: <ul><li>`emailAddress`, (or a custom string that starts with `emailAddress` like `emailAddress1`) **issuerAssignedId** must be a valid email address</li><li>`userName`, **issuerAssignedId** must be a valid [local part of an email address](https://tools.ietf.org/html/rfc3696#section-3)</li></ul>Supports `$filter`. 100 character limit.|
+|issuerAssignedId|string|Specifies the unique identifier assigned to the user by the issuer. The combination of **issuer** and **issuerAssignedId** must be unique within the organization. Represents the sign-in name for the user, when **signInType** is set to `emailAddress` or `userName` (also known as local accounts).<br>When **signInType** is set to: <ul><li>`emailAddress`, (or a custom string that starts with `emailAddress` like `emailAddress1`) **issuerAssignedId** must be a valid email address</li><li>`userName`, **issuerAssignedId** must begin with alphabetical character or number, and can only contain alphanumeric characters and the following symbols: - or _</li></ul>Supports `$filter`. 64 character limit.|
+|signInType|String| Specifies the user sign-in types in your directory, such as `emailAddress`, `userName`, `federated`, or `userPrincipalName`. `federated` represents a unique identifier for a user from an issuer, that can be in any format chosen by the issuer. Setting or updating a `userPrincipalName` identity will update the value of the **userPrincipalName** property on the user object. The validations performed on the `userPrincipalName` property on the user object, for example, verified domains and acceptable characters, will be performed when setting or updating a `userPrincipalName` identity. Additional validation is enforced on **issuerAssignedId** when the sign-in type is set to `emailAddress` or `userName`. This property can also be set to any custom string. |
### Filtering When filtering on the **identities** property for an **issuerAssignedId**, you must supply both **issuer** and **issuerAssignedId**. In addition:
v1.0 Officegraphinsights https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/officegraphinsights.md
Each insight is returned with a **resourceVisualization** and **resourceReferenc
| Relationship | Type | Description | | - || -|
+| shared | [sharedInsight](insights-shared.md) collection | Calculated relationship identifying documents shared with or by the user. This includes URLs, file attachments, and reference attachments to OneDrive for Business and SharePoint files found in Outlook messages and meetings. This also includes URLs and reference attachments to Teams conversations. Ordered by recency of share.|
| trending | [trending](insights-trending.md) collection | Calculated relationship identifying documents trending around a user. Trending documents are calculated based on activity of the user's closest network of people and include files stored in OneDrive for Business and SharePoint. Trending insights help the user to discover potentially useful content that the user has access to, but has never viewed before.| | used | [usedInsight](insights-used.md) collection | Calculated relationship identifying the latest documents viewed or modified by a user, including OneDrive for Business and SharePoint documents, ranked by recency of use.|
-| shared | [sharedInsight](insights-shared.md) collection | Calculated relationship identifying documents shared with or by the user. This includes URLs, file attachments, and reference attachments to OneDrive for Business and SharePoint files found in Outlook messages and meetings. This also includes URLs and reference attachments to Teams conversations. Ordered by recency of share.|
## JSON representation
v1.0 Onenoteoperation https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/onenoteoperation.md
Here is a JSON representation of the resource.
|error|[onenoteOperationError](onenoteoperationerror.md)|The error returned by the operation.| |id|string|The operation id. Read-only.| |lastActionDateTime| DateTimeOffset |The time of the last action of the operation.|
+|percentComplete|string|The operation percent complete if the operation is still in `running` status.|
|resourceId|string|The resource id.| |resourceLocation|string|The resource URI for the object. For example, the resource URI for a copied page or section. | |status|operationStatus|The current status of the operation: `NotStarted`, `Running`, `Completed`, `Failed`. |
-|percentComplete|string|The operation percent complete if the operation is still in `running` status.|
## Relationships None
v1.0 Onlinemeeting https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/onlinemeeting.md
Contains information about a meeting, including the URL used to join a meeting,
| Property | Type | Description | | :-- | :-- | :- |
-| allowedPresenters | [onlineMeetingPresenters](#onlinemeetingpresenters-values) | Specifies who can be a presenter in a meeting. Possible values are listed in the following table. |
| allowAttendeeToEnableCamera | Boolean | Indicates whether attendees can turn on their camera. | | allowAttendeeToEnableMic | Boolean | Indicates whether attendees can turn on their microphone. |
+| allowedPresenters | [onlineMeetingPresenters](#onlinemeetingpresenters-values) | Specifies who can be a presenter in a meeting. Possible values are listed in the following table. |
| allowMeetingChat | [meetingChatMode](#meetingchatmode-values) | Specifies the mode of meeting chat. | | allowTeamworkReactions | Boolean | Indicates whether Teams reactions are enabled for the meeting. |
+| allowedPresenters | [onlineMeetingPresenters](#onlinemeetingpresenters-values) | Specifies who can be a presenter in a meeting. Possible values are listed in the following table. |
| attendeeReport | Stream | The content stream of the attendee report of a [Microsoft Teams live event](/microsoftteams/teams-live-events/what-are-teams-live-events). Read-only. | | audioConferencing | [audioConferencing](audioconferencing.md) | The phone access (dial-in) information for an online meeting. Read-only. | | broadcastSettings | [broadcastMeetingSettings](broadcastMeetingSettings.md) | Settings related to a live event. |
Contains information about a meeting, including the URL used to join a meeting,
| isBroadcast | Boolean | Indicates if this is a [Teams live event](/microsoftteams/teams-live-events/what-are-teams-live-events). | | isEntryExitAnnounced | Boolean | Indicates whether to announce when callers join or leave. | | joinInformation | [itemBody](itembody.md) | The join information in the language and locale variant specified in the `Accept-Language` request HTTP header. Read-only. |
+| joinMeetingIdSettings | [joinMeetingIdSettings](joinmeetingidsettings.md) | Specifies the **joinMeetingId**, the meeting passcode, and the requirement for the passcode. Once an **onlineMeeting** is created, the **joinMeetingIdSettings** cannot be modified. To make any changes to this property, the meeting needs to be canceled and a new one needs to be created. |
| joinWebUrl | String | The join URL of the online meeting. Read-only. | | lobbyBypassSettings | [lobbyBypassSettings](lobbyBypassSettings.md) | Specifies which participants can bypass the meeting lobby. | | participants | [meetingParticipants](meetingparticipants.md) | The participants associated with the online meeting. This includes the organizer and the attendees. |
Contains information about a meeting, including the URL used to join a meeting,
| organization | Everyone in organizerΓÇÖs organization is a presenter. | | roleIsPresenter | Only the participants whose role is presenter are presenters. | | organizer | Only the organizer is a presenter. |
-| unknownFutureValue | Unknow future value. |
+| unknownFutureValue | Evolvable enumeration sentinel value. Do not use. |
> [!TIP] >
Contains information about a meeting, including the URL used to join a meeting,
| enabled | Meeting chat is enabled. | | disabled | Meeting chat is disabled. | | limited | Meeting chat is enabled but only for the duration of the meeting call. |
-| unknownFutureValue | Unknown future value. |
+| unknownFutureValue | Evolvable enumeration sentinel value. Do not use. |
## Relationships
Contains information about a meeting, including the URL used to join a meeting,
}--> ```json {
+ "allowAttendeeToEnableCamera": "Boolean",
+ "allowAttendeeToEnableMic": "Boolean",
+ "allowMeetingChat": {"@odata.type": "microsoft.graph.meetingChatMode"},
+ "allowTeamworkReactions": "Boolean",
+ "allowedPresenters": "String",
+ "attendeeReport": "Stream",
"audioConferencing": {"@odata.type": "microsoft.graph.audioConferencing"},
+ "broadcastSettings": {"@odata.type": "microsoft.graph.broadcastSettings"},
"chatInfo": {"@odata.type": "microsoft.graph.chatInfo"}, "creationDateTime": "String (timestamp)", "endDateTime": "String (timestamp)", "id": "String (identifier)",
+ "isBroadcast": "Boolean",
+ "isEntryExitAnnounced": "Boolean",
+ "joinInformation": {"@odata.type": "microsoft.graph.itemBody"},
+ "joinMeetingIdSettings": {"@odata.type": "microsoft.graph.joinMeetingIdSettings"},
"joinWebUrl": "String",
+ "lobbyBypassSettings": {"@odata.type": "microsoft.graph.lobbyBypassSettings"},
"participants": {"@odata.type": "microsoft.graph.meetingParticipants"},
+ "recordAutomatically": "Boolean",
"startDateTime": "String (timestamp)", "subject": "String", "videoTeleconferenceId": "String",
- "isEntryExitAnnounced": "Boolean",
- "lobbyBypassSettings": {"@odata.type": "microsoft.graph.lobbyBypassSettings"},
- "allowedPresenters": "String",
- "isBroadcast": "Boolean",
- "broadcastSettings": {"@odata.type": "microsoft.graph.broadcastSettings"},
- "allowMeetingChat": {"@odata.type": "microsoft.graph.meetingChatMode"},
- "allowTeamworkReactions": "Boolean",
- "allowAttendeeToEnableMic": "Boolean",
- "allowAttendeeToEnableCamera": "Boolean"
} ```
v1.0 Opentypeextension https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/opentypeextension.md
exposes at https://graph.microsoft.com/v1.0/$metadata.
| Property | Type | Description | |:|:--|:-|
-|extensionName|String|A unique text identifier for an open type data extension. Required.|
-|id|String| A fully qualified identifier that concatenates the extension type with the **extensionName**. Read-only.|
+|extensionName|String|A unique text identifier for an open type data extension. Optional.|
+|id|String| A fully qualified identifier that concatenates the extension type with the **extensionName**. Read-only. <br/><br/> The **id** must be defined during the Create operation via one of the following ways: <ul><li> Explicitly define the **id** property in the request body. <li> Define an **extensionName** property in the request body, and Microsoft Graph automatically assigns the same value to the **id** property. <ul><li> In subsequent updates, you can change the **extensionName** property value to one that's different from the **id** value. <li>In subsequent updates, specifying only the **id** property in the request body automatically deletes the **extensionName** property from the open extension.</ul></ul>|
## Relationships
Here is a JSON representation of the resource.
```json { "extensionName": "string",
- "id": "string (identifier)"
+ "id": "String (identifier)"
} ```
v1.0 Optionalclaims https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/optionalclaims.md
Application developers can configure optional claims in their Azure AD apps to s
## Properties | Property | Type | Description | |:-|:|:|
-|idToken|[optionalClaim](optionalclaim.md) collection| The optional claims returned in the JWT ID token. |
|accessToken|[optionalClaim](optionalclaim.md) collection| The optional claims returned in the JWT access token. |
+|idToken|[optionalClaim](optionalclaim.md) collection| The optional claims returned in the JWT ID token. |
|saml2Token|[optionalClaim](optionalclaim.md) collection| The optional claims returned in the SAML token.| ## JSON Representation
v1.0 Organization https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/organization.md
This resource lets you add your own data to custom properties using [extensions]
| Method | Return Type |Description| |:|:--|:-| |[Get organization](../api/organization-get.md) | [organization](organization.md) collection|Read properties and relationships of organization object.|
-|[Update](../api/organization-update.md) | [organization](organization.md) |Update organization object. The only properties that can be updated are: **marketingNotificationMails**, **technicalNotificationMails**, **securityComplianceNotificationMails**, **securityComplianceNotificationPhones** and **privacyProfile**. |
+|[Update](../api/organization-update.md) | None | Update organization object. The only properties that can be updated are: **marketingNotificationMails**, **technicalNotificationMails**, **securityComplianceNotificationMails**, **securityComplianceNotificationPhones** and **privacyProfile**. |
|**Open extensions**| |[Create open extension](../api/opentypeextension-post-opentypeextension.md) |[openTypeExtension](opentypeextension.md)| Create an open extension and add custom properties to a new or existing resource.| |[Get open extension](../api/opentypeextension-get.md) |[openTypeExtension](opentypeextension.md) collection| Get an open extension identified by the extension name.|
This resource lets you add your own data to custom properties using [extensions]
| country | String | Country/region name of the address for the organization. | | countryLetterCode | String | Country or region abbreviation for the organization in ISO 3166-2 format. | | createdDateTime | DateTimeOffset | Timestamp of when the organization was created. The value cannot be modified and is automatically populated when the organization is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is `2014-01-01T00:00:00Z`. Read-only. |
+| defaultUsageLocation | String | Two-letter ISO 3166 country code indicating the default service usage location of an organization. |
| deletedDateTime | DateTimeOffset | Represents date and time of when the Azure AD tenant was deleted using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is `2014-01-01T00:00:00Z`. Read-only. | | displayName | String | The display name for the tenant. | | id | String | The tenant ID, a unique identifier representing the organization (or tenant). Inherited from [directoryObject](directoryobject.md). Key. Not nullable. Read-only. |
This resource lets you add your own data to custom properties using [extensions]
| marketingNotificationEmails | String collection | Not nullable. | | onPremisesLastSyncDateTime | DateTimeOffset | The time and date at which the tenant was last synced with the on-premises directory. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is `2014-01-01T00:00:00Z`. Read-only.| | onPremisesSyncEnabled | Boolean | `true` if this object is synced from an on-premises directory; `false` if this object was originally synced from an on-premises directory but is no longer synced. Nullable. `null` if this object has never been synced from an on-premises directory (default). |
+| partnerTenantType | partnerTenantType | The type of partnership this tenant has with Microsoft. The possible values are: `microsoftSupport`, `syndicatePartner`, `breadthPartner`, `breadthPartnerDelegatedAdmin`, `resellerPartnerDelegatedAdmin`, `valueAddedResellerPartnerDelegatedAdmin`, `unknownFutureValue`. Nullable. For more information about the possible types, see [partnerTenantType values](#partnertenanttype-values).|
| postalCode | String | Postal code of the address for the organization. | | preferredLanguage | String | The preferred language for the organization. Should follow ISO 639-1 Code; for example, `en`. | | privacyProfile | [privacyProfile](privacyprofile.md) | The privacy profile of an organization. |
This resource lets you add your own data to custom properties using [extensions]
| state | String | State name of the address for the organization. | | street | String | Street name of the address for organization. | | technicalNotificationMails | String collection | Not nullable. |
+| tenantType | String | Not nullable. The tenant type option that was selected when the tenant was created. The possible values are: <li> `AAD` - An enterprise identity access management (IAM) service that serves business-to-employee and business-to-business (B2B) scenarios. <li> `AAD B2C` A customer identity access management (CIAM) service that serves business-to-consumer (B2C) scenarios. |
| verifiedDomains | [VerifiedDomain](verifieddomain.md) collection | The collection of domains associated with this tenant. Not nullable. |
+### partnerTenantType values
+
+| Member | Description |
+|--|-|
+| microsoftSupport | Legacy support tenant of Microsoft that was used to provide administrative support to all customer tenants. |
+| breadthPartner | The partner can provide administrative support for their customers. However, the partner is not allowed to resell to or request delegated admin permissions from customers. |
+| breadthPartnerDelegatedAdmin | Similar to Breadth Partner except they can request for delegated admin permissions (DAP) from customer tenants. |
+| syndicatePartner | The partner exclusively resells and manages Microsoft 365 and Intune for their customers. The customer cannot buy additional subscriptions directly or through other Microsoft partners. |
+| resellerPartnerDelegatedAdmin | The partner that can resell and manage Microsoft 365 and Intune for their customers. There is no exclusivity clause like for syndication partners. The customer can buy additional direct subscriptions directly from Microsoft or through other Microsoft partners. |
+| valueAddedResellerPartnerDelegatedAdmin | Are Tier 2 partners. They are Microsoft partners that have a relationship with another Microsoft partner such as a reseller. |
+| unknownFutureValue | Evolvable enumeration sentinel value. Do not use. |
+ ## Relationships | Relationship | Type |Description| |:|:--|:-|
Here is a JSON representation of the resource.
"country": "string", "countryLetterCode": "string", "createdDateTime": "String (timestamp)",
+ "defaultUsageLocation": "String",
"deletedDateTime": "String (timestamp)", "displayName": "string", "id": "string (identifier)",
Here is a JSON representation of the resource.
"marketingNotificationEmails": ["string"], "onPremisesLastSyncDateTime": "String (timestamp)", "onPremisesSyncEnabled": true,
+ "partnerTenantType": "String",
"postalCode": "string", "preferredLanguage": "string", "privacyProfile": {"@odata.type": "microsoft.graph.privacyProfile"},
Here is a JSON representation of the resource.
"state": "string", "street": "string", "technicalNotificationMails": ["string"],
+ "tenantType": "string",
"verifiedDomains": [{"@odata.type": "microsoft.graph.verifiedDomain"}] } ```
v1.0 Participantinfo https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/participantinfo.md
Contains additional properties about the participant identity
| endpointType | String | The type of endpoint the participant is using. Possible values are: `default`, `skypeForBusiness`, or `skypeForBusinessVoipPhone`. Read-only. | | identity | [identitySet](identityset.md) | The [identitySet](identityset.md) associated with this participant. Read-only. | | languageId | String | The language culture string. Read-only. |
-| region | String | The home region of the participant. This can be a country, a continent, or a larger geographic region. This does not change based on the participant's current physical location. Read-only. |
| participantId | String | The participant ID of the participant. Read-only. |
+| region | String | The home region of the participant. This can be a country, a continent, or a larger geographic region. This does not change based on the participant's current physical location. Read-only. |
## JSON representation
v1.0 Passwordauthenticationmethod https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/passwordauthenticationmethod.md
Namespace: microsoft.graph
A representation of a user's password. For security, the password itself will never be returned in the object, but action can be taken to reset a password.
-Inherits from [authenticationMethod](../resources/authenticationmethod.md).
+This is a derived type that inherits from the [authenticationMethod](authenticationmethod.md) resource type.
## Methods
v1.0 Passwordprofile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/passwordprofile.md
Contains the password profile associated with a user. The **passwordProfile** pr
## Properties | Property | Type |Description| |:|:--|:-|
-|forceChangePasswordNextSignIn|Boolean| `true` if the user must change her password on the next login; otherwise `false`. If not set, default is `false`. **NOTE:** For Azure B2C tenants, set to `false` and instead use custom policies and user flows to force password reset at first sign in. See [Force password reset at first logon](https://github.com/azure-ad-b2c/samples/tree/master/policies/force-password-reset-first-logon).|
+|forceChangePasswordNextSignIn|Boolean| `true` if the user must change her password on the next login; otherwise `false`.|
|forceChangePasswordNextSignInWithMfa|Boolean| If `true`, at next sign-in, the user must perform a multi-factor authentication (MFA) before being forced to change their password. The behavior is identical to **forceChangePasswordNextSignIn** except that the user is required to first perform a multi-factor authentication before password change. After a password change, this property will be automatically reset to `false`. If not set, default is `false`. | |password|String|The password for the user. This property is required when a user is created. It can be updated, but the user will be required to change the password on the next login. The password must satisfy minimum requirements as specified by the userΓÇÖs **passwordPolicies** property. By default, a strong password is required.|
v1.0 Permission https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/permission.md
Here is a JSON representation of the resource
| Property | Type | Description | |:|:|:--
+| expirationDateTime | DateTimeOffset | A format of yyyy-MM-ddTHH:mm:ssZ of DateTimeOffset indicates the expiration time of the permission. DateTime.MinValue indicates there is no expiration set for this permission. Optional. |
| id | String | The unique identifier of the permission among all permissions on the item. Read-only. |
-| grantedToV2 | [SharePointIdentitySet][] | For user type permissions, the details of the users and applications for this permission. Read-only. |
+| hasPassword | Boolean | Indicates whether the password is set for this permission. This property only appears in the response. Optional. Read-only. For OneDrive Personal only.. |
+| grantedTo (deprecated) | [IdentitySet](identityset.md) | For user type permissions, the details of the users and applications for this permission. Read-only. |
+| grantedToIdentities (deprecated) | Collection([IdentitySet](identityset.md)) | For type permissions, the details of the users to whom permission was granted. Read-only. |
| grantedToIdentitiesV2 | Collection([SharePointIdentitySet][]) | For link type permissions, the details of the users to whom permission was granted. Read-only. |
-| invitation | [SharingInvitation][] | Details of any associated sharing invitation for this permission. Read-only. |
+| grantedToV2 | [SharePointIdentitySet][] | For user type permissions, the details of the users and applications for this permission. Read-only. |
| inheritedFrom | [ItemReference](itemreference.md) | Provides a reference to the ancestor of the current permission, if it is inherited from an ancestor. Read-only. |
+| invitation | [SharingInvitation][] | Details of any associated sharing invitation for this permission. Read-only. |
| link | [SharingLink][] | Provides the link details of the current permission, if it is a link type permissions. Read-only. | | roles | Collection of String | The type of permission, for example, `read`. See below for the full list of roles. Read-only. | | shareId | String | A unique token that can be used to access this shared item via the [**shares** API](../api/shares-get.md). Read-only. |
-| expirationDateTime | DateTimeOffset | A format of yyyy-MM-ddTHH:mm:ssZ of DateTimeOffset indicates the expiration time of the permission. DateTime.MinValue indicates there is no expiration set for this permission. Optional. |
-| hasPassword | Boolean | Indicates whether the password is set for this permission. This property only appears in the response. Optional. Read-only. For OneDrive Personal only.. |
-| grantedTo (deprecated) | [IdentitySet](identityset.md) | For user type permissions, the details of the users and applications for this permission. Read-only. |
-| grantedToIdentities (deprecated) | Collection([IdentitySet](identityset.md)) | For type permissions, the details of the users to whom permission was granted. Read-only. |
+ The permission resource uses _facets_ to provide information about the kind of permission represented by the resource.
v1.0 Permissiongrantconditionset https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/permissiongrantconditionset.md
A permission grant condition set contains several conditions. For an event to ma
| Property | Type |Description| |:|:--|:-|
+| clientApplicationsFromVerifiedPublisherOnly | Boolean | Set to `true` to only match on client applications with a verified publisher. Set to `false` to match on any client app, even if it does not have a verified publisher. Default is `false`. |
+| clientApplicationIds | String collection | A list of **appId** values for the client applications to match with, or a list with the single value `all` to match any client application. Default is the single value `all`. |
+| clientApplicationPublisherIds | String collection | A list of Microsoft Partner Network (MPN) IDs for verified publishers of the client application, or a list with the single value `all` to match with client apps from any publisher. Default is the single value `all`. |
+| clientApplicationTenantIds | String collection | A list of Azure Active Directory tenant IDs in which the client application is registered, or a list with the single value `all` to match with client apps registered in any tenant. Default is the single value `all`. |
| id | String | The unique identifier for the permission grant condition set. Key. Read-only. | | permissionClassification | String | The [permission classification](delegatedpermissionclassification.md) for the permission being granted, or `all` to match with any permission classification (including permissions which are not classified). Default is `all`. |
+| permissions | String collection | The list of **id** values for the specific permissions to match with, or a list with the single value `all` to match with any permission. The **id** of delegated permissions can be found in the **oauth2PermissionScopes** property of the API's [**servicePrincipal**](serviceprincipal.md) object. The **id** of application permissions can be found in the **appRoles** property of the API's [**servicePrincipal**](serviceprincipal.md) object. The **id** of resource-specific application permissions can be found in the **resourceSpecificApplicationPermissions** property of the API's [**servicePrincipal**](serviceprincipal.md) object. Default is the single value `all`. |
| permissionType | permissionType | The permission type of the permission being granted. Possible values: `application` for application permissions (e.g. app roles), or `delegated` for delegated permissions. The value `delegatedUserConsentable` indicates delegated permissions which have not been configured by the API publisher to require admin consentΓÇöthis value may be used in built-in permission grant policies, but cannot be used in custom permission grant policies. Required. | | resourceApplication | String | The **appId** of the resource application (e.g. the API) for which a permission is being granted, or `any` to match with any resource application or API. Default is `any`. |
-| permissions | String collection | The list of **id** values for the specific permissions to match with, or a list with the single value `all` to match with any permission. The **id** of delegated permissions can be found in the **oauth2PermissionScopes** property of the API's [**servicePrincipal**](serviceprincipal.md) object. The **id** of application permissions can be found in the **appRoles** property of the API's [**servicePrincipal**](serviceprincipal.md) object. The **id** of resource-specific application permissions can be found in the **resourceSpecificApplicationPermissions** property of the API's [**servicePrincipal**](serviceprincipal.md) object. Default is the single value `all`. |
-| clientApplicationIds | String collection | A list of **appId** values for the client applications to match with, or a list with the single value `all` to match any client application. Default is the single value `all`. |
-| clientApplicationTenantIds | String collection | A list of Azure Active Directory tenant IDs in which the client application is registered, or a list with the single value `all` to match with client apps registered in any tenant. Default is the single value `all`. |
-| clientApplicationPublisherIds | String collection | A list of Microsoft Partner Network (MPN) IDs for verified publishers of the client application, or a list with the single value `all` to match with client apps from any publisher. Default is the single value `all`. |
-| clientApplicationsFromVerifiedPublisherOnly | Boolean | Set to `true` to only match on client applications with a verified publisher. Set to `false` to match on any client app, even if it does not have a verified publisher. Default is `false`. |
## JSON representation
v1.0 Permissiongrantpolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/permissiongrantpolicy.md
A permission grant policy consists of a list of **includes** condition sets, and
| Property | Type |Description| |:|:--|:-|
-| id | String | The unique identifier for the permission grant policy. The **id** prefix `microsoft-` is reserved for built-in permission grant policies, and may not be used in a custom permission grant policy. Only letters, numbers, hyphens (`-`) and underscores (`_`) are allowed. Key. Not nullable. Required on create. Immutable. |
| displayName | String |The display name for the permission grant policy.| | description |String| The description for the permission grant policy.|
-| includes | [permissionGrantConditionSet](permissiongrantconditionset.md) collection| Condition sets which are *included* in this permission grant policy. Automatically expanded on `GET`.|
| excludes |[permissionGrantConditionSet](permissiongrantconditionset.md) collection| Condition sets which are *excluded* in this permission grant policy. Automatically expanded on `GET`.|
+| id | String | The unique identifier for the permission grant policy. The **id** prefix `microsoft-` is reserved for built-in permission grant policies, and may not be used in a custom permission grant policy. Only letters, numbers, hyphens (`-`) and underscores (`_`) are allowed. Key. Not nullable. Required on create. Immutable. |
+| includes | [permissionGrantConditionSet](permissiongrantconditionset.md) collection| Condition sets which are *included* in this permission grant policy. Automatically expanded on `GET`.|
## Relationships | Relationship | Type |Description| |:|:--|:-|
-|includes|[permissionGrantConditionSet](permissiongrantconditionset.md) collection| Condition sets which are *included* in this permission grant policy. This navigation is automatically expanded on GET. |
|excludes|[permissionGrantConditionSet](permissiongrantconditionset.md) collection| Condition sets which are *excluded* in this permission grant policy. This navigation is automatically expanded on GET. |
+|includes|[permissionGrantConditionSet](permissiongrantconditionset.md) collection| Condition sets which are *included* in this permission grant policy. This navigation is automatically expanded on GET. |
## JSON representation
v1.0 Person https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/person.md
An aggregation of information about a person from across mail and contacts. Peop
|companyName|String|The name of the person's company.| |department|String|The person's department.| |displayName|String|The person's display name.|
-|scoredEmailAddresses|[scoredEmailAddress](scoredemailaddress.md) collection|The person's email addresses.|
|givenName|String|The person's given name.| |id|String|The person's unique identifier. Read-only.| |imAddress|String|The instant message voice over IP (VOIP) session initiation protocol (SIP) address for the user. Read-only.|
An aggregation of information about a person from across mail and contacts. Peop
|phones|[phone](phone.md) collection|The person's phone numbers.| |postalAddresses|[location](location.md) collection|The person's addresses.| |profession|String|The person's profession.|
+|scoredEmailAddresses|[scoredEmailAddress](scoredemailaddress.md) collection|The person's email addresses.|
|surname|String|The person's surname.| |userPrincipalName|String|The user principal name (UPN) of the person. The UPN is an Internet-style login name for the person based on the Internet standard [RFC 822](https://www.ietf.org/rfc/rfc0822.txt). By convention, this should map to the person's email name. The general format is alias@domain.| |websites|[website](website.md) collection|The person's websites.|
v1.0 Personorgroupcolumn https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/personorgroupcolumn.md
Here is a JSON representation of a **personOrGroupColumn** resource.
| Property name | Type | Description |:|:--|:-- | **allowMultipleSelection** | boolean | Indicates whether multiple values can be selected from the source.
-| **displayAs** | string | How to display the information about the person or group chosen. See below.
| **chooseFromType** | string | Whether to allow selection of people only, or people and groups. Must be one of `peopleAndGroups` or `peopleOnly`.
+| **displayAs** | string | How to display the information about the person or group chosen. See below.
## DisplayAs options
v1.0 Phoneauthenticationmethod https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/phoneauthenticationmethod.md
Mobile phones can be used for both SMS and voice calls, depending on the tenant
An office phone can only receive voice calls, not SMS messages.
+This is a derived type that inherits from the [authenticationMethod](authenticationmethod.md) resource type.
+ ## Methods | Method | Return Type | Description |
v1.0 Photo https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/photo.md
The **photo** resource provides photo and camera properties, for example, EXIF m
| Property | Type | Description |:|:|:-
-| **takenDateTime** | DateTimeOffset | Represents the date and time the photo was taken. Read-only.
| **cameraMake** | String | Camera manufacturer. Read-only. | **cameraModel** | String | Camera model. Read-only.
-| **fNumber** | Double | The F-stop value from the camera. Read-only.
| **exposureDenominator** | Double | The denominator for the exposure time fraction from the camera. Read-only. | **exposureNumerator** | Double | The numerator for the exposure time fraction from the camera. Read-only.
+| **fNumber** | Double | The F-stop value from the camera. Read-only.
| **focalLength** | Double | The focal length from the camera. Read-only. | **iso** | Int32 | The ISO value from the camera. Read-only. | **orientation** | Int16 | The orientation value from the camera. Writable on OneDrive Personal. |
+| **takenDateTime** | DateTimeOffset | Represents the date and time the photo was taken. Read-only.
## Remarks
v1.0 Pkcs12certificate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/pkcs12certificate.md
Inherits from [apiAuthenticationConfigurationBase](../resources/apiauthenticatio
|Property|Type|Description| |:|:|:|
-|pkcs12Value|String| Represents the pfx content that is sent. The value should be a base-64 encoded version of the actual certificate content. Required.|
|password|String| The password for the pfx file. Required. If no password is used, you must still provide a value of `""`.|
+|pkcs12Value|String| Represents the pfx content that is sent. The value should be a base-64 encoded version of the actual certificate content. Required.|
## JSON representation
v1.0 Pkcs12certificateinformation https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/pkcs12certificateinformation.md
Represents the public information of a Pkcs12 certificate.
|Property|Type|Description| |:|:|:| |isActive|Boolean| Represents whether the certificate is the active certificate to be used for calling the API connector. The active certificate is the most recently uploaded certificate which is not yet expired but whose notBefore time is in the past.|
-|thumbprint|String| The certificate thumbprint. |
|notAfter|Integer| The certificate's expiry. This value is a NumericDate as defined in RFC 7519 (A JSON numeric value representing the number of seconds from 1970-01-01T00:00:00Z UTC until the specified UTC date/time, ignoring leap seconds.)| |notBefore|Integer| The certificate's issue time (not before). This value is a NumericDate as defined in RFC 7519 (A JSON numeric value representing the number of seconds from 1970-01-01T00:00:00Z UTC until the specified UTC date/time, ignoring leap seconds.)|
+|thumbprint|String| The certificate thumbprint. |
## JSON representation
v1.0 Plannerbucket https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/plannerbucket.md
Title: "plannerBucket resource type"
-description: "Represents a bucket for tasks in a plan in Microsoft 365. It is contained in a plannerPlan and can have a collection of plannerTasks."
+description: "Represents a bucket for tasks in a plan in Microsoft 365."
ms.localizationpriority: medium ms.prod: "planner"
Represents a bucket (or "custom column") for tasks in a plan in Microsoft 365. I
|:|:--|:-| |id|String| Read-only. ID of the bucket. It is 28 characters long and case-sensitive. [Format validation](planner-identifiers-disclaimer.md) is done on the service.| |name|String|Name of the bucket.|
-|orderHint|String|Hint used to order items of this type in a list view. The format is defined as outlined [here](planner-order-hint-format.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).|
|planId|String|Plan ID to which the bucket belongs.| ## Relationships
v1.0 Plannerplan https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/plannerplan.md
Represents a plan in Microsoft 365. A plan can be owned by a [group](group.md) a
## Properties | Property | Type |Description| |:|:--|:-|
-|container|[plannerPlanContainer](../resources/plannerplancontainer.md)|Identifies the container of the plan. After it is set, this property canΓÇÖt be updated. Required.|
+|container|[plannerPlanContainer](../resources/plannerplancontainer.md)|Identifies the container of the plan. Specify only the **url**, the **containerId** and **type**, or all properties. After it is set, this property canΓÇÖt be updated. Required.|
|createdBy|[identitySet](identityset.md)|Read-only. The user who created the plan.| |createdDateTime|DateTimeOffset|Read-only. Date and time at which the plan is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is `2014-01-01T00:00:00Z`| |id|String| Read-only. ID of the plan. It is 28 characters long and case-sensitive. [Format validation](planner-identifiers-disclaimer.md) is done on the service.|
-|title|String|Required. Title of the plan.|
|owner (deprecated) |String| Use the **container** property instead. ID of the [group](group.md) that owns the plan. After it is set, this property canΓÇÖt be updated. This property will not return a valid group ID if the container of the plan is not a group.|
+|title|String|Required. Title of the plan.|
## Relationships | Relationship | Type |Description|
v1.0 Plannerplancontainer https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/plannerplancontainer.md
Microsoft Planner currently supports the container types listed in the following
## Properties |Property|Type|Description| |:|:|:|
-|containerId|String|The identifier of the resource that contains the plan.|
-|type|plannerContainerType| The type of the resource that contains the plan. For supported types, see the previous table. Possible values are: `group`, `unknownFutureValue`, `roster`. Note that you must use the `Prefer: include-unknown-enum-members` request header to get the following value in this [evolvable enum](/graph/best-practices-concept#handling-future-members-in-evolvable-enumerations): `roster`.|
-|url|String|The full canonical URL of the container.|
+|containerId|String|The identifier of the resource that contains the plan. Optional.|
+|type|plannerContainerType| The type of the resource that contains the plan. For supported types, see the previous table. Possible values are: `group`, `unknownFutureValue`, `roster`. Note that you must use the `Prefer: include-unknown-enum-members` request header to get the following value in this [evolvable enum](/graph/best-practices-concept#handling-future-members-in-evolvable-enumerations): `roster`. Optional.|
+|url|String|The full canonical URL of the container. Optional.|
## Relationships None.
v1.0 Plannertask https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/plannertask.md
Represents a Planner task in Microsoft 365. A Planner task is contained in a [pl
|id|String|Read-only. ID of the task. It is 28 characters long and case-sensitive. [Format validation](planner-identifiers-disclaimer.md) is done on the service.| |orderHint|String|Hint used to order items of this type in a list view. The format is defined as outlined [here](planner-order-hint-format.md).| |percentComplete|Int32|Percentage of task completion. When set to `100`, the task is considered completed. |
-|priority|Int32|Priority of the task. The valid range of values is between `0` and `10`, with the increasing value being lower priority (`0` has the highest priority and `10` has the lowest priority). Currently, Planner interprets values `0` and `1` as "urgent", `2`, `3` and `4` as "important", `5`, `6`, and `7` as "medium", and `8`, `9`, and `10` as "low". Additionally, Planner sets the value `1` for "urgent", `3` for "important", `5` for "medium", and `9` for "low".|
|planId|String|Plan ID to which the task belongs.| |previewType|String|This sets the type of preview that shows up on the task. The possible values are: `automatic`, `noPreview`, `checklist`, `description`, `reference`.|
+|priority|Int32|Priority of the task. The valid range of values is between `0` and `10`, with the increasing value being lower priority (`0` has the highest priority and `10` has the lowest priority). Currently, Planner interprets values `0` and `1` as "urgent", `2`, `3` and `4` as "important", `5`, `6`, and `7` as "medium", and `8`, `9`, and `10` as "low". Additionally, Planner sets the value `1` for "urgent", `3` for "important", `5` for "medium", and `9` for "low".|
|referenceCount|Int32|Number of external references that exist on the task.| |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`| |title|String|Title of the task.|
v1.0 Policy Overview https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/policy-overview.md
ms.localizationpriority: medium
ms.prod: "identity-and-sign-in" doc_type: "conceptualPageType" Last updated : 09/02/2022 # Azure AD policy overview
Azure Active Directory (Azure AD) uses policies to control Azure AD feature beha
## Next steps
-* Review the different policy resouce types listed above and their various methods.
+* Review the different policy resource types listed above and their various methods.
* Try the API in the [Graph Explorer](https://developer.microsoft.com/graph/graph-explorer).
v1.0 Policyroot https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/policyroot.md
None
| authenticationMethodsPolicy | [authenticationMethodsPolicy](authenticationmethodspolicy.md) | The authentication methods and the users that are allowed to use them to sign in and perform multi-factor authentication (MFA) in Azure Active Directory (Azure AD). | | authorizationPolicy | [authorizationPolicy](authorizationpolicy.md) collection | The policy that controls Azure AD authorization settings. | | claimsMappingPolicies | [claimsMappingPolicy](claimsmappingpolicy.md) collection | The claim-mapping policies for WS-Fed, SAML, OAuth 2.0, and OpenID Connect protocols, for tokens issued to a specific application. |
-| crossTenantAccessPolicy | [crossTenantAccessPolicy](crosstenantaccesspolicy.md) | The custom rules that define an access scenario when interacting with external Azure AD tenants. |
| conditionalAccessPolicies | [conditionalAccessPolicy](conditionalaccesspolicy.md) | The custom rules that define an access scenario. |
+| crossTenantAccessPolicy | [crossTenantAccessPolicy](crosstenantaccesspolicy.md) | The custom rules that define an access scenario when interacting with external Azure AD tenants. |
| featureRolloutPolicies | [featureRolloutPolicy](featurerolloutpolicy.md) collection | The feature rollout policy associated with a directory object. | | homeRealmDiscoveryPolicies | [homeRealmDiscoveryPolicy](homerealmdiscoverypolicy.md) collection | The policy to control Azure AD authentication behavior for federated users. | | identitySecurityDefaultsEnforcementPolicy | [identitySecurityDefaultsEnforcementPolicy](identitysecuritydefaultsenforcementpolicy.md) | The policy that represents the security defaults that protect against common attacks. |
v1.0 Presence https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/presence.md
This resource supports subscribing to [change notifications](/graph/webhooks).
| Property | Type | Description | | :-- | :- | : |
-| id | string | The user object id |
-| availability | string collection | The base presence information for a user. Possible values are `Available`, `AvailableIdle`, `Away`, `BeRightBack`, `Busy`, `BusyIdle`, `DoNotDisturb`, `Offline`, `PresenceUnknown` |
| activity | string collection | The supplemental information to a user's availability. Possible values are `Available`, `Away`, `BeRightBack`, `Busy`, `DoNotDisturb`, `InACall`, `InAConferenceCall`, `Inactive`, `InAMeeting`, `Offline`, `OffWork`, `OutOfOffice`, `PresenceUnknown`, `Presenting`, `UrgentInterruptionsOnly`. |
+| availability | string collection | The base presence information for a user. Possible values are `Available`, `AvailableIdle`, `Away`, `BeRightBack`, `Busy`, `BusyIdle`, `DoNotDisturb`, `Offline`, `PresenceUnknown` |
+| id | string | The user object id |
>**Note:** To learn more about the different presence states, see [User presence in Teams](/microsoftteams/presence-admins).
v1.0 Print https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/print.md
When accompanied by a Universal Print subscription, the Print feature enables ma
## Relationships |Relationship|Type|Description| |:|:|:|
-|services|[printService](printservice.md) collection|The list of available Universal Print service endpoints.|
-|printers|[printer](printer.md) collection|The list of printers registered in the tenant.|
-|shares|[printerShare](printershare.md) collection|The list of printer shares registered in the tenant.|
|connectors|[printConnector](printconnector.md) collection|The list of available print connectors.| |operations|[printOperation](../resources/printoperation.md) collection|The list of print long running operations.|
+|printers|[printer](printer.md) collection|The list of printers registered in the tenant.|
+|services|[printService](printservice.md) collection|The list of available Universal Print service endpoints.|
|services|[printService](../resources/printservice.md) collection|The list of print service instances for various components of the printing infrastructure.|
+|shares|[printerShare](printershare.md) collection|The list of printer shares registered in the tenant.|
|taskDefinitions|[printTaskDefinition](../resources/printtaskdefinition.md) collection|List of abstract definition for a task that can be triggered when various events occur within Universal Print.| ## JSON representation
v1.0 Printconnector https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/printconnector.md
Represents a print connector that has been registered by using a Universal Print
## Properties |Property|Type|Description| |:|:|:|
-|id|String| Read-only.|
+|appVersion|String|The connector's version.|
|displayName|String|The name of the connector.| |fullyQualifiedDomainName|String|The connector machine's hostname.|
-|operatingSystem|String|The connector machine's operating system version.|
-|appVersion|String|The connector's version.|
+|id|String| Read-only.|
|location|[printerLocation](printerlocation.md)|The physical and/or organizational location of the connector.|
-|registeredDateTime|DateTimeOffset|The DateTimeOffset when the connector was registered.|
+|operatingSystem|String|The connector machine's operating system version.|
|registeredBy|[userIdentity](useridentity.md)|The user who registered the connector.|
+|registeredDateTime|DateTimeOffset|The DateTimeOffset when the connector was registered.|
## Relationships None.
v1.0 Printdocument https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/printdocument.md
Represents a document being printed.
## Properties |Property|Type|Description| |:|:|:|
-|id|String|The document's identifier. Read-only.|
-|displayName|String|The document's name. Read-only.|
|contentType|String|The document's content (MIME) type. Read-only.|
+|displayName|String|The document's name. Read-only.|
+|id|String|The document's identifier. Read-only.|
|size|Int64|The document's size in bytes. Read-only.| ## Relationships
v1.0 Printer https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/printer.md
Inherits from [printerBase](../resources/printerbase.md).
## Properties |Property|Type|Description| |:|:|:|
-|id|String|The document's identifier. Inherited from [printerBase](../resources/printerbase.md). Read-only.|
+|capabilities|[printerCapabilities](printercapabilities.md)|The capabilities of the printer associated with this printer share. Inherited from [printerBase](../resources/printerbase.md).|
+|defaults|[printerDefaults](printerdefaults.md)|The printer's default print settings. Inherited from [printerBase](../resources/printerbase.md).|
|displayName|String|The name of the printer. Inherited from [printerBase](../resources/printerbase.md).|
+|hasPhysicalDevice|Boolean|True if the printer has a physical device for printing. Read-only.|
+|id|String|The document's identifier. Inherited from [printerBase](../resources/printerbase.md). Read-only.|
+|isAcceptingJobs|Boolean|Whether the printer is currently accepting new print jobs. Inherited from [printerBase](../resources/printerbase.md).|
+|isShared|Boolean|True if the printer is shared; false otherwise. Read-only.|
+|lastSeenDateTime|DateTimeOffset|The most recent dateTimeOffset when a printer interacted with Universal Print. Read-only.|
+|location|[printerLocation](printerlocation.md)|The physical and/or organizational location of the printer. Inherited from [printerBase](../resources/printerbase.md).|
|manufacturer|String|The manufacturer reported by the printer. Inherited from [printerBase](../resources/printerbase.md).| |model|String|The model name reported by the printer. Inherited from [printerBase](../resources/printerbase.md).| |registeredDateTime|DateTimeOffset|The DateTimeOffset when the printer was registered. Read-only.| |status|[printerStatus](printerstatus.md)|The processing status of the printer, including any errors. Inherited from [printerBase](../resources/printerbase.md).|
-|isShared|Boolean|True if the printer is shared; false otherwise. Read-only.|
-|hasPhysicalDevice|Boolean|True if the printer has a physical device for printing. Read-only.|
-|isAcceptingJobs|Boolean|Whether the printer is currently accepting new print jobs. Inherited from [printerBase](../resources/printerbase.md).|
-|location|[printerLocation](printerlocation.md)|The physical and/or organizational location of the printer. Inherited from [printerBase](../resources/printerbase.md).|
-|defaults|[printerDefaults](printerdefaults.md)|The printer's default print settings. Inherited from [printerBase](../resources/printerbase.md).|
-|capabilities|[printerCapabilities](printercapabilities.md)|The capabilities of the printer associated with this printer share. Inherited from [printerBase](../resources/printerbase.md).|
-|lastSeenDateTime|DateTimeOffset|The most recent dateTimeOffset when a printer interacted with Universal Print. Read-only.|
+ ## Relationships |Relationship|Type|Description| |:|:|:|
+|connectors|[printConnector](printconnector.md)|The connectors that are associated with the printer.|
|jobs|[printJob](printjob.md) collection| The list of jobs that are queued for printing by the printer. Inherited from [printerBase](../resources/printerbase.md).| |shares|[printerShare](printershare.md) collection| The list of printerShares that are associated with the printer. Currently, only one printerShare can be associated with the printer. Read-only. Nullable.|
-|connectors|[printConnector](printconnector.md)|The connectors that are associated with the printer.|
|taskTriggers|[printTaskTrigger](printtasktrigger.md) collection|A list of task triggers that are associated with the printer.| ## JSON representation
v1.0 Printercapabilities https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/printercapabilities.md
Represents the capabilities reported by a printer/printerShare.
## Properties | Property | Type | Description | |:-|:|:|
+|bottomMargins|Int32 collection|A list of supported bottom margins(in microns) for the printer.|
+|collation|Boolean|True if the printer supports collating when printing muliple copies of a multi-page document; false otherwise.|
+|colorModes|[printColorMode](enums.md#printcolormode-values) collection|The color modes supported by the printer. Valid values are described in the following table.|
|contentTypes|String collection|A list of supported content (MIME) types that the printer supports. It is not guaranteed that the Universal Print service supports printing all of these MIME types.|
-|isColorPrintingSupported|Boolean|True if color printing is supported by the printer; false otherwise. Read-only.|
-|feedOrientations|printerFeedOrientation collection|The list of feed orientations that are supported by the printer.|
-|isPageRangeSupported|Boolean|True if the printer supports printing by page ranges; false otherwise.|
-|qualities|[printQuality](enums.md#printquality-values) collection|The print qualities supported by the printer.|
+|copiesPerJob|[integerRange](integerrange.md)|The range of copies per job supported by the printer.|
|dpis|Int32 collection|The list of print resolutions in DPI that are supported by the printer.| |duplexModes|[printDuplexMode](enums.md#printduplexmode-values) collection|The list of duplex modes that are supported by the printer. Valid values are described in the following table.|
-|queueBufferSizeInBytes|Int32|The maximum print job queue size that can be stored by the printer.|
-|copiesPerJob|[integerRange](integerrange.md)|The range of copies per job supported by the printer.|
+|feedOrientations|printerFeedOrientation collection|The list of feed orientations that are supported by the printer.|
|finishings|[printFinishing](enums.md#printfinishing-values) collection|Finishing processes the printer supports for a printed document.|
+|inputBins|String collection|Supported input bins for the printer.|
+|isColorPrintingSupported|Boolean|True if color printing is supported by the printer; false otherwise. Read-only.|
+|isPageRangeSupported|Boolean|True if the printer supports printing by page ranges; false otherwise.|
+|leftMargins|Int32 collection|A list of supported left margins(in microns) for the printer.|
|mediaColors|String collection|The media (i.e., paper) colors supported by the printer.|
-|mediaTypes|String collection|The media types supported by the printer.|
|mediaSizes|String collection|The media sizes supported by the printer. Supports standard size names for ISO and ANSI media sizes. Valid values are in the following [table](#mediasizes-values).|
-|pagesPerSheet|Int32 collection|Supported number of Input Pages to impose upon a single Impression.|
+|mediaTypes|String collection|The media types supported by the printer.|
+|multipageLayouts|[printMultipageLayout](enums.md#printmultipagelayout-values) collection|The presentation directions supported by the printer. Supported values are described in the following table.|
|orientations|[printOrientation](enums.md#printorientation-values) collection|The print orientations supported by the printer. Valid values are described in the following table.|
-|inputBins|String collection|Supported input bins for the printer.|
|outputBins|String collection|The printer's supported output bins (trays).|
-|supportsFitPdfToPage|Boolean|True if the printer supports scaling PDF pages to match the print media size; false otherwise.|
-|multipageLayouts|[printMultipageLayout](enums.md#printmultipagelayout-values) collection|The presentation directions supported by the printer. Supported values are described in the following table.|
-|colorModes|[printColorMode](enums.md#printcolormode-values) collection|The color modes supported by the printer. Valid values are described in the following table.|
-|topMargins|Int32 collection|A list of supported top margins(in microns) for the printer.|
-|bottomMargins|Int32 collection|A list of supported bottom margins(in microns) for the printer.|
+|pagesPerSheet|Int32 collection|Supported number of Input Pages to impose upon a single Impression.|
+|qualities|[printQuality](enums.md#printquality-values) collection|The print qualities supported by the printer.|
+|queueBufferSizeInBytes|Int32|The maximum print job queue size that can be stored by the printer.|
|rightMargins|Int32 collection|A list of supported right margins(in microns) for the printer.|
-|leftMargins|Int32 collection|A list of supported left margins(in microns) for the printer.|
-|collation|Boolean|True if the printer supports collating when printing muliple copies of a multi-page document; false otherwise.|
|scalings|[printScaling](enums.md#printscaling-values) collection|Supported print scalings.|
+|supportsFitPdfToPage|Boolean|True if the printer supports scaling PDF pages to match the print media size; false otherwise.|
+|topMargins|Int32 collection|A list of supported top margins(in microns) for the printer.|
+ ### mediaSizes values
v1.0 Printercreateoperation https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/printercreateoperation.md
Inherits from [printOperation](printoperation.md).
## Properties |Property|Type|Description| |:|:|:|
+|certificate|String|The signed certificate created during the registration process. Read-only.|
+|createdDateTime|DateTimeOffset|The DateTimeOffset when the operation was created. Read-only.|
|id|String|The operation's identifier. Read-only.| |status|[printOperationStatus](printoperationstatus.md)|The status of the registration operation. Contains the operation's progress and whether it completed successfully. Read-only.|
-|createdDateTime|DateTimeOffset|The DateTimeOffset when the operation was created. Read-only.|
-|certificate|String|The signed certificate created during the registration process. Read-only.|
## Relationships |Relationship|Type|Description|
v1.0 Printerdefaults https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/printerdefaults.md
Represents the printer's default settings. Check the printer's [capabilities](pr
## Properties |Property|Type|Description| |:|:|:|
-|copiesPerJob|Int32|The default number of copies printed per job.|
+|colorMode|[printColorMode](enums.md#printcolormode-values)|The default color mode to use when printing the document. Valid values are described in the following table.|
|contentType|String|The default content (MIME) type to use when processing documents.|
+|copiesPerJob|Int32|The default number of copies printed per job.|
+|dpi|Int32|The default resolution in DPI to use when printing the job.|
+|duplexMode|[printDuplexMode](enums.md#printduplexmode-values)|The default duplex (double-sided) configuration to use when printing a document. Valid values are described in the following table.|
|finishings|[printFinishing](enums.md#printfinishing-values) collection|The default set of finishings to apply to print jobs. Valid values are described in the following table.|
+|fitPdfToPage|Boolean|The default fitPdfToPage setting. True to fit each page of a PDF document to a physical sheet of media; false to let the printer decide how to lay out impressions.|
|mediaColor|String|The default media (such as paper) color to print the document on.|
-|mediaType|String|The default media (such as paper) type to print the document on.|
|mediaSize|String|The default media size to use. Supports standard size names for ISO and ANSI media sizes. Valid values are listed in the [printerCapabilities](printercapabilities.md#mediasizes-values) topic.|
-|pagesPerSheet|Int32|The default number of document pages to print on each sheet.
+|mediaType|String|The default media (such as paper) type to print the document on.|
+|multipageLayout|[printMultipageLayout](enums.md#printmultipagelayout-values)|The default direction to lay out pages when multiple pages are being printed per sheet. Valid values are described in the following table.|
|orientation|[printOrientation](enums.md#printorientation-values)|The default orientation to use when printing the document. Valid values are described in the following table.| |outputBin|String|The default output bin to place completed prints into. See the printer's [capabilities](printercapabilities.md) for a list of supported output bins.|
-|fitPdfToPage|Boolean|The default fitPdfToPage setting. True to fit each page of a PDF document to a physical sheet of media; false to let the printer decide how to lay out impressions.|
-|multipageLayout|[printMultipageLayout](enums.md#printmultipagelayout-values)|The default direction to lay out pages when multiple pages are being printed per sheet. Valid values are described in the following table.|
-|colorMode|[printColorMode](enums.md#printcolormode-values)|The default color mode to use when printing the document. Valid values are described in the following table.|
+|pagesPerSheet|Int32|The default number of document pages to print on each sheet.
|quality|[printQuality](enums.md#printquality-values)|The default quality to use when printing the document. Valid values are described in the following table.|
-|duplexMode|[printDuplexMode](enums.md#printduplexmode-values)|The default duplex (double-sided) configuration to use when printing a document. Valid values are described in the following table.|
-|dpi|Int32|The default resolution in DPI to use when printing the job.|
|scaling|[printScaling](enums.md#printscaling-values)|Specifies how the printer scales the document data to fit the requested media. Valid values are described in the following table.| ## Relationships
v1.0 Printerlocation https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/printerlocation.md
Represents the physical and hierarchical location of a printer.
## Properties |Property|Type|Description| |:|:|:|
-|latitude|Double|The latitude that the printer is located at.|
-|longitude|Double|The longitude that the printer is located at.|
|altitudeInMeters|Int32|The altitude, in meters, that the printer is located at.|
-|streetAddress|String|The street address where the printer is located.|
-|subUnit|String collection|The subunit hierarchy where the printer is located. The elements should be in hierarchical order. For example, if a campus is divided into different sections, the hierarchy might look like this: `["East Wing", "Block A"]`|
+|building|String|The building that the printer is located in.|
|city|String|The city that the printer is located in.|
-|postalCode|String|The postal code that the printer is located in.|
|countryOrRegion|String|The country or region that the printer is located in.|
-|site|String|The site that the printer is located in.|
-|building|String|The building that the printer is located in.|
|floor|String|The floor that the printer is located on. Only numerical values are supported right now.| |floorDescription|String|The description of the floor that the printer is located on.|
-|roomName|String|The room that the printer is located in. Only numerical values are supported right now.|
-|roomDescription|String|The description of the room that the printer is located in.|
+|latitude|Double|The latitude that the printer is located at.|
+|longitude|Double|The longitude that the printer is located at.|
|organization|String collection|The organizational hierarchy that the printer belongs to. The elements should be in hierarchical order.|
-|subdivision|String collection|The subdivision that the printer is located in. The elements should be in hierarchical order.|
+|postalCode|String|The postal code that the printer is located in.|
+|roomDescription|String|The description of the room that the printer is located in.|
+|roomName|String|The room that the printer is located in. Only numerical values are supported right now.|
+|site|String|The site that the printer is located in.|
|stateOrProvince|String|The state or province that the printer is located in.|
+|streetAddress|String|The street address where the printer is located.|
+|subdivision|String collection|The subdivision that the printer is located in. The elements should be in hierarchical order.|
+|subUnit|String collection|The subunit hierarchy where the printer is located. The elements should be in hierarchical order. For example, if a campus is divided into different sections, the hierarchy might look like this: `["East Wing", "Block A"]`|
## Relationships None.
v1.0 Printershare https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/printershare.md
Inherits from [printerBase](../resources/printerbase.md).
## Properties |Property|Type|Description| |:|:|:|
-|id|String| The printerShare's identifier. Inherited from [printerBase](../resources/printerbase.md). Read-only.|
-|displayName|String|The name of the printer share that print clients should display. Inherited from [printerBase](../resources/printerbase.md).|
+|allowAllUsers|Boolean|If true, all users and groups will be granted access to this printer share. This supersedes the allow lists defined by the **allowedUsers** and **allowedGroups** navigation properties.|
+|capabilities|[printerCapabilities](printercapabilities.md)|The capabilities of the printer associated with this printer share. Inherited from [printerBase](../resources/printerbase.md).|
|createdDateTime|DateTimeOffset|The DateTimeOffset when the printer share was created. Read-only.|
-|manufacturer|String|The manufacturer reported by the printer associated with this printer share. Inherited from [printerBase](../resources/printerbase.md). Read-only.|
-|model|String|The model name reported by the printer associated with this printer share. Inherited from [printerBase](../resources/printerbase.md). Read-only.|
-|isAcceptingJobs|Boolean|Whether the printer associated with this printer share is currently accepting new print jobs. Inherited from [printerBase](../resources/printerbase.md).|
|defaults|[printerDefaults](printerdefaults.md)|The default print settings of the printer associated with this printer share. Inherited from [printerBase](../resources/printerbase.md).|
-|capabilities|[printerCapabilities](printercapabilities.md)|The capabilities of the printer associated with this printer share. Inherited from [printerBase](../resources/printerbase.md).|
+|displayName|String|The name of the printer share that print clients should display. Inherited from [printerBase](../resources/printerbase.md).|
+|id|String| The printerShare's identifier. Inherited from [printerBase](../resources/printerbase.md). Read-only.|
+|isAcceptingJobs|Boolean|Whether the printer associated with this printer share is currently accepting new print jobs. Inherited from [printerBase](../resources/printerbase.md).|
|location|[printerLocation](printerlocation.md)|The physical and/or organizational location of the printer associated with this printer share. Inherited from [printerBase](../resources/printerbase.md).|
+|manufacturer|String|The manufacturer reported by the printer associated with this printer share. Inherited from [printerBase](../resources/printerbase.md). Read-only.|
+|model|String|The model name reported by the printer associated with this printer share. Inherited from [printerBase](../resources/printerbase.md). Read-only.|
|status|[printerStatus](printerstatus.md)|The processing status, including any errors, of the printer associated with this printer share.Inherited from [printerBase](../resources/printerbase.md). Read-only.|
-|allowAllUsers|Boolean|If true, all users and groups will be granted access to this printer share. This supersedes the allow lists defined by the **allowedUsers** and **allowedGroups** navigation properties.|
+ ## Relationships |Relationship|Type|Description|
v1.0 Printerstatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/printerstatus.md
Represents the processing status of the printer, including any errors.
## Properties |Property|Type|Description| |:|:|:|
-|state|printerProcessingState|The current processing state. Valid values are described in the following table. Read-only.|
-|details|printerProcessingStateDetail collection|The list of details describing why the printer is in the current state. Valid values are described in the following table. Read-only.|
|description|String|A human-readable description of the printer's current processing state. Read-only.|
+|details|printerProcessingStateDetail collection|The list of details describing why the printer is in the current state. Valid values are described in the following table. Read-only.|
+|state|printerProcessingState|The current processing state. Valid values are described in the following table. Read-only.|
### printerProcessingState values
v1.0 Printjob https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/printjob.md
Represents a print job that has been queued for a printer.
## Properties |Property|Type|Description| |:|:|:|
-|id|String|The printer's GUID. Read-only.|
-|createdDateTime|DateTimeOffset|The DateTimeOffset when the job was created. Read-only.|
-|status|[printJobStatus](printjobstatus.md)|The status of the print job. Read-only.|
|configuration|[printJobConfiguration](printJobConfiguration.md)|A group of settings that a printer should use to print a job.|
+|createdBy|[userIdentity](useridentity.md)| Read-only. Nullable.|
+|createdDateTime|DateTimeOffset|The DateTimeOffset when the job was created. Read-only.|
+|id|String|The ID of the print job. Read-only.|
|isFetchable|Edm.Boolean|If true, document can be fetched by printer.| |redirectedFrom|Edm.String|Contains the source job URL, if the job has been redirected from another printer.| |redirectedTo|Edm.String|Contains the destination job URL, if the job has been redirected to another printer.|
-|createdBy|[userIdentity](useridentity.md)| Read-only. Nullable.|
+|status|[printJobStatus](printjobstatus.md)|The status of the print job. Read-only.|
## Relationships |Relationship|Type|Description|
v1.0 Printjobconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/printjobconfiguration.md
A group of settings that a printer should use to print a job.
## Properties |Property|Type|Description| |:|:|:|
-|pageRanges|[integerRange](integerrange.md) collection|The page ranges to print. Read-only.|
-|quality|[printQuality](enums.md#printquality-values)|The print quality to use when printing the job. Valid values are described in the table below. Read-only.|
+|collate|Boolean|Whether the printer should collate pages wehen printing multiple copies of a multi-page document.|
+|colorMode|[printColorMode](enums.md#printcolormode-values)|The color mode the printer should use to print the job. Valid values are described in the table below. Read-only.|
+|copies|Int32|The number of copies that should be printed. Read-only.|
|dpi|Int32|The resolution to use when printing the job, expressed in dots per inch (DPI). Read-only.|
-|feedOrientation|printerFeedOrientation|The orientation to use when feeding media into the printer. Valid values are described in the following table. Read-only.|
-|orientation|[printOrientation](enums.md#printorientation-values)|The orientation setting the printer should use when printing the job. Valid values are described in the following table.|
|duplexMode|[printDuplexMode](enums.md#printduplexmode-values)|The duplex mode the printer should use when printing the job. Valid values are described in the table below. Read-only.|
-|copies|Int32|The number of copies that should be printed. Read-only.|
-|colorMode|[printColorMode](enums.md#printcolormode-values)|The color mode the printer should use to print the job. Valid values are described in the table below. Read-only.|
+|feedOrientation|printerFeedOrientation|The orientation to use when feeding media into the printer. Valid values are described in the following table. Read-only.|
+|finishings|[printFinishing](enums.md#printfinishing-values) collection|Finishing processes to use when printing.|
|inputBin|String|The input bin (tray) to use when printing. See the printer's [capabilities](printercapabilities.md) for a list of supported input bins.|
-|outputBin|String|The output bin to place completed prints into. See the printer's [capabilities](printercapabilities.md) for a list of supported output bins.|
-|mediaSize|String|The media size to use when printing. Supports standard size names for ISO and ANSI media sizes. Valid values listed in the [printerCapabilities](printercapabilities.md#mediasizes-values) topic.|
|margin|[printMargin](printmargin.md)|The margin settings to use when printing.|
+|mediaSize|String|The media size to use when printing. Supports standard size names for ISO and ANSI media sizes.
+Valid values listed in the [printerCapabilities](printercapabilities.md#mediasizes-values) topic.|
|mediaType|String|The default media (such as paper) type to print the document on.|
-|finishings|[printFinishing](enums.md#printfinishing-values) collection|Finishing processes to use when printing.|
-|pagesPerSheet|Int32|The number of document pages to print on each sheet.
|multipageLayout|[printMultipageLayout](enums.md#printmultipagelayout-values)|The direction to lay out pages when multiple pages are being printed per sheet. Valid values are described in the following table.|
-|collate|Boolean|Whether the printer should collate pages wehen printing multiple copies of a multi-page document.|
+|orientation|[printOrientation](enums.md#printorientation-values)|The orientation setting the printer should use when printing the job. Valid values are described in the following table.|
+|outputBin|String|The output bin to place completed prints into. See the printer's [capabilities](printercapabilities.md) for a list of supported output bins.|
+|pageRanges|[integerRange](integerrange.md) collection|The page ranges to print. Read-only.|
+|pagesPerSheet|Int32|The number of document pages to print on each sheet.
+|quality|[printQuality](enums.md#printquality-values)|The print quality to use when printing the job. Valid values are described in the table below. Read-only.|
|scaling|[printScaling](enums.md#printscaling-values)|Specifies how the printer should scale the document data to fit the requested media. Valid values are described in the following table.| ## Relationships
v1.0 Printjobstatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/printjobstatus.md
Represents the current status of a print job.
## Properties |Property|Type|Description| |:|:|:|
-|state|printJobProcessingState|The print job's current processing state. Valid values are described in the following table. Read-only.|
-|details|printJobProcessingDetail collection|Additional details for print job state. Valid values are described in the following table. Read-only.|
|description|String|A human-readable description of the print job's current processing state. Read-only.|
+|details|printJobProcessingDetail collection|Additional details for print job state. Valid values are described in the following table. Read-only.|
|isAcquiredByPrinter|Boolean|True if the job was acknowledged by a printer; false otherwise. Read-only.|
+|state|printJobProcessingState|The print job's current processing state. Valid values are described in the following table. Read-only.|
### printJobProcessingState values
v1.0 Printmargin https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/printmargin.md
Specifies the margin widths to use when printing.
## Properties |Property|Type|Description| |:|:|:|
-|top|Int32|The margin in microns from the top edge.|
|bottom|Int32|The margin in microns from the bottom edge.|
-|right|Int32|The margin in microns from the right edge.|
|left|Int32|The margin in microns from the left edge.|
+|right|Int32|The margin in microns from the right edge.|
+|top|Int32|The margin in microns from the top edge.|
+ ## JSON representation The following is a JSON representation of the resource.
v1.0 Printoperation https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/printoperation.md
Represents a long-running Universal Print operation. Base class for operation ty
## Properties |Property|Type|Description| |:|:|:|
+|createdDateTime|DateTimeOffset|The DateTimeOffset when the operation was created. Read-only.|
|id|String|The operation's identifier. Read-only.| |status|[printOperationStatus](printoperationstatus.md)|The status of the operation. Read-only.|
-|createdDateTime|DateTimeOffset|The DateTimeOffset when the operation was created. Read-only.|
## Relationships None.
v1.0 Printoperationstatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/printoperationstatus.md
Represents the current status of a long-running Universal Print operation.
## Properties |Property|Type|Description| |:|:|:|
-|state|printOperationProcessingState|The printOperation's current processing state. Valid values are described in the following table. Read-only.|
|description|String|A human-readable description of the printOperation's current processing state. Read-only.|
+|state|printOperationProcessingState|The printOperation's current processing state. Valid values are described in the following table. Read-only.|
### printOperationProcessingState values
v1.0 Printtask https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/printtask.md
For details about how to use this resource to add pull printing support to Unive
## Relationships |Relationship|Type|Description| |:|:|:|
-|trigger|[printTaskTrigger](printtasktrigger.md)|The printTaskTrigger that triggered this task's execution. Read-only.|
|definition|[printTaskDefinition](printtaskdefinition.md)|The printTaskDefinition that was used to create this task. Read-only.|
+|trigger|[printTaskTrigger](printtasktrigger.md)|The printTaskTrigger that triggered this task's execution. Read-only.|
+ ## JSON representation The following is a JSON representation of the resource.
v1.0 Printtaskdefinition https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/printtaskdefinition.md
This resource supports:
## Properties |Property|Type|Description| |:|:|:|
-|id|String|The printTaskDefinition's identifier. Read-only.|
-|displayName|String|The name of the printTaskDefinition.|
|createdBy|[appIdentity](appidentity.md)|The application that created the printTaskDefinition. Read-only.|
+|displayName|String|The name of the printTaskDefinition.|
+|id|String|The printTaskDefinition's identifier. Read-only.|
## Relationships |Relationship|Type|Description|
v1.0 Printtaskstatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/printtaskstatus.md
Represents the current execution status of a [printTask](printtask.md).
## Properties |Property|Type|Description| |:|:|:|
-|state|printTaskProcessingState|The current processing state of the [printTask](printtask.md). Valid values are described in the following table.|
|description|String|A human-readable description of the current processing state of the [printTask](printtask.md).|
+|state|printTaskProcessingState|The current processing state of the [printTask](printtask.md). Valid values are described in the following table.|
### printTaskProcessingState values
v1.0 Printtasktrigger https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/printtasktrigger.md
For details about how to use this resource to add pull printing support to Unive
## Properties |Property|Type|Description| |:|:|:|
-|id|String|The printTaskTrigger's identifier. Read-only.|
|event|printEvent|The Universal Print event that will cause a new [printTask](printtask.md) to be triggered. Valid values are described in the following table.|
+|id|String|The printTaskTrigger's identifier. Read-only.|
+ ### printEvent values
v1.0 Printusagebyprinter https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/printusagebyprinter.md
Describes print activity for a printer during a specified time period (usageDate
## Properties |Property|Type|Description| |:|:|:|
-|id|String|The ID of this usage summary.|
-|printerID|String|The ID of the printer represented by these statistics.|
-|usageDate|Date|The date associated with these statistics.|
|completedBlackAndWhiteJobCount|Int64|The number of black and white print jobs completed by the printer on the associated date.| |completedColorJobCount|Int64|The number of color print jobs completed by the printer on the associated date.|
+|id|String|The ID of this usage summary.|
|incompleteJobCount|Int64|The number of print jobs that were queued for the printer, but not completed, on the associated date.|
+|printerID|String|The ID of the printer represented by these statistics.|
+|usageDate|Date|The date associated with these statistics.|
## JSON representation The following is a JSON representation of the resource.
v1.0 Printusagebyuser https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/printusagebyuser.md
Describes print activity for a user during a specified time period (usageDate).
## Properties |Property|Type|Description| |:|:|:|
-|id|String|The ID of this usage summary.|
-|userPrincipalName|String|The UPN of the user represented by these statistics.|
-|usageDate|Date|The date associated with these statistics.|
|completedBlackAndWhiteJobCount|Int64|The number of black and white print jobs completed on behalf of the user on the associated date.| |completedColorJobCount|Int64|The number of color print jobs completed on behalf of the user on the associated date.|
+|id|String|The ID of this usage summary.|
|incompleteJobCount|Int64|The number of print jobs that were queued on behalf of the user, but not completed, on the associated date.|
+|usageDate|Date|The date associated with these statistics.|
+|userPrincipalName|String|The UPN of the user represented by these statistics.|
## JSON representation The following is a JSON representation of the resource.
v1.0 Privilegedidentitymanagementv3 Overview https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/privilegedidentitymanagementv3-overview.md
ms.localizationpriority: medium ms.prod: "governance" doc_type: resourcePageType Last updated : 12/07/2022 # Overview of role management through the privileged identity management (PIM) API
v1.0 Projectrome Activity https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/projectrome-activity.md
Your user activities will be showcased in Cortana and Windows Timeline user expe
|Name | Type | Description| |:-|:--|:--|
-|userTimezone | String | Optional. The timezone in which the user's device used to generate the activity was located at activity creation time; values supplied as Olson IDs in order to support cross-platform representation.|
-|createdDateTime | DateTimeOffset | Set by the server. DateTime in UTC when the object was created on the server. |
-|lastModifiedDateTime | DateTimeOffset | Set by the server. DateTime in UTC when the object was modified on the server. |
-|id | String | Server-generated ID used for URL addressing.|
-|appActivityId | String | Required. The unique activity ID in the context of the app - supplied by caller and immutable thereafter.|
+|activationUrl | String | Required. URL used to launch the activity in the best native experience represented by the appId. Might launch a web-based app if no native app exists.|
|activitySourceHost | String | Required. URL for the domain representing the cross-platform identity mapping for the app. Mapping is stored either as a JSON file hosted on the domain or configurable via Windows Dev Center. The JSON file is named cross-platform-app-identifiers and is hosted at root of your HTTPS domain, either at the top level domain or include a sub domain. For example: https://contoso.com or https://myapp.contoso.com but NOT https://myapp.contoso.com/somepath. You must have a unique file and domain (or sub domain) per cross-platform app identity. For example, a separate file and domain is needed for Word vs. PowerPoint.|
+|appActivityId | String | Required. The unique activity ID in the context of the app - supplied by caller and immutable thereafter.|
|appDisplayName | String | Optional. Short text description of the app used to generate the activity for use in cases when the app is not installed on the userΓÇÖs local device.|
-|activationUrl | String | Required. URL used to launch the activity in the best native experience represented by the appId. Might launch a web-based app if no native app exists.|
-|fallbackUrl | String | Optional. URL used to launch the activity in a web-based app, if available.|
-|contentUrl | String | Optional. Used in the event the content can be rendered outside of a native or web-based app experience (for example, a pointer to an item in an RSS feed).|
-|visualElements| [visualInfo](../resources/projectrome-visualinfo.md) | Required. The object containing information to render the activity in the UX.|
|contentInfo | Untyped JSON object | Optional. A custom piece of data - JSON-LD extensible description of content according to [schema.org](https://schema.org) syntax.|
+|contentUrl | String | Optional. Used in the event the content can be rendered outside of a native or web-based app experience (for example, a pointer to an item in an RSS feed).|
+|createdDateTime | DateTimeOffset | Set by the server. DateTime in UTC when the object was created on the server. |
|expirationDateTime | DateTimeOffset | Set by the server. DateTime in UTC when the object expired on the server.|
+|fallbackUrl | String | Optional. URL used to launch the activity in a web-based app, if available.|
+|id | String | Server-generated ID used for URL addressing.|
+|lastModifiedDateTime | DateTimeOffset | Set by the server. DateTime in UTC when the object was modified on the server. |
|status | status | Set by the server. A status code used to identify valid objects. Values: active, updated, deleted, ignored.|
+|userTimezone | String | Optional. The timezone in which the user's device used to generate the activity was located at activity creation time; values supplied as Olson IDs in order to support cross-platform representation.|
+|visualElements| [visualInfo](../resources/projectrome-visualinfo.md) | Required. The object containing information to render the activity in the UX.|
+ ## Relationships
v1.0 Projectrome Historyitem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/projectrome-historyitem.md
When an app creates a session, a **historyItem** object should be added to the *
|Name | Type | Description| |:-|:--|:--|
-|status | status | Set by the server. A status code used to identify valid objects. Values: active, updated, deleted, ignored.|
-|userTimezone | String | Optional. The timezone in which the user's device used to generate the activity was located at activity creation time. Values supplied as Olson IDs in order to support cross-platform representation.|
+|activeDurationSeconds | int | Optional. The duration of active user engagement. if not supplied, this is calculated from the **startedDateTime** and **lastActiveDateTime**.|
|createdDateTime | DateTimeOffset | Set by the server. DateTime in UTC when the object was created on the server.|
-|lastModifiedDateTime | DateTimeOffset | Set by the server. DateTime in UTC when the object was modified on the server.|
+|expirationDateTime | DateTimeOffset | Optional. UTC DateTime when the **historyItem** will undergo hard-delete. Can be set by the client.|
|id | String | Required. Client-set GUID for the **historyItem** object.|
-|startedDateTime | DateTimeOffset | Required. UTC DateTime when the **historyItem** (activity session) was started. Required for timeline history.|
|lastActiveDateTime | DateTimeOffset | Optional. UTC DateTime when the **historyItem** (activity session) was last understood as active or finished - if null, **historyItem** status should be Ongoing.|
-|expirationDateTime | DateTimeOffset | Optional. UTC DateTime when the **historyItem** will undergo hard-delete. Can be set by the client.|
-|activeDurationSeconds | int | Optional. The duration of active user engagement. if not supplied, this is calculated from the **startedDateTime** and **lastActiveDateTime**.|
+|lastModifiedDateTime | DateTimeOffset | Set by the server. DateTime in UTC when the object was modified on the server.|
+|startedDateTime | DateTimeOffset | Required. UTC DateTime when the **historyItem** (activity session) was started. Required for timeline history.|
+|status | status | Set by the server. A status code used to identify valid objects. Values: active, updated, deleted, ignored.|
+|userTimezone | String | Optional. The timezone in which the user's device used to generate the activity was located at activity creation time. Values supplied as Olson IDs in order to support cross-platform representation.|
+ ## Relationships
v1.0 Projectrome Imageinfo https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/projectrome-imageinfo.md
A complex type for representing the **attribution** property in the [visualInfo]
|Name | Type | Description| |:-|:--|:--|
-|iconUrl | String | Optional; URI that points to an icon which represents the application used to generate the activity|
-|alternateText | String | Optional; alt-text accessible content for the image|
|addImageQuery | Boolean | Optional; parameter used to indicate the server is able to render image dynamically in response to parameterization. For example ΓÇô a high contrast image|
+|alternateText | String | Optional; alt-text accessible content for the image|
+|iconUrl | String | Optional; URI that points to an icon which represents the application used to generate the activity|
## JSON Representation
v1.0 Projectrome Visualinfo https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/projectrome-visualinfo.md
If a custom card is not provided, a simple card will be generated using displayT
|Name | Type | Description| |:-|:|:--|
-|displayText | String | Required. Short text description of the user's unique activity (for example, document name in cases where an activity refers to document creation)|
-|description | String | Optional. Longer text description of the user's unique activity (example: document name, first sentence, and/or metadata)|
+|attribution | [imageInfo](../resources/projectrome-imageinfo.md) | Optional. JSON object used to represent an icon which represents the application used to generate the activity|
|backgroundColor | String | Optional. Background color used to render the activity in the UI - brand color for the application source of the activity. Must be a valid hex color| |content | Untyped JSON object | Optional. Custom piece of data - JSON object used to provide custom content to render the activity in the Windows Shell UI|
-|attribution | [imageInfo](../resources/projectrome-imageinfo.md) | Optional. JSON object used to represent an icon which represents the application used to generate the activity|
+|description | String | Optional. Longer text description of the user's unique activity (example: document name, first sentence, and/or metadata)|
+|displayText | String | Required. Short text description of the user's unique activity (for example, document name in cases where an activity refers to document creation)|
+ ## JSON Representation
v1.0 Provisioningobjectsummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/provisioningobjectsummary.md
Represents an action performed by the Azure AD Provisioning service and its asso
| Property | Type | Description | |:-|:|:|
-|provisioningAction|provisioningAction|Indicates the activity name or the operation name. Possible values are: `create`, `update`, `delete`, `stageddelete`, `disable`, `other` and `unknownFutureValue`. For a list of activities logged, refer to Azure AD activity list.|
|activityDateTime|DateTimeOffset|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`| |changeId|String|Unique ID of this change in this cycle.| |cycleId|String|Unique ID per job iteration.|
Represents an action performed by the Azure AD Provisioning service and its asso
|initiatedBy|[initiator](initiator.md)|Details of who initiated this provisioning.| |jobId|String|The unique ID for the whole provisioning job.| |modifiedProperties|[modifiedProperty](modifiedproperty.md) collection|Details of each property that was modified in this provisioning action on this object.|
+|provisioningAction|provisioningAction|Indicates the activity name or the operation name. Possible values are: `create`, `update`, `delete`, `stageddelete`, `disable`, `other` and `unknownFutureValue`. For a list of activities logged, refer to Azure AD activity list.|
+|provisioningStatusInfo|[provisioningStatusInfo](provisioningstatusinfo.md)|Details of provisioning status.|
|provisioningSteps|[provisioningStep](provisioningstep.md) collection|Details of each step in provisioning.| |servicePrincipal|[servicePrincipal](provisioningserviceprincipal.md) collection|Represents the service principal used for provisioning.| |sourceIdentity|[provisionedIdentity](provisionedidentity.md)|Details of source object being provisioned.| |sourceSystem|[provisioningSystem](provisioningsystem.md)|Details of source system of the object being provisioned.|
-|provisioningStatusInfo|[provisioningStatusInfo](provisioningstatusinfo.md)|Details of provisioning status.|
|targetIdentity|[provisionedIdentity](provisionedidentity.md)|Details of target object being provisioned.| |targetSystem|[provisioningSystem](provisioningsystem.md)|Details of target system of the object being provisioned.| |tenantId|String|Unique Azure AD tenant ID.|
v1.0 Provisioningstatusinfo https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/provisioningstatusinfo.md
Describes the status of the provisioning summary event.
| Property | Type | Description | |:-|:|:|
-|status|provisioningResult| Possible values are: `success`, `warning`, `failure`, `skipped`, `unknownFutureValue`.|
|errorInfo|[provisioningErrorInfo](provisioningErrorInfo.md)| If status is not success/ skipped details for the error are contained in this.|
+|status|provisioningResult| Possible values are: `success`, `warning`, `failure`, `skipped`, `unknownFutureValue`.|
## JSON representation
v1.0 Provisioningsystem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/provisioningsystem.md
Represents the system that a user was provisioned to or from. For example, when
| Property | Type | Description | |:-|:|:|
-|details|[detailsInfo](detailsinfo.md)|Details of the system.|
|displayName|String|Name of the system that a user was provisioned to or from.|
+|details|[detailsInfo](detailsinfo.md)|Details of the system.|
|id|String|Identifier of the system that a user was provisioned to or from.| ## JSON representation
v1.0 Quota https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/quota.md
Here is a JSON representation of the resource.
| Property name | Type | Description | |:--|:-|:-|
-| total | Int64 | Total allowed storage space, in bytes. Read-only. |
-| used | Int64 | Total space used, in bytes. Read-only. |
-| remaining | Int64 | Total space remaining before reaching the quota limit, in bytes. Read-only. |
| deleted | Int64 | Total space consumed by files in the recycle bin, in bytes. Read-only. |
+| remaining | Int64 | Total space remaining before reaching the quota limit, in bytes. Read-only. |
| state | string | Enumeration value that indicates the state of the storage space. Read-only. | | storagePlanInformation | [storagePlanInformation](storageplaninformation.md) | Information about the drive's storage quota plans. Only in Personal OneDrive.|
+| total | Int64 | Total allowed storage space, in bytes. Read-only. |
+| used | Int64 | Total space used, in bytes. Read-only. |
+ ## State Enumeration
v1.0 Renameaction https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/renameaction.md
The presence of the **renameAction** resource on an [**itemActivity**][activity]
| Property name | Type | Description |:--|:-|:-
-| oldName | string | The previous name of the item.
| newName | string | The new name of the item.
+| oldName | string | The previous name of the item.
## JSON representation
v1.0 Resourcespecificpermissiongrant https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/resourcespecificpermissiongrant.md
For more information about granting apps consent to access a specific instance o
| Property | Type | Description | | :-- | : | : |
-| id | string | The unique identifier of the resource-specific permission grant. Read-only. |
-| deletedDateTime | dateTimeOffset| Not used. |
| clientId | string | ID of the Azure AD app that has been granted access. Read-only. | | clientAppId | string | ID of the service principal of the Azure AD app that has been granted access. Read-only. |
+| deletedDateTime | dateTimeOffset| Not used. |
+| id | string | The unique identifier of the resource-specific permission grant. Read-only. |
| resourceAppId | string | ID of the Azure AD app that is hosting the resource. Read-only. | | permissionType | string | The type of permission. Possible values are: `Application`, `Delegated`. Read-only. | | permission | string | The name of the resource-specific permission. Read-only. |
v1.0 Riskserviceprincipalactivity https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/riskserviceprincipalactivity.md
Represents the risk activity of an Azure AD service principal as determined by A
| Property | Type |Description| |:|:--|:-|
-|riskEventType|String collection|The type of risk event detected. The possible values are: `investigationsThreatIntelligence`, `generic`, `adminConfirmedServicePrincipalCompromised`, `suspiciousSignins`, `leakedCredentials`, `anomalousServicePrincipalActivity`, `maliciousApplication`, `suspiciousApplication`.|
| detail | riskDetail | Details of the detected risk. <br>**Note:** Details for this property are only available for Workload Identities Premium customers. Events in tenants without this license will be returned `hidden`. <br/>The possible values are: `none`, `hidden`, `adminConfirmedServicePrincipalCompromised`, `adminDismissedAllRiskForServicePrincipal`. Note that you must use the `Prefer: include-unknown-enum-members` request header to get the following value(s) in this [evolvable enum](/graph/best-practices-concept#handling-future-members-in-evolvable-enumerations): `adminConfirmedServicePrincipalCompromised` , `adminDismissedAllRiskForServicePrincipal`.|
+|riskEventType|String collection|The type of risk event detected. The possible values are: `investigationsThreatIntelligence`, `generic`, `adminConfirmedServicePrincipalCompromised`, `suspiciousSignins`, `leakedCredentials`, `anomalousServicePrincipalActivity`, `maliciousApplication`, `suspiciousApplication`.|
## JSON representation
v1.0 Riskuseractivity https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/riskuseractivity.md
Title: "riskUserActivity resource type" description: "riskUserActivity detections"-+ ms.localizationpriority: medium ms.prod: "identity-and-sign-in" doc_type: resourcePageType
v1.0 Riskyserviceprincipal https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/riskyserviceprincipal.md
Inherits from [entity](../resources/entity.md).
| Property | Type | Description | | :- | :- | : |
-| isEnabled | Boolean | `true` if the service principal account is enabled; otherwise, `false`. |
| appId | String | The globally unique identifier for the associated application (its **appId** property), if any. | | displayName | String | The display name for the service principal. | | id | String | The unique identifier assigned to the service principal at risk. Inherited from [entity](../resources/entity.md). |
+| isEnabled | Boolean | `true` if the service principal account is enabled; otherwise, `false`. |
| isProcessing | Boolean | Indicates whether Azure AD is currently processing the service principal's risky state. | | riskDetail | riskDetail | Details of the detected risk. <br>**Note:** Details for this property are only available for Workload Identities Premium customers. Events in tenants without this license will be returned `hidden`. <br/>The possible values are: `none`, `hidden`, `unknownFutureValue`, `adminConfirmedServicePrincipalCompromised`, `adminDismissedAllRiskForServicePrincipal`. Note that you must use the `Prefer: include-unknown-enum-members` request header to get the following value(s) in this [evolvable enum](/graph/best-practices-concept#handling-future-members-in-evolvable-enumerations): `adminConfirmedServicePrincipalCompromised` , `adminDismissedAllRiskForServicePrincipal`. | | riskLastUpdatedDateTime | DateTimeOffset | The date and time that the risk state was last updated. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2021 is `2021-01-01T00:00:00Z`. Supports `$filter` (`eq`). |
v1.0 Riskyserviceprincipalhistoryitem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/riskyserviceprincipalhistoryitem.md
Represents the risk history of an Azure AD service principal as determined by Az
| Property | Type | Description | |:|:--|:|
-| servicePrincipalId | string | The identifier of the service principal. |
-| initiatedBy | bool | The identifier of the actor of the operation. |
| activity | [riskServicePrincipalActivity](riskserviceprincipalactivity.md)| The activity related to service principal risk level change. |
+| initiatedBy | bool | The identifier of the actor of the operation. |
+| servicePrincipalId | string | The identifier of the service principal. |
## JSON representation
v1.0 Riskyuser https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/riskyuser.md
Title: "riskyUser resource type" description: "risky users item"-+ ms.localizationpriority: medium ms.prod: "identity-and-sign-in" doc_type: resourcePageType
v1.0 Riskyuserhistoryitem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/riskyuserhistoryitem.md
Title: "riskyUserHistoryItem resource type" description: "Represents the risk history of an Azure Active Directory (Azure AD) user as determined by Azure AD Identity Protection."-+ ms.localizationpriority: medium ms.prod: "identity-and-sign-in" doc_type: resourcePageType
v1.0 Room https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/room.md
In Exchange Online, each room is associated with a room mailbox. Derived from [p
| bookingType | [bookingType](#bookingtype-values) | Type of room. Possible values are `standard`, and `reserved`. | | building | String | Specifies the building name or building number that the room is in. | | capacity | Int32 | Specifies the capacity of the room. |
-| displayName | String | The name associated with the room. |
| displayDeviceName | String | Specifies the name of the display device in the room. |
+| displayName | String | The name associated with the room. |
| emailAddress | String | Email address of the room. | | floorLabel | String | Specifies a descriptive label for the floor, for example, P. | | floorNumber | Int32 | Specifies the floor number that the room is on. |
In Exchange Online, each room is associated with a room mailbox. Derived from [p
| Value | Description | |:|:-|
-| standard | The room is available and can be reserved. This is the default value. |
| reserved | The room is available only on a first come, first served basis. It cannot be reserved.|
+| standard | The room is available and can be reserved. This is the default value. |
## Relationships
v1.0 Samlorwsfedprovider https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/samlorwsfedprovider.md
Inherits from [identityProviderBase](../resources/identityproviderbase.md).
|id|String|The identifier of the identity provider. Inherited from [entity](../resources/entity.md).| |issuerUri|String|Issuer URI of the federation server.| |metadataExchangeUri|String|URI of the metadata exchange endpoint used for authentication from rich client applications.|
-|metadataExchangeUri|String|URI of the metadata exchange endpoint used for authentication from rich client applications.|
|passiveSignInUri|String|URI that web-based clients are directed to when signing in to Azure Active Directory (Azure AD) services.| |preferredAuthenticationProtocol|authenticationProtocol|Preferred authentication protocol. The possible values are: `wsFed`, `saml`, `unknownFutureValue`.| |signingCertificate|String|Current certificate used to sign tokens passed to the Microsoft identity platform. The certificate is formatted as a Base64 encoded string of the public portion of the federated IdP's token signing certificate and must be compatible with the X509Certificate2 class. <br/><br/> This property is used in the following scenarios: <ul><li> if a rollover is required outside of the autorollover update <li>a new federation service is being set up <li> if the new token signing certificate isn't present in the federation properties after the federation service certificate has been updated. </ul> <br/><br/> Azure AD updates certificates via an autorollover process in which it attempts to retrieve a new certificate from the federation service metadata, 30 days before expiry of the current certificate. If a new certificate isn't available, Azure AD monitors the metadata daily and will update the federation settings for the domain when a new certificate is available.|
v1.0 Schedule https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/schedule.md
A collection of [schedulingGroup](schedulinggroup.md) objects, [shift](shift.md)
## Properties |Name |Type |Description | |--||-|
-| id |string |ID of the schedule.|
| enabled |Boolean | Indicates whether the schedule is enabled for the team. Required.|
-| timeZone |string | Indicates the time zone of the schedule team using tz database format. Required.|
+| id |string |ID of the schedule.|
+| offerShiftRequestsEnabled |Boolean | Indicates whether offer shift requests are enabled for the schedule. |
+| openShiftsEnabled |Boolean | Indicates whether open shifts are enabled for the schedule. |
| provisionStatus |operationStatus | The status of the schedule provisioning. The possible values are `notStarted`, `running`, `completed`, `failed`. | | provisionStatusCode |string | Additional information about why schedule provisioning failed. |
+ |swapShiftsRequestsEnabled |Boolean| Indicates whether swap shifts requests are enabled for the schedule. |
| timeClockEnabled |Boolean | Indicates whether time clock is enabled for the schedule. |
-| openShiftsEnabled |Boolean | Indicates whether open shifts are enabled for the schedule. |
-| swapShiftsRequestsEnabled |Boolean| Indicates whether swap shifts requests are enabled for the schedule. |
-| offerShiftRequestsEnabled |Boolean | Indicates whether offer shift requests are enabled for the schedule. |
| timeOffRequestsEnabled |Boolean | Indicates whether time off requests are enabled for the schedule. | -
+| timeZone |string | Indicates the time zone of the schedule team using tz database format. Required.|
## Relationships |Name |Type |Description | |--||-|
+| openshiftchangerequests |[openShiftChangeRequest](openshiftchangerequest.md) collection | The open shift requests in the schedule. |
+| openshifts |[openShift](openshift.md) collection | The set of open shifts in a scheduling group in the schedule. |
+| schedulingGroups |[schedulingGroup](schedulinggroup.md) collection | The logical grouping of users in the schedule (usually by role). |
| shifts | [shift](shift.md) collection | The shifts in the schedule. |
+| swapshiftchangerequests |[swapShiftsChangeRequest](swapshiftschangerequest.md) collection | The swap requests for shifts in the schedule. |
| timesOff |[timeOff](timeoff.md) collection | The instances of times off in the schedule. | | timeOffReasons |[timeOffReason](timeoffreason.md) collection | The set of reasons for a time off in the schedule. |
-| schedulingGroups |[schedulingGroup](schedulinggroup.md) collection | The logical grouping of users in the schedule (usually by role). |
-| openshifts |[openShift](openshift.md) collection | The set of open shifts in a scheduling group in the schedule. |
-| workforceintegrations |[workforceIntegration](workforceintegration.md) collection | An instance of a workforce integration per team with outbound data flow on synchronous change notifications (for supported entities). |
-| swapshiftchangerequests |[swapShiftsChangeRequest](swapshiftschangerequest.md) collection | The swap requests for shifts in the schedule. |
-| openshiftchangerequests |[openShiftChangeRequest](openshiftchangerequest.md) collection | The open shift requests in the schedule. |
| timeoffrequest |[timeOffRequest](timeoffrequest.md) collection | The time off requests in the schedule. |
+| workforceintegrations |[workforceIntegration](workforceintegration.md) collection | An instance of a workforce integration per team with outbound data flow on synchronous change notifications (for supported entities). |
## JSON representation
v1.0 Schedulinggroup https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/schedulinggroup.md
A logical grouping of users in a [schedule](schedule.md) (usually by role).
## Properties |Name |Type |Description | |--||--|
-| id | `string` |ID of the **schedulingGroup**.|
+| createdDateTime |`DateTimeOffset` |The time stamp in which this **schedulingGroup** was first created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is `2014-01-01T00:00:00Z`. |
| displayName | `string` | The display name for the **schedulingGroup**. Required. |
+| id | `string` |ID of the **schedulingGroup**.|
| isActive |`bool` | Indicates whether the `schedulingGroup` can be used when creating new entities or updating existing ones. Required. |
-| userIds | `collection(string)` | The list of user IDs that are a member of the **schedulingGroup**. Required. |
-| createdDateTime |`DateTimeOffset` |The time stamp in which this **schedulingGroup** was first created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is `2014-01-01T00:00:00Z`. |
-| lastModifiedDateTime |`DateTimeOffset` |The time stamp in which this **schedulingGroup** was last updated. 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`. |
| lastModifiedBy | [identitySet](identityset.md) |The identity that last updated this **schedulingGroup**.|-
+| lastModifiedDateTime |`DateTimeOffset` |The time stamp in which this **schedulingGroup** was last updated. 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`. |
+| userIds | `collection(string)` | The list of user IDs that are a member of the **schedulingGroup**. Required. |
## JSON representation The following is a JSON representation of the resource.
v1.0 Schemaextension https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/schemaextension.md
For more information about Microsoft Graph extensibility including limits for sc
|:|:--|:-| |description|String|Description for the schema extension. Supports `$filter` (`eq`).| |id|String|The unique identifier for the schema extension definition. <br>You can assign a value in one of two ways: <ul><li>Concatenate the name of one of your verified domains with a name for the schema extension to form a unique string in this format, \{_&#65279;domainName_\}\_\{_&#65279;schemaName_\}. As an example, `contoso_mySchema`. </li><li>Provide a schema name, and let Microsoft Graph use that schema name to complete the **id** assignment in this format: ext\{_&#65279;8-random-alphanumeric-chars_\}\_\{_&#65279;schema-name_\}. An example would be `extkvbmkofy_mySchema`.</li></ul>This property cannot be changed after creation. Supports `$filter` (`eq`). **Note:** We recommend that your **id** starts with an alphabetic letter between A-Z because query capabilities might be limited for IDs that begin with integers. <br/><br/> Supports `$filter` (`eq`). |
-|owner|String|The `appId` of the application that is the owner of the schema extension. This property can be supplied on creation, to set the owner. If not supplied, then the calling application's `appId` will be set as the owner. In either case, the signed-in user must be the owner of the application. So, for example, if creating a new schema extension definition using Graph Explorer, you **must** supply the owner property. Once set, this property is read-only and cannot be changed. Supports `$filter` (`eq`).|
+|owner|String| The `appId` of the application that is the owner of the schema extension. The owner of the schema definition must be explicitly specified during the Create and Update operations, or it will be implied and auto-assigned by Azure AD as follows: <br/><ul><li>In delegated access: <ul><li>The signed-in user must be the owner of the app that calls Microsoft Graph to create the schema extension definition. </li></ul> <ul><li>If the signed-in user isn't the owner of the calling app, they must explicitly specify the **owner** property, and assign it the **appId** of an app that they own.</li></ul></li></ul> <ul><li>In app-only access: <ul><li> The **owner** property isn't required in the request body. Instead, the calling app is assigned ownership of the schema extension.</li></ul></li></ul> </br>So, for example, if creating a new schema extension definition using Graph Explorer, you **must** supply the owner property. Once set, this property is read-only and cannot be changed. Supports `$filter` (`eq`).|
|properties|[extensionSchemaProperty](extensionschemaproperty.md) collection|The collection of property names and types that make up the schema extension definition.| |status|String|The lifecycle state of the schema extension. Possible states are `InDevelopment`, `Available`, and `Deprecated`. Automatically set to `InDevelopment` on creation. For more information about the possible state transitions and behaviors, see [Schema extensions lifecycle](#schema-extensions-lifecycle). Supports `$filter` (`eq`).| |targetTypes|String collection|Set of Microsoft Graph types (that can support extensions) that the schema extension can be applied to. Select from **administrativeUnit**, **contact**, **device**, **event**, **group**, **message**, **organization**, **post**, **todoTask**, **todoTaskList**, or **user**.|
v1.0 Searchhit https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/searchhit.md
Represents a single result within the list of search results.
|contentSource|String|The name of the content source that the **externalItem** is part of.| |hitId|String|The internal identifier for the item. The format of the identifier varies based on the entity type. For details, see [hitId format](#hitid-format).| |rank|Int32|The rank or the order of the result.|
-|resultTemplateId|String|ID of the result template used to render the search result. This ID must map to a display layout in the **resultTemplates** dictionary that is also included in the [searchResponse](searchresponse.md).|
|resource|[entity](entity.md)|The underlying Microsoft Graph representation of the search result.|
+|resultTemplateId|String|ID of the result template used to render the search result. This ID must map to a display layout in the **resultTemplates** dictionary that is also included in the [searchResponse](searchresponse.md).|
|summary|String|A summary of the result, if a summary is available.| ### hitId format
v1.0 Searchresponse https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/searchresponse.md
Represents results from a search query, and the terms used for the query.
| Property | Type | Description | |:-|:|:| |hitsContainers|[searchHitsContainer](searchhitscontainer.md) collection|A collection of search results.|
+|queryAlterationResponse|[alterationResponse](alterationresponse.md)|Provides information related to spelling corrections in the alteration response.|
|resultTemplates|[resultTemplate](resulttemplate.md) collection|A dictionary of **resultTemplateIds** and associated values, which include the name and JSON schema of the result templates.| |searchTerms|String collection|Contains the search terms sent in the initial search query.|
-|queryAlterationResponse|[alterationResponse](alterationresponse.md)|Provides information related to spelling corrections in the alteration response.|
## JSON representation
v1.0 Section https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/section.md
Here is a JSON representation of the resource.
|:|:--|:-| |createdBy|[identitySet](identityset.md)|Identity of the user, device, and application which created the item. Read-only.| |createdDateTime|DateTimeOffset|The date and time when the section was created. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is `2014-01-01T00:00:00Z`. Read-only.|
+|displayName|String|The name of the section. |
|id|String|The unique identifier of the section. Read-only.| |isDefault|Boolean|Indicates whether this is the user's default section. Read-only.| |lastModifiedBy|[identitySet](identityset.md)|Identity of the user, device, and application which created the item. Read-only.| |lastModifiedDateTime|DateTimeOffset|The date and time when the section was last modified. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is `2014-01-01T00:00:00Z`. Read-only.| |links|[SectionLinks](sectionlinks.md)|Links for opening the section. The `oneNoteClientURL` link opens the section in the OneNote native client if it's installed. The `oneNoteWebURL` link opens the section in OneNote on the web.|
-|displayName|String|The name of the section. |
|pagesUrl|String|The `pages` endpoint where you can get details for all the pages in the section. Read-only.| |self|String|The endpoint where you can get details about the section. Read-only.|
v1.0 Sectiongroup https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/sectiongroup.md
Here is a JSON representation of the resource.
|:|:--|:-| |createdBy|[identitySet](identityset.md)|Identity of the user, device, and application which created the item. Read-only.| |createdDateTime|DateTimeOffset|The date and time when the section group was created. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is `2014-01-01T00:00:00Z`. Read-only.|
+|displayName|String|The name of the section group.|
|id|String|The unique identifier of the section group. Read-only.| |lastModifiedBy|[identitySet](identityset.md)|Identity of the user, device, and application which created the item. Read-only.| |lastModifiedDateTime|DateTimeOffset|The date and time when the section group was last modified. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is `2014-01-01T00:00:00Z`. Read-only.|
-|displayName|String|The name of the section group.|
|sectionGroupsUrl|String|The URL for the `sectionGroups` navigation property, which returns all the section groups in the section group. Read-only.| |sectionsUrl|String|The URL for the `sections` navigation property, which returns all the sections in the section group. Read-only.| |self|String|The endpoint where you can get details about the section group. Read-only.|
v1.0 Securescore https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/securescore.md
Represents a tenant's secure score per day of scoring data, at the tenant and co
|Property |Type |Description | |:--|:--|:--|
-|id |String|Provider-generated GUID/unique identifier. Read-only. Required.|
-| azureTenantId | String | GUID string for tenant ID. |
| activeUserCount | Int32 | Active user count of the given tenant. |
+| averageComparativeScores | [averageComparativeScore](averagecomparativescore.md) collection |Average score by different scopes (for example, average by industry, average by seating) and control category (Identity, Data, Device, Apps, Infrastructure) within the scope. |
+| azureTenantId | String | GUID string for tenant ID. |
+| controlScores | [controlScore](controlscore.md) collection | Contains tenant scores for a set of controls. |
| createdDateTime | DateTimeOffset | The date when the entity is created. | | currentScore | Double | Tenant current attained score on specified date. | | enabledServices | String collection | Microsoft-provided services for the tenant (for example, Exchange online, Skype, Sharepoint). |
+|id |String|Provider-generated GUID/unique identifier. Read-only. Required.|
| licensedUserCount | Int32 | Licensed user count of the given tenant. | | maxScore | Double | Tenant maximum possible score on specified date. |
-| averageComparativeScores | [averageComparativeScore](averagecomparativescore.md) collection |Average score by different scopes (for example, average by industry, average by seating) and control category (Identity, Data, Device, Apps, Infrastructure) within the scope. |
-| controlScores | [controlScore](controlscore.md) collection | Contains tenant scores for a set of controls. |
|vendorInformation |[securityVendorInformation](securityvendorinformation.md)|Complex type containing details about the security product/service vendor, provider, and subprovider (for example, vendor=Microsoft; provider=SecureScore). Required.|
v1.0 Securescorecontrolprofile https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/securescorecontrolprofile.md
Represents a tenant's secure score per control data. By default, it returns all
|Name |Type |Description | |:--|:--|:--|
-|id|String|Provider-generated GUID/unique identifier. Read-only. Required.|
-|azureTenantId|String|GUID string for tenant ID.|
|actionType|String|Control action type (Config, Review, Behavior).| |actionUrl|String|URL to where the control can be actioned. |
+|azureTenantId|String|GUID string for tenant ID.|
+|complianceInformation|[complianceInformation](complianceinformation.md) collection|The collection of compliance information associated with secure score control|
|controlCategory|String|Control action category (Identity, Data, Device, Apps, Infrastructure).|
-|title|String|Title of the control.|
+|controlStateUpdates|[secureScoreControlStateUpdate](securescorecontrolstateupdate.md) collection|Flag to indicate where the tenant has marked a control (ignored, thirdParty, reviewed) (supports [update](../api/securescorecontrolprofile-update.md)).|
|deprecated|Boolean|Flag to indicate if a control is depreciated.|
+|id|String|Provider-generated GUID/unique identifier. Read-only. Required.|
|implementationCost|String|Resource cost of implemmentating control (low, moderate, high).| |lastModifiedDateTime|DateTimeOffset|Time at which the control profile entity was last modified. The Timestamp type represents date and time| |maxScore|Double|max attainable score for the control.|
Represents a tenant's secure score per control data. By default, it returns all
|threats|String collection|List of threats the control mitigates (accountBreach,dataDeletion,dataExfiltration,dataSpillage, elevationOfPrivilege,maliciousInsider,passwordCracking,phishingOrWhaling,spoofing).| |tier|String|Control tier (Core, Defense in Depth, Advanced.) |
+|title|String|Title of the control.|
|userImpact|String|User impact of implementing control (low, moderate, high). |
-|complianceInformation|[complianceInformation](complianceinformation.md) collection|The collection of compliance information associated with secure score control|
-|controlStateUpdates|[secureScoreControlStateUpdate](securescorecontrolstateupdate.md) collection|Flag to indicate where the tenant has marked a control (ignored, thirdParty, reviewed) (supports [update](../api/securescorecontrolprofile-update.md)).|
|vendorInformation|[securityVendorInformation](securityvendorinformation.md)|Complex type containing details about the security product/service vendor, provider, and subprovider (for example, vendor=Microsoft; provider=SecureScore). Required.| ## Relationships
v1.0 Security Alert https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/security-alert.md
+
+ Title: "alert resource type"
+description: "Represents potential security issues within a customer's tenant that Microsoft 365 Defender have identified."
Last updated : 11/11/2022+
+ms.localizationpriority: medium
++
+# alert resource type
+
+Namespace: microsoft.graph.security
+
+This resource corresponds to the latest generation of alerts in the Microsoft Graph security API, representing potential security issues within a customer's tenant that Microsoft 365 Defender, or a security provider integrated with Microsoft 365 Defender, has identified.
+
+When detecting a threat, a security provider creates an alert in the system. Microsoft 365 Defender pulls this alert data from the security provider, and consumes the alert data to return valuable clues in an [alert](security-alert.md) resource about any related attack, impacted assets, and associated [evidence](security-alertevidence.md). It automatically correlates other alerts with the same attack techniques or the same attacker into an [incident](security-incident.md) to provide a broader context of an attack. Aggregating alerts in this manner makes it easy for analysts to collectively investigate and respond to threats.
++
+## Methods
+|Method|Return type|Description|
+|:|:|:|
+|[List alerts_v2](../api/security-list-alerts_v2.md)|[microsoft.graph.security.alert](security-alert.md) collection|Get a list of [alert](../resources/security-alert.md) resources that have been created to track suspicious activities in an organization.|
+|[Get alert](../api/security-alert-get.md)|[microsoft.graph.security.alert](security-alert.md)|Get the properties of an [alert](../resources/security-alert.md) object in an organization based on the specified alert **id** property.|
+|[Update alert](../api/security-alert-update.md)|[microsoft.graph.security.alert](../resources/security-alert.md)|Update the properties of an [alert](../resources/security-alert.md) object in an organization based on the specified alert **id** property.|
+|[Create comment for alert](../api/security-alert-post-comments.md)| [alertComment](../resources/security-alertcomment.md) | Create a comment for an existing [alert](../resources/security-alert.md) based on the specified alert **id** property.|
+
+## Properties
+|Property|Type|Description|
+|:|:|:|
+|actorDisplayName|String|The adversary or activity group that is associated with this alert.|
+|alertWebUrl|String|URL for the alert page in the Microsoft 365 Defender portal.|
+|assignedTo|String|Owner of the **alert**, or null if no owner is assigned.|
+|category|String|The attack kill-chain category that the alert belongs to. Aligned with the MITRE ATT&CK framework.|
+|classification|[microsoft.graph.security.alertClassification](#alertclassification-values)|Specifies whether the alert represents a true threat. Possible values are: `unknown`, `falsePositive`, `truePositive`, `benignPositive`, `unknownFutureValue`.|
+|comments|[microsoft.graph.security.alertComment](security-alertComment.md) collection|Array of comments created by the Security Operations (SecOps) team during the alert management process.|
+|createdDateTime|DateTimeOffset|Time when Microsoft 365 Defender created the alert.|
+|description|String|String value describing each alert.|
+|detectionSource|[microsoft.graph.security.detectionSource](#detectionsource-values)|Detection technology or sensor that identified the notable component or activity.|
+|detectorId|String|The ID of the detector that triggered the alert.|
+|determination|[microsoft.graph.security.alertDetermination](#alertdetermination-values)|Specifies the result of the investigation, whether the alert represents a true attack and if so, the nature of the attack. Possible values are: `unknown`, `apt`, `malware`, `securityPersonnel`, `securityTesting`, `unwantedSoftware`, `other`, `multiStagedAttack`, `compromisedUser`, `phishing`, `maliciousUserActivity`, `clean`, `insufficientData`, `confirmedUserActivity`, `lineOfBusinessApplication`, `unknownFutureValue`.|
+|evidence|[microsoft.graph.security.alertEvidence](security-alertEvidence.md) collection|Collection of evidence related to the alert.|
+|firstActivityDateTime|DateTimeOffset|The earliest activity associated with the alert.|
+|id|String|Unique identifier to represent the **alert** resource.|
+|incidentId|String|Unique identifier to represent the [incident](security-incident.md) this **alert** resource is associated with.|
+|incidentWebUrl|String|URL for the incident page in the Microsoft 365 Defender portal.|
+|lastActivityDateTime|DateTimeOffset|The oldest activity associated with the alert.|
+|lastUpdateDateTime|DateTimeOffset|Time when the alert was last updated at Microsoft 365 Defender.|
+|mitreTechniques|Collection(Edm.String)|The attack techniques, as aligned with the MITRE ATT&CK framework.|
+|providerAlertId|String|The ID of the alert as it appears in the security provider product that generated the alert.|
+|recommendedActions|String|Recommended response and remediation actions to take in the event this alert was generated.|
+|resolvedDateTime|DateTimeOffset|Time when the alert was resolved.|
+|serviceSource|[microsoft.graph.security.serviceSource](#servicesource-values)|The service or product that created this alert. Possible values are: `microsoftDefenderForEndpoint`, `microsoftDefenderForIdentity`, `microsoftCloudAppSecurity`, `microsoftDefenderForOffice365`, `microsoft365Defender`, `aadIdentityProtection`, `appGovernance`, `dataLossPrevention`.|
+|severity|[microsoft.graph.security.alertSeverity](#alertseverity-values)|Indicates the possible impact on assets. The higher the severity the bigger the impact. Typically higher severity items require the most immediate attention. Possible values are: `unknown`, `informational`, `low`, `medium`, `high`, `unknownFutureValue`.|
+|status|[microsoft.graph.security.alertStatus](#alertstatus-values)|The status of the alert. Possible values are: `new`, `inProgress`, `resolved`, `unknownFutureValue`.|
+|tenantId|String|The Azure Active Directory tenant the alert was created in.|
+|threatDisplayName|String|The threat associated with this alert.|
+|threatFamilyName|String|Threat family associated with this alert.|
+|title|String|Brief identifying string value describing the alert.|
+
+### alertClassification values
+
+| Member | Description |
+| :-| :- |
+| unknown | The alert isn't classified yet. |
+| falsePositive | The alert is a false positive and didn't detect malicious activity. |
+| truePositive | The alert is true positive and detected malicious activity. |
+| informationalExpectedActivity | The alert is benign positive and detected potentially malicious activity by a trusted/internal user, for example, security testing. |
+| unknownFutureValue | Evolvable enumeration sentinel value. Do not use. |
+
+### alertDetermination values
+
+| Member | Description |
+| :--| : |
+| unknown | No determination value was set yet. |
+| apt | A true positive alert that detected an advanced persistent threat. |
+| malware | A true positive alert that detected malicious software. |
+| securityPersonnel | A true positive alert that detected valid suspicious activity that was performed by someone on the customer's security team. |
+| securityTesting | The alert detected valid suspicious activity that was performed as part of a known security testing. |
+| unwantedSoftware | The alert detected unwanted software. |
+| multiStagedAttack | A true positive alert that detected multiple kill-chain attack stages. |
+| compromisedAccount | A true positive alert that detected that the intended user's credentials were compromised or stolen. |
+| phishing | A true positive alert that detected a phishing email. |
+| maliciousUserActivity | A true positive alert that detected that the logged-on user performs malicious activities. |
+| notMalicious | A false alert, no suspicious activity. |
+| notEnoughDataToValidate | A false alert, without enough information to prove otherwise. |
+| confirmedActivity | The alert caught a true suspicious activity that is considered OK because it is a known user activity. |
+| lineOfBusinessApplication | The alert caught a true suspicious activity that is considered OK because it is a known and confirmed internal application. |
+| other | Other determination. |
+| unknownFutureValue | Evolvable enumeration sentinel value. Do not use. |
+
+### alertSeverity values
+
+| Member | Description |
+| :--| : |
+| unknown | Unknown severity. |
+| informational | Alerts that may not be actionable or considered harmful to the network but can drive organizational security awareness on potential security issues. |
+| low | Alerts on threats associated with prevalent malware. For example, hack-tools, non-malware hack tools, such as running exploration commands and clearing logs, that often don't indicate an advanced threat that targets the organization. It can also come from an isolated security tool that is tested by a user in your organization. |
+| medium | Alerts generated from detections and response post-breach behaviors that might be a part of an advanced persistent threat (APT). This includes observed behaviors typical of attack stages, anomalous registry change, execution of suspicious files, and so forth. Although some might be due to internal security testing, they are valid detections and require investigation as they may be a part of an advanced attack. |
+| high | Alerts commonly seen associated with advanced persistent threats (APT). These alerts indicate a high risk because of the severity of damage they can inflict on assets. Some examples are: credential theft tools activities, ransomware activities not associated with any group, tampering with security sensors, or any malicious activities indicative of a human adversary. |
+| unknownFutureValue | Evolvable enumeration sentinel value. Do not use. |
++
+### alertStatus values
+
+| Member | Description |
+| :-| :- |
+| unknown | Unknown status. |
+| new | New alert. |
+| inProgress | The alert is in mitigation progress. |
+| resolved | The alert is in resolved state. |
+| unknownFutureValue | Evolvable enumeration sentinel value. Do not use. |
++
+### serviceSource values
+
+| Value | Description |
+| :-| :-|
+| unknown | Unknown service source. |
+| microsoftDefenderForEndpoint | Microsoft Defender for Endpoint. |
+| microsoftDefenderForIdentity | Microsoft Defender for Identity. |
+| microsoftDefenderForCloudApps| Microsoft Defender for Cloud Apps. |
+| microsoftDefenderForOffice365| Microsoft Defender For Office365. |
+| microsoft365Defender | Microsoft 365 Defender. |
+| microsoftAppGovernance | Microsoft app governance. |
+| microsoftDataLossPrevention | Microsoft Purview Data Loss Prevention. |
+| unknownFutureValue | Evolvable enumeration sentinel value. Do not use.|
++
+### detectionSource values
+
+| Value | Description |
+| :-| :-|
+| unknown | Unknown detection source. |
+| microsoftDefenderForEndpoint | Microsoft Defender For Endpoint. |
+| antivirus | Antivirus software. |
+| smartScreen | Microsoft Defender SmartScreen. |
+| customTi | Custom threat intelligence. |
+| microsoftDefenderForOffice365 | Microsoft Defender for Office 365. |
+| automatedInvestigation | Automated investigation. |
+| microsoftThreatExperts | Microsoft Threat Experts. |
+| customDetection | Custom detection. |
+| microsoftDefenderForIdentity | Microsoft Defender for Identity. |
+| cloudAppSecurity | Cloud app security. |
+| microsoft365Defender | Microsoft 365 Defender. |
+| azureAdIdentityProtection | Azure Active Directory Identity Protection. |
+| manual | Manual detection. |
+| microsoftDataLossPrevention | Microsoft Purview Data Loss Prevention. |
+| appGovernancePolicy | App governance policy. |
+| appGovernanceDetection | App governance detection. |
+| unknownFutureValue | Evolvable enumeration sentinel value. Do not use. |
++
+## Relationships
+None.
+
+## JSON representation
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "keyProperty": "id",
+ "@odata.type": "microsoft.graph.security.alert",
+ "baseType": "microsoft.graph.entity",
+ "openType": false
+}
+-->
+
+``` json
+{
+ "@odata.type": "#microsoft.graph.security.alert",
+ "id": "String (identifier)",
+ "providerAlertId": "String",
+ "incidentId": "String",
+ "status": "String",
+ "severity": "String",
+ "classification": "String",
+ "determination": "String",
+ "serviceSource": "String",
+ "detectionSource": "String",
+ "detectorId": "String",
+ "tenantId": "String",
+ "title": "String",
+ "description": "String",
+ "recommendedActions": "String",
+ "category": "String",
+ "assignedTo": "String",
+ "alertWebUrl": "String",
+ "incidentWebUrl": "String",
+ "actorDisplayName": "String",
+ "threatDisplayName": "String",
+ "threatFamilyName": "String",
+ "mitreTechniques": [
+ "String"
+ ],
+ "createdDateTime": "String (timestamp)",
+ "lastUpdateDateTime": "String (timestamp)",
+ "resolvedDateTime": "String (timestamp)",
+ "firstActivityDateTime": "String (timestamp)",
+ "lastActivityDateTime": "String (timestamp)",
+ "comments": [
+ {
+ "@odata.type": "microsoft.graph.security.alertComment"
+ }
+ ],
+ "evidence": [
+ {
+ "@odata.type": "microsoft.graph.security.alertEvidence"
+ }
+ ]
+}
+```
+
+<!--
+{
+ "type": "#page.annotation",
+ "namespace": "microsoft.graph.security"
+}
+-->
v1.0 Security Alertcomment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/security-alertcomment.md
+
+ Title: "alertComment resource type"
+description: "An analyst-generated comment that is associated with an alert or incident."
Last updated : 11/11/2022+
+ms.localizationpriority: medium
++
+# alertComment resource type
+
+Namespace: microsoft.graph.security
+
+An analyst-generated comment that is associated with an alert or incident.
+
+## Properties
+|Property|Type|Description|
+|:|:|:|
+|comment|String|The comment text.|
+|createdByDisplayName|String|The person or app name that submitted the comment.|
+|createdDateTime|DateTimeOffset|The time when the comment was submitted.|
+
+## Relationships
+None.
+
+## JSON representation
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.security.alertComment"
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.security.alertComment",
+ "comment": "String",
+ "createdByDisplayName": "String",
+ "createdDateTime": "String (timestamp)"
+}
+```
v1.0 Security Alertevidence https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/security-alertevidence.md
+
+ Title: "alertEvidence resource type"
+description: "Each alert contains a list of related evidence."
Last updated : 11/11/2022+
+ms.localizationpriority: medium
++
+# alertEvidence resource type
+
+Namespace: microsoft.graph.security
+
+Evidence related to an [alert](security-alert.md).
+
+This is the base type of [analyzedMessageEvidence](security-analyzedmessageevidence.md), [cloudApplicationEvidence](security-cloudapplicationevidence.md), [deviceEvidence](security-deviceevidence.md), [fileEvidence](security-fileevidence.md), [ipEvidence](security-ipEvidence.md), [mailboxEvidence](security-mailboxevidence.md), [mailClusterEvidence](security-mailclusterevidence.md), [oauthApplicationEvidence](security-oauthapplicationevidence.md), [processEvidence](security-processevidence.md), [registryKeyEvidence](security-registrykeyevidence.md), [registryValueEvidence](security-registryvalueevidence.md), [securityGroupEvidence](security-securitygroupevidence.md), [urlEvidence](security-urlevidence.md), and [userEvidence](security-userevidence.md).
+
+This alert evidence base type and its derived evidence types provide a means to organize and track rich data about each artifact involved in an **alert**. For example, an **alert** about an attacker's IP address logging into a cloud service using a compromised user account can track the following evidence:
+- [IP evidence](security-ipevidence.md) with the roles of `attacker` and `source`, remediation status of `running`, and verdict of `malicious`.
+- [Cloud application evidence](security-cloudapplicationevidence.md) with a role of `contextual`.
+- [Mailbox evidence](security-mailboxevidence.md) for the hacked user account with a role of `compromised`.
++
+## Properties
+|Property|Type|Description|
+|:|:|:|
+|createdDateTime|DateTimeOffset|The time the evidence was created and added to the alert.|
+|remediationStatus|[microsoft.graph.security.evidenceRemediationStatus](#evidenceremediationstatus-values)|Status of the remediation action taken. The possible values are: `none`, `remediated`, `prevented`, `blocked`, `notFound`, `unknownFutureValue`.|
+|remediationStatusDetails|String|Details about the remediation status.|
+|roles|[microsoft.graph.security.evidenceRole](#evidencerole-values) collection|The role/s that an evidence entity represents in an alert, e.g., an IP address that is associated with an attacker will have the evidence role "Attacker".|
+|tags|String collection|Array of custom tags associated with an evidence instance, for example to denote a group of devices, high value assets, etc.|
+|verdict|[microsoft.graph.security.evidenceVerdict](#evidenceverdict-values)|The decision reached by automated investigation. The possible values are: `unknown`, `suspicious`, `malicious`, `noThreatsFound`, `unknownFutureValue`.|
++
+### detectionSource values
+
+| Value | Description |
+| :-| :--|
+| detected | A product of the threat that executed was detected. |
+| blocked | the threat was remediated at run time. |
+| prevented | the threat was prevented from occurring (running, downloading, etc,).|
+| unknownFutureValue | Evolvable enumeration sentinel value. Do not use. |
++
+### evidenceRemediationStatus values
+
+| Member | Description |
+| :--| : |
+| none | No threats were found. |
+| remediated | Remediation action has completed successfully. |
+| prevented | The threat was prevented from executing. |
+| blocked | The threat was blocked while executing. |
+| notFound | The evidence was not found. |
+| unknownFutureValue | Evolvable enumeration sentinel value. Do not use. |
++
+### evidenceRole values
+
+| Member | Description |
+| :--| :- |
+| unknown | The evidence role is unknown. |
+| contextual | An entity that arose likely benign but was reported as a side effect of an attacker's action, e.g. the benign services.exe process was used to start a malicious service.|
+| scanned | An entity identified as a target of discovery scanning or reconnaissance actions, e.g. a port scanner was used to scan a network. |
+| source | The entity the activity originated from, e.g. device, user, IP address, etc. |
+| destination | The entity the activity was sent to, e.g. device, user, IP address, etc. |
+| created | The entity was created as a result of the actions of an attacker, e.g. a user account was created. |
+| added | The entity was added as a result of the actions of an attacker, e.g. a user account was added to a permissions group. |
+| compromised | The entity was compromised and is under the control of an attacker, e.g. a user account was compromised and used to log into a cloud service. |
+| edited | The entity was edited or changed by an attacker, e.g. the registry key for a service was edited to point to the location of a new malicious payload. |
+| attacked | The entity was attacked, e.g. a device was targeted in a DDoS attack. |
+| attacker | The entity represents the attacker, e.g. the attacker`s IP address observed logging into a cloud service using a compromised user account. |
+| commandAndControl | The entity is being used for command and control, e.g. a C2 (command and control) domain used by malware. |
+| loaded | The entity was loaded by a process under the control of an attacker, e.g. a Dll was loaded into an attacker-controlled process. |
+| suspicious | The entity is suspected of being malicious or controlled by an attacker but has not been incriminated. |
+| policyViolator | The entity is a violator of a customer defined policy. |
+| unknownFutureValue | Evolvable enumeration sentinel value. Do not use. |
++
+### evidenceRemediationStatus values
+
+| Member | Description |
+| :--| : |
+| unknown | No verdict was determined for the evidence. |
+| suspicious | Recommended remediation actions awaiting approval.|
+| malicious | The evidence was determined to be malicious. |
+| clean | No threat was detected - the evidence is benign. |
+| unknownFutureValue | Evolvable enumeration sentinel value. Do not use. |
++
+### evidenceVerdict values
+
+| Member | Description |
+| :--| : |
+| unknown | No verdict was determined for the evidence.|
+| suspicious | |
+| malicious | The evidence was determined to be malicious. |
+| noThreatsFound | No threat was detected - the evidence is benign. |
+| unknownFutureValue | Evolvable enumeration sentinel value. Do not use. |
++
+## Relationships
+None.
+
+## JSON representation
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.security.alertEvidence"
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.security.alertEvidence",
+ "createdDateTime": "String (timestamp)",
+ "verdict": "String",
+ "remediationStatus": "String",
+ "remediationStatusDetails": "String",
+ "roles": [
+ "String"
+ ],
+ "tags": [
+ "String"
+ ]
+}
+```
v1.0 Security Analyzedmessageevidence https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/security-analyzedmessageevidence.md
+
+ Title: "analyzedMessageEvidence resource type"
+description: "An email, or analyzed message, that is reported in the alert as evidence."
Last updated : 11/11/2022+
+ms.localizationpriority: medium
++
+# analyzedMessageEvidence resource type
+
+Namespace: microsoft.graph.security
+
+An email, or analyzed message, that is reported in the alert as evidence.
+
+Inherits from [alertEvidence](../resources/security-alertevidence.md).
+
+## Properties
+|Property|Type|Description|
+|:|:|:|
+|antiSpamDirection|String|Direction of the email relative to your network. The possible values are: `inbound`, `outbound` or `intraorg`.|
+|attachmentsCount|Int64|Number of attachments in the email.|
+|deliveryAction|String|Delivery action of the email. The possible values are: `delivered`, `deliveredAsSpam`, `junked`, `blocked`, or `replaced`.|
+|deliveryLocation|String|Location where the email was delivered. The possible values are: `inbox`, `external`, `junkFolder`, `quarantine`, `failed`, `dropped`, `deletedFolder` or `forwarded`.|
+|internetMessageId|String|Public-facing identifier for the email that is set by the sending email system.|
+|language|String|Detected language of the email content.|
+|networkMessageId|String|Unique identifier for the email, generated by Microsoft 365.|
+|p1Sender|[microsoft.graph.security.emailSender](../resources/security-emailsender.md)|The P1 sender.|
+|p2Sender|[microsoft.graph.security.emailSender](../resources/security-emailsender.md)|The P2 sender.|
+|receivedDateTime|DateTimeOffset|Date and time when the email was received.|
+|recipientEmailAddress|String|Email address of the recipient, or email address of the recipient after distribution list expansion.|
+|senderIp|String|IP address of the last detected mail server that relayed the message.|
+|subject|String|Subject of the email.|
+|threatDetectionMethods|String collection|Collection of methods used to detect malware, phishing, or other threats found in the email.|
+|threats|String collection|Collection of detection names for malware or other threats found.|
+|urlCount|Int64|Number of embedded URLs in the email.|
+|urls|String collection|Collection of the URLs contained in this email.|
+|urn|String|Uniform resource name (URN) of the automated investigation where the cluster was identified.|
+
+## Relationships
+None.
+
+## JSON representation
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.security.analyzedMessageEvidence"
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.security.analyzedMessageEvidence",
+ "createdDateTime": "String (timestamp)",
+ "verdict": "String",
+ "remediationStatus": "String",
+ "remediationStatusDetails": "String",
+ "roles": [
+ "String"
+ ],
+ "tags": [
+ "String"
+ ],
+ "networkMessageId": "String",
+ "internetMessageId": "String",
+ "subject": "String",
+ "language": "String",
+ "senderIp": "String",
+ "recipientEmailAddress": "String",
+ "antiSpamDirection": "String",
+ "deliveryAction": "String",
+ "deliveryLocation": "String",
+ "urn": "String",
+ "threats": [
+ "String"
+ ],
+ "threatDetectionMethods": [
+ "String"
+ ],
+ "urls": [
+ "String"
+ ],
+ "urlCount": "Integer",
+ "attachmentsCount": "Integer",
+ "receivedDateTime": "String (timestamp)",
+ "p1Sender": {
+ "@odata.type": "microsoft.graph.security.emailSender"
+ },
+ "p2Sender": {
+ "@odata.type": "microsoft.graph.security.emailSender"
+ }
+}
+```
v1.0 Security Api Overview https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/security-api-overview.md
doc_type: conceptualPageType
The Microsoft Graph security API provides a unified interface and schema to integrate with security solutions from Microsoft and ecosystem partners. This empowers customers to streamline security operations and better defend against increasing cyber threats. The Microsoft Graph security API federates queries to all onboarded security providers and aggregates responses. Use the Microsoft Graph security API to build applications that: - Consolidate and correlate security alerts from multiple sources.
+- Pull and investigate all incidents and alerts from services that are part of or integrated with Microsoft 365 Defender.
- Unlock contextual data to inform investigations. - Automate security tasks, business processes, workflows, and reporting. - Send threat indicators to Microsoft products for customized detections.
The Microsoft Graph security API provides a unified interface and schema to inte
The Microsoft Graph security API provides key features as described in the following sections.
+## Advanced hunting
+Advanced hunting is a query-based threat hunting tool that lets you explore up to 30 days of raw data. You can proactively inspect events in your network to locate threat indicators and entities. The flexible access to data enables unconstrained hunting for both known and potential threats.
+
+Use [runHuntingQuery](../api/security-security-runhuntingquery.md) to run a [Kusto Query Language](/azure/data-explorer/kusto/query/) (KQL) query on data stored in Microsoft 365 Defender. Leverage the returned result set to enrich an existing investigation or to uncover undetected threats in your network.
+
+### Quotas and resource allocation
+
+1. You can run a query on data from only the last 30 days.
+
+2. The results include a maximum of 100,000 rows.
+
+3. The number of executions is limited per tenant:
+ - API calls: Up to 45 requests per minute, and up to 1500 requests per hour.
+ - Execution time: 10 minutes of running time every hour and 3 hours of running time a day.
+
+4. The maximal execution time of a single request is 200 seconds.
+
+5. A response code of HTTP 429 means you have reached the quota for either the number of API calls or execution time. Refer to the response body to confirm the limit you have reached.
+
+6. The maximum query result size of a single request cannot exceed 124 MB. Exceeding the size limit results in HTTP 400 Bad Request with the message "Query execution has exceeded the allowed result size. Optimize your query by limiting the number of results and try again."
+ ## Alerts
+Alerts are detailed warnings about suspicious activities in a customer's tenant that Microsoft or partner security providers have identified and flagged for action. Attacks typically employ various techniques against different types of entities, such as devices, users, and mailboxes. The result is alerts from multiple security providers for multiple entities in the tenant. Piecing the individual alerts together to gain insight into an attack can be challenging and time-consuming.
+
+The security API offers two types of alerts that aggregate other alerts from security providers and make analyzing attacks and determining response easier:
+- [Alerts and incidents](#alerts-and-incidents) - these are the latest generation of alerts in the Microsoft Graph security API. They are represented by the [alert](security-alert.md) resource and its collection, [incident](security-incident.md) resource, defined in the `microsoft.graph.security` namespace.
+- [Legacy alerts](#legacy-alerts) - these are the first generation of alerts in the Microsoft Graph security API. They are represented by the [alert](alert.md) resource defined in the `microsoft.graph` namespace.
+
+### Alerts and incidents
+
+These [alert](security-alert.md) resources first pull alert data from security provider services, that are either part of or integrated with [Microsoft 365 Defender](/microsoft-365/security/defender/microsoft-365-defender?view=o365-worldwide&preserve-view=true). Then they consume the data to return rich, valuable clues about a completed or ongoing attack, the impacted assets, and associated [evidence](security-alertevidence.md). In addition, they automatically correlate other alerts with the same attack techniques or the same attacker into an [incident](security-incident.md) to provide a broader context of an attack. They recommend response and remediation actions, offering consistent actionability across all the different providers. The rich content makes it easier for analysts to collectively investigate and respond to threats.
+
+Alerts from the following security providers are available via these rich alerts and incidents:
+- [Azure Active Directory Identity Protection](/azure/active-directory/identity-protection/overview-identity-protection)
+- [Microsoft 365 Defender](/microsoft-365/security/defender/microsoft-365-defender?view=o365-worldwide&preserve-view=true)
+- [Microsoft Defender for Cloud Apps](/cloud-app-security/monitor-alerts)
+- [Microsoft Defender for Endpoint](/microsoft-365/security/defender-endpoint/microsoft-defender-endpoint?view=o365-worldwide&preserve-view=true)
+- [Microsoft Defender for Identity](/defender-for-identity/alerts-overview)
+- [Microsoft Defender for Office 365](/microsoft-365/security/office-365-security/overview?view=o365-worldwide&preserve-view=true)
+- [Microsoft Purview Data Loss Prevention](/microsoft-365/compliance/dlp-learn-about-dlp?view=o365-worldwide&preserve-view=true)
-Alerts are potential security issues within a customer's tenant that Microsoft or partner security providers have identified and flagged for action or notification.
+### Legacy alerts
-The v1.0 version of the security API offers the [alert](alert.md) resource which federates calling of supported Azure and Microsoft 365 Defender security providers. This **alert** resource aggregates alert data thatΓÇÖs common among the different domains to allow applications to unify and streamline management of security issues across all integrated solutions. This enables applications to correlate alerts and context to improve threat protection and response.
+These [alert](alert.md) resources federate calling of supported Azure and Microsoft 365 Defender security providers. They aggregate common alert data among the different domains to allow applications to unify and streamline management of security issues across all integrated solutions. They enable applications to correlate alerts and context to improve threat protection and response.
+
+The legacy version of the security API offers the [alert](alert.md) resource which federates calling of supported Azure and Microsoft 365 Defender security providers. This **alert** resource aggregates alert data thatΓÇÖs common among the different domains to allow applications to unify and streamline management of security issues across all integrated solutions. This enables applications to correlate alerts and context to improve threat protection and response.
With the alert update capability, you can sync the status of specific alerts across different security products and services that are integrated with the Microsoft Graph security API by updating your **alert** entity.
Alerts from the following providers are available via this **alert** resource. S
| Security provider | <p align="center">GET alert</p>| <p align="center">PATCH alert</p>| <p align="center">Subscribe to alert</p>| |:|:|:--|:|
-|[Azure Active Directory Identity Protection](/azure/active-directory/identity-protection/playbook) | <p align="center">&#x2713;</p> | <p align="center">[File issue](https://github.com/microsoftgraph/security-api-solutions/issues/new) *</p> | <p align="center">&#x2713;</p> |
+|[Azure Active Directory Identity Protection](/azure/active-directory/identity-protection/playbook) ****| <p align="center">&#x2713;</p> | <p align="center">[File issue](https://github.com/microsoftgraph/security-api-solutions/issues/new) *</p> | <p align="center">&#x2713;</p> |
|Microsoft 365 <ul><li> [Default](/office365/securitycompliance/alert-policies#default-alert-policies)</li> <li>[Cloud App Security](/office365/securitycompliance/anomaly-detection-policies-in-ocas)</li><li>Custom Alert</li></ul> | <p align="center">&#x2713;</p> | <p align="center"> [File issue](https://github.com/microsoftgraph/security-api-solutions/issues/new) </p> | <p align="center"> [File issue](https://github.com/microsoftgraph/security-api-solutions/issues/new) </p> | | [Microsoft Defender for Cloud Apps](/cloud-app-security/monitor-alerts) | <p align="center">&#x2713;</p> | <p align="center">[File issue](https://github.com/microsoftgraph/security-api-solutions/issues/new) *</p> | <p align="center">&#x2713;</p> | |[Microsoft Defender for Endpoint](/windows/security/threat-protection/microsoft-defender-atp/attack-simulations) **| <p align="center">&#x2713;</p> | <p align="center">&#x2713;</p> | <p align="center"> [File issue](https://github.com/microsoftgraph/security-api-solutions/issues/new) </p> |
Alerts from the following providers are available via this **alert** resource. S
\*\*\* Microsoft Defender for Identity alerts are available via the Microsoft Defender for Cloud Apps integration. This means you will get Microsoft Defender for Identity alerts only if you have joined Unified SecOps and connected Microsoft Defender for Identity into Microsoft Defender for Cloud Apps. Learn more about [how to integrate Microsoft Defender for Identity and Microsoft Defender for Cloud Apps](/defender-for-identity/mcas-integration).
+\*\*\*\* Azure AD Identity Protection alerts only include user object IDs. The **userPrincipalName** (UPN) property is not included in GET request responses. This issue does not impact any of the other providers. For details and a workaround, see [Known issues](/graph/known-issues#upn-missing-in-identity-protection-security-alerts).
+ ## Attack simulation and training [Attack simulation and training](/microsoft-365/security/office-365-security/attack-simulation-training) is part of [Microsoft Defender for Office 365](/microsoft-365/security/office-365-security/defender-for-office-365?view=o365-worldwide&preserve-view=true). This service lets users in a tenant experience a realistic benign phishing attack and learn from it. Social engineering simulation and training experiences for end users help reduce the risk of users being breached via those attack techniques. The attack simulation and training API enables tenant administrators to view launched [simulation](simulation.md) exercises and trainings, and get [reports](report-m365defender-reports-overview.md) on derived insights into online behaviors of users in the phishing simulations.
Alerts from the following providers are available via this **alert** resource. S
[Microsoft Purview eDiscovery (Premium)](/microsoft-365/compliance/overview-ediscovery-20) provides an end-to-end workflow to preserve, collect, analyze, review, and export content that's responsive to your organization's internal and external investigations.
+## Incidents
+
+An [incident](security-incident.md) is a collection of correlated  [alerts](security-alert.md) and associated data that make up the story of an attack. Incident management is part of Microsoft 365 Defender, and is available in the Microsoft 365 Defender portal (https://security.microsoft.com/).
+
+Microsoft 365 services and apps create  alerts  when they detect a suspicious or malicious event or activity. Individual alerts provide valuable clues about a completed or ongoing attack. However, attacks typically employ various techniques against different types of entities, such as devices, users, and mailboxes. The result is multiple  alerts for multiple entities in your tenant.
+
+Because piecing the individual alerts together to gain insight into an attack can be challenging and time-consuming, Microsoft 365 Defender automatically aggregates the alerts and their associated information into an [incident](security-incident.md).
+
+Grouping related alerts into an incident gives you a comprehensive view of an attack. For example, you can see:
+
+- Where the attack started.
+- What tactics were used.
+- How far the attack has gone into your tenant.
+- The scope of the attack, such as how many devices, users, and mailboxes were impacted.
+- All of the data associated with the attack.
+
+TheΓÇ» [incident](security-incident.md) resource and its APIs allow you to sort through incidents to create an informed cyber security response. It exposes a collection of incidents, with their relatedΓÇ» [alerts](security-alert.md), that were flagged in your network, within the time range you specified in your environment retention policy.
++ ## Information protection The Microsoft Graph threat assessment API helps organizations to assess the threat received by any user in a tenant. This empowers customers to report spam emails, phishing URLs or malware attachments they receive to Microsoft. The policy check result and rescan result can help tenant administrators understand the threat scanning verdict and adjust their organizational policy.
The following are some of the most popular requests for working with the Microso
| **Use cases** | **REST resources** | **Try it in Graph Explorer** | |:|:--|:-|
+|Update secure score control profiles|[Update secureScoreControlProfile](../api/securescorecontrolprofile-update.md) |[https://graph.microsoft.com/v1.0/security/secureScoreControlProfiles/{id}](https://developer.microsoft.com/graph/graph-explorer?request=security/secureScoreControlProfiles/{id}&method=PATCH&version=v1.0&GraphUrl=https://graph.microsoft.com)|
+| **Alerts and incidents**|||
+| List alerts | [List alerts](../api/security-list-alerts_v2.md) | [https://graph.microsoft.com/v1.0/security/alerts_v2](https://developer.microsoft.com/graph/graph-explorer?request=security/alerts_v2&method=GET&version=v1.0&GraphUrl=https://graph.microsoft.com) |
+| Update alert | [Update alert](../api/security-alert-update.md) | [https://graph.microsoft.com/v1.0/security/alerts/{id}](https://developer.microsoft.com/graph/graph-explorer?request=security/alerts/{id}&method=PATCH&version=v1.0&GraphUrl=https://graph.microsoft.com) |
+| List incidents | [List incidents](../api/security-list-incidents.md) | [https://graph.microsoft.com/v1.0/security/incidents](https://developer.microsoft.com/graph/graph-explorer?request=security/incidents&method=GET&version=v1.0&GraphUrl=https://graph.microsoft.com) |
+| List incidents with alerts| [List incidents](../api/security-list-incidents.md) | [https://graph.microsoft.com/v1.0/security/incidents?$expand=alerts](https://developer.microsoft.com/graph/graph-explorer?request=security/incidents?$expand=alerts&method=GET&version=v1.0&GraphUrl=https://graph.microsoft.com) |
+| Update incident | [Update incident](../api/security-incident-update.md) | [https://graph.microsoft.com/v1.0/security/incidents/{id}](https://developer.microsoft.com/graph/graph-explorer?request=security/incidents/{id}&method=PATCH&version=v1.0&GraphUrl=https://graph.microsoft.com) |
+| **eDiscovery**|||
+|List eDiscovery cases|[List eDiscoveryCases](../api/security-casesroot-list-ediscoverycases.md)|[https://graph.microsoft.com/v1.0/security/cases/eDiscoveryCases](https://developer.microsoft.com/graph/graph-explorer?request=security%2Fcases%2FeDiscoverycases&method=GET&version=v1.0&GraphUrl=https://graph.microsoft.com)|
+|List eDiscovery case operations|[List caseOperations](../api/security-ediscoverycase-list-operations.md)|[https://graph.microsoft.com/v1.0/security/cases/ediscoveryCases/{id}/operations](https://developer.microsoft.com/graph/graph-explorer?request=security%2Fcases%2FeDiscoverycases%2F%7Bid%7D%2Foperations&method=GET&version=v1.0&GraphUrl=https://graph.microsoft.com)|
+| **Legacy alerts**|||
| List alerts | [List alerts](../api/alert-list.md) | [https://graph.microsoft.com/v1.0/security/alerts](https://developer.microsoft.com/graph/graph-explorer?request=security/alerts&method=GET&version=v1.0&GraphUrl=https://graph.microsoft.com) | | Update alerts | [Update alert](../api/alert-update.md) | [https://graph.microsoft.com/v1.0/security/alerts/{alert-id}](https://developer.microsoft.com/graph/graph-explorer?request=security/alerts/{alert-id}&method=PATCH&version=v1.0&GraphUrl=https://graph.microsoft.com) |
-|List eDiscovery cases|[List eDiscoveryCases](../api/security-casesroot-list-ediscoverycases.md)|[https://graph.microsoft.com/beta/security/cases/eDiscoveryCases](https://developer.microsoft.com/graph/graph-explorer?request=security%2Fcases%2FeDiscoverycases&method=GET&version=v1.0&GraphUrl=https://graph.microsoft.com)|
-|List eDiscovery case operations|[List caseOperations](../api/security-ediscoverycase-list-operations.md)|[https://graph.microsoft.com/beta/security/cases/ediscoveryCases/{id}/operations](https://developer.microsoft.com/graph/graph-explorer?request=security%2Fcases%2FeDiscoverycases%2F%7Bid%7D%2Foperations&method=GET&version=v1.0&GraphUrl=https://graph.microsoft.com)|
+| **Secure scores**|||
|List secure scores|[List secureScores](../api/security-list-securescores.md) |[https://graph.microsoft.com/v1.0/security/secureScores](https://developer.microsoft.com/graph/graph-explorer?request=security/secureScores&method=GET&version=v1.0&GraphUrl=https://graph.microsoft.com)| |Get secure score|[Get secureScore](../api/securescore-get.md) |[https://graph.microsoft.com/v1.0/security/secureScores/{id}](https://developer.microsoft.com/graph/graph-explorer?request=security/secureScores/{id}&method=GET&version=v1.0&GraphUrl=https://graph.microsoft.com)| |List secure score control profiles|[List secureScoreControlProfiles](../api/security-list-securescorecontrolprofiles.md) |[https://graph.microsoft.com/v1.0/security/secureScoreControlProfiles](https://developer.microsoft.com/graph/graph-explorer?request=security/secureScoreControlProfiles&method=GET&version=v1.0&GraphUrl=https://graph.microsoft.com)| |Get secure score control profile|[Get secureScoreControlProfile](../api/securescorecontrolprofile-get.md) |[https://graph.microsoft.com/v1.0/security/secureScoreControlProfiles/{id}](https://developer.microsoft.com/graph/graph-explorer?request=security/secureScoreControlProfiles/{id}&method=GET&version=v1.0&GraphUrl=https://graph.microsoft.com)|
-|Update secure score control profiles|[Update secureScoreControlProfile](../api/securescorecontrolprofile-update.md) |[https://graph.microsoft.com/v1.0/security/secureScoreControlProfiles/{id}](https://developer.microsoft.com/graph/graph-explorer?request=security/secureScoreControlProfiles/{id}&method=PATCH&version=v1.0&GraphUrl=https://graph.microsoft.com)|
You can use Microsoft Graph [webhooks](/graph/webhooks) to subscribe to and receive notifications about updates to Microsoft Graph security entities.
v1.0 Security Caseoperation https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/security-caseoperation.md
Title: "caseOperation resource type"
-description: "An abstract entity that represents a long-running process."
+description: "An abstract entity that represents a long-running eDiscovery process."
ms.localizationpriority: medium ms.prod: "ediscovery"
doc_type: resourcePageType
Namespace: microsoft.graph.security --
-Inherits from [entity](../resources/entity.md).
-
-An abstract entity that represents a long-running eDiscovery process. It contains a common set of properties that are shared among inheriting entities. Entities that derive from **caseOperation** include:
+An abstract entity that represents a long-running eDiscovery process. It contains a common set of properties that are shared among inheriting entities. Entities that derive from **caseOperation** include:
- [Index operation](../resources/security-ediscoveryindexoperation.md) - [Hold operation](../resources/security-ediscoveryholdoperation.md)
An abstract entity that represents a long-running eDiscovery process. It contain
- [Add to review set operation](../resources/security-ediscoveryaddtoreviewsetoperation.md) - [Tag operation](../resources/security-ediscoverytagoperation.md)
+Inherits from [entity](../resources/entity.md).
+ ## Methods |Method|Return type|Description| |:|:|:|
An abstract entity that represents a long-running eDiscovery process. It contain
| applyTags | The operation represents bulk tagging documents in a review set for the specified review set query. | | contentExport | The operation represents a content export from a review set. | | convertToPdf | The operation represents converting documents to PDFs with redactions. |
-| estimateStatistics | The operation represents searching against Microsoft 365 services such as Exchange, SharePoint, and OneDrive for business. |
+| estimateStatistics | The operation represents searching against Microsoft 365 services such as Exchange, SharePoint, and OneDrive for Business. |
| holdUpdate | The operation represent updating legal hold (apply/remove) for custodians and non-custodial data sources. | index | The operation represents indexing data sources of custodians and non-custodial data sources to make them searchable. | | purgeData | The operation represents purging content from the source workloads. |
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.security.caseOperation",
- "id": "String (identifier)",
- "createdDateTime": "String (timestamp)",
+ "action": "String",
"completedDateTime": "String (timestamp)",
- "action": "String",
"createdBy": { "@odata.type": "microsoft.graph.identitySet" },
- "percentProgress": "Integer",
- "status": "String",
+ "createdDateTime": "String (timestamp)",
+ "id": "String (identifier)",
+ "percentProgress": "Int32",
"resultInfo": { "@odata.type": "microsoft.graph.resultInfo"
- }
+ },
+ "status": "String"
} ```
v1.0 Security Cloudapplicationevidence https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/security-cloudapplicationevidence.md
+
+ Title: "cloudApplicationEvidence resource type"
+description: "A cloud application that is reported in the alert."
Last updated : 11/11/2022+
+ms.localizationpriority: medium
++
+# cloudApplicationEvidence resource type
+
+Namespace: microsoft.graph.security
+
+A cloud application that is reported in the alert.
+
+Inherits from [alertEvidence](../resources/security-alertevidence.md).
+
+## Properties
+|Property|Type|Description|
+|:|:|:|
+|appId|Int64|Unique identifier of the application.|
+|displayName|String|Name of the application.|
+|instanceId|Int64|Identifier of the instance of the Software as a Service (SaaS) application.|
+|instanceName|String|Name of the instance of the SaaS application.|
+|saasAppId|Int64|The identifier of the SaaS application.|
+
+## Relationships
+None.
+
+## JSON representation
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.security.cloudApplicationEvidence"
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.security.cloudApplicationEvidence",
+ "createdDateTime": "String (timestamp)",
+ "verdict": "String",
+ "remediationStatus": "String",
+ "remediationStatusDetails": "String",
+ "roles": [
+ "String"
+ ],
+ "tags": [
+ "String"
+ ],
+ "appId": "Integer",
+ "displayName": "String",
+ "instanceId": "Integer",
+ "instanceName": "String",
+ "saasAppId": "Integer"
+}
+```
v1.0 Security Datasource https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/security-datasource.md
None.
|createdBy|[identitySet](../resources/identityset.md)|The user who created the **dataSource**.| |createdDateTime|DateTimeOffset|The date and time the **dataSource** was created.| |displayName|String|The display name of the **dataSource**. This will be the name of the SharePoint site.|
-|id|String| The ID of the **dataSource**. This is not the ID of the actual site.|
|holdStatus|microsoft.graph.security.dataSourceHoldStatus|The hold status of the **dataSource**.The possible values are: `notApplied`, `applied`, `applying`, `removing`, `partial`|
+|id|String| The ID of the **dataSource**. This is not the ID of the actual site.|
+ ## Relationships None.
v1.0 Security Datasourcecontainer https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/security-datasourcecontainer.md
None.
## Properties |Property|Type|Description| |:|:|:|
-|holdStatus|microsoft.graph.security.dataSourceHoldStatus|The hold status of the dataSourceContainer. The possible values are: `notApplied`, `applied`, `applying`, `removing`, `partial`|
|createdDateTime|DateTimeOffset|Created date and time of the dataSourceContainer entity.| |displayName|String|Display name of the dataSourceContainer entity.|
+|holdStatus|microsoft.graph.security.dataSourceHoldStatus|The hold status of the dataSourceContainer. The possible values are: `notApplied`, `applied`, `applying`, `removing`, `partial`|
|id|String|Unique identifier of the dataSourceContainer. Inherited from [entity](../resources/entity.md)| |lastModifiedDateTime|DateTimeOffset|Last modified date and time of the dataSourceContainer.| |releasedDateTime|DateTimeOffset|Date and time that the dataSourceContainer was released from the case.|
v1.0 Security Deviceevidence https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/security-deviceevidence.md
+
+ Title: "deviceEvidence resource type"
+description: "A device that is reported in the alert."
Last updated : 11/11/2022+
+ms.localizationpriority: medium
++
+# deviceEvidence resource type
+
+Namespace: microsoft.graph.security
+
+A device that is reported in the alert.
+
+Inherits from [alertEvidence](../resources/security-alertevidence.md).
+
+## Properties
+|Property|Type|Description|
+|:|:|:|
+|azureAdDeviceId|String|A unique identifier assigned to a device by Azure Active Directory (Azure AD) when device is Azure AD-joined.|
+|defenderAvStatus|[microsoft.graph.security.defenderAvStatus](#defenderavstatus-values)|State of the Defender AntiMalware engine. The possible values are: `notReporting`, `disabled`, `notUpdated`, `updated`, `unknown`, `notSupported`, `unknownFutureValue`.|
+|deviceDnsName|String|The fully qualified domain name (FQDN) for the device.|
+|firstSeenDateTime|DateTimeOffset|The date and time when the device was first seen.|
+|healthStatus|[microsoft.graph.security.deviceHealthStatus](#devicehealthstatus-values)|The health state of the device.The possible values are: `active`, `inactive`, `impairedCommunication`, `noSensorData`, `noSensorDataImpairedCommunication`, `unknown`, `unknownFutureValue`.|
+|loggedOnUsers|[microsoft.graph.security.loggedOnUser](../resources/security-loggedonuser.md) collection|Users that were logged on the machine during the time of the alert.|
+|mdeDeviceId|String|A unique identifier assigned to a device by Microsoft Defender for Endpoint.|
+|onboardingStatus|[microsoft.graph.security.onboardingStatus](#onboardingstatus-values)|The status of the machine onboarding to Microsoft Defender for Endpoint.The possible values are: `insufficientInfo`, `onboarded`, `canBeOnboarded`, `unsupported`, `unknownFutureValue`.|
+|osBuild|Int64|The build version for the operating system the device is running.|
+|osPlatform|String|The operating system platform the device is running.|
+|rbacGroupId|Int32|The ID of the role-based access control (RBAC) device group.|
+|rbacGroupName|String|The name of the RBAC device group.|
+|riskScore|[microsoft.graph.security.deviceRiskScore](#deviceriskscore-values)|Risk score as evaluated by Microsoft Defender for Endpoint. The possible values are: `none`, `informational`, `low`, `medium`, `high`, `unknownFutureValue`.|
+|version|String|The version of the operating system platform.|
+|vmMetadata|[microsoft.graph.security.vmMetadata](../resources/security-vmmetadata.md)|Metadata of the virtual machine (VM) on which Microsoft Defender for Endpoint is running.|
+
+### defenderAvStatus values
+
+| Member | Description |
+| :--| : |
+| notReporting | Defender AntiMalware engine is not reporting. |
+| disabled | Defender AntiMalware engine has been disabled. |
+| notUpdated | Defender AntiMalware engine is not up to date. |
+| updated | Defender AntiMalware engine is up to date. |
+| unknown | State of Defender AntiMalware engine is unknown. |
+| notSupported | Defender AntiMalware engine is not supported on this platform.|
+| unknownFutureValue | unknownFutureValue for evolvable enums pattern. |
++
+### deviceHealthStatus values
+
+| Member | Description |
+| :--| : |
+| active | Device is active and reporting to all channels. |
+| inactive | Device is not reporting to any channel. |
+| impairedCommunication | Device is not connected to the CnC. |
+| noSensorData | Device is not sending telemetry. |
+| noSensorDataImpairedCommunication | Device is not connected to the CnC and not sending telemetry. |
+| unknown | Device state is unknown |
+| unknownFutureValue | unknownFutureValue for evolvable enums pattern. |
+
+### deviceRiskScore values
+
+| Member | Description |
+| :--| : |
+| none | There are no alerts related to this device. |
+| informational | Device only has 'informational' level alerts. |
+| low | Device only has 'low' or 'informational' alerts. |
+| medium | Device has 'medium' or lower severity alerts. |
+| high | Device has 'high' severity alerts and is at risk. |
+| unknownFutureValue | unknownFutureValue for evolvable enums pattern. |
++
+### onboardingStatus values
+
+| Member | Description |
+| :--| : |
+| unknown | Unknown onboarding status |
+| insufficientInfo | Onboarding status cannot be determined. |
+| onboarded | Device is onboarded to service. |
+| canBeOnboarded | Device is eligible to be onboarded to service. |
+| unsupported | Device is not supported by service. |
+| unknownFutureValue | unknownFutureValue for evolvable enums pattern.|
++
+## Relationships
+None.
+
+## JSON representation
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.security.deviceEvidence"
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.security.deviceEvidence",
+ "createdDateTime": "String (timestamp)",
+ "verdict": "String",
+ "remediationStatus": "String",
+ "remediationStatusDetails": "String",
+ "roles": [
+ "String"
+ ],
+ "tags": [
+ "String"
+ ],
+ "firstSeenDateTime": "String (timestamp)",
+ "mdeDeviceId": "String",
+ "azureAdDeviceId": "String",
+ "deviceDnsName": "String",
+ "osPlatform": "String",
+ "osBuild": "Integer",
+ "version": "String",
+ "rbacGroupId": "Integer",
+ "rbacGroupName": "String",
+ "healthStatus": "String",
+ "riskScore": "String",
+ "onboardingStatus": "String",
+ "defenderAvStatus": "String",
+ "vmMetadata": {
+ "@odata.type": "microsoft.graph.security.vmMetadata"
+ },
+ "loggedOnUsers": [
+ {
+ "@odata.type": "microsoft.graph.security.loggedOnUser"
+ }
+ ]
+}
+```
v1.0 Security Ediscoverycustodian https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/security-ediscoverycustodian.md
In the context of eDiscovery, represents a user and all of their digital assets,
|createdDateTime|DateTimeOffset|Date and time when the custodian was added to the case.| |displayName|String|Display name of the custodian.| |email|String|Email address of the custodian.|
+|holdStatus|microsoft.graph.security.dataSourceHoldStatus|The hold status of the custodian.The possible values are: `notApplied`, `applied`, `applying`, `removing`, `partial`|
|id|String|The ID for the custodian in the specified case. Read-only.| |lastModifiedDateTime|DateTimeOffset|Date and time the custodian object was last modified| |releasedDateTime|DateTimeOffset|Date and time the custodian was released from the case.| |status|microsoft.graph.security.custodianStatus|Status of the custodian. Possible values are: `active`, `released`.|
-|holdStatus|microsoft.graph.security.dataSourceHoldStatus|The hold status of the custodian.The possible values are: `notApplied`, `applied`, `applying`, `removing`, `partial`|
+ ### custodianStatus values
v1.0 Security Ediscoveryestimateoperation https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/security-ediscoveryestimateoperation.md
Inherits from [caseOperation](../resources/security-caseoperation.md).
## Methods None.+ ## Properties |Property|Type|Description| |:|:|:|
v1.0 Security Ediscoverynoncustodialdatasource https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/security-ediscoverynoncustodialdatasource.md
Inherits from [dataSourceContainer](../resources/security-datasourcecontainer.md
|:|:|:| |createdDateTime|DateTimeOffset|Created date and time of the nonCustodialDataSource. Inherited from [microsoft.graph.security.datasourcecontainer](../resources/security-datasourcecontainer.md).| |displayName|String|Display name of the noncustodialDataSource. Inherited from [microsoft.graph.security.datasourcecontainer](../resources/security-datasourcecontainer.md).|
+|holdStatus|microsoft.graph.security.dataSourceHoldStatus|The hold status of the nonCustodialDataSource.The possible values are: `notApplied`, `applied`, `applying`, `removing`, `partial`|
|id|String|Unique identifier of the nonCustodialDataSource. Inherited from [entity](../resources/entity.md).| |lastModifiedDateTime|DateTimeOffset|Last modified date and time of the nonCustodialDataSource. Inherited from [microsoft.graph.security.datasourcecontainer](../resources/security-datasourcecontainer.md).| |releasedDateTime|DateTimeOffset|Date and time that the nonCustodialDataSource was released from the case. Inherited from [microsoft.graph.security.datasourcecontainer](../resources/security-datasourcecontainer.md).| |status|microsoft.graph.security.dataSourceContainerStatus|Latest status of the nonCustodialDataSource. Inherited from [microsoft.graph.security.datasourcecontainer](../resources/security-datasourcecontainer.md). Possible values are: `Active`, `Released`.|
-|holdStatus|microsoft.graph.security.dataSourceHoldStatus|The hold status of the nonCustodialDataSource.The possible values are: `notApplied`, `applied`, `applying`, `removing`, `partial`|
+ ## Relationships |Relationship|Type|Description|
v1.0 Security Emailsender https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/security-emailsender.md
+
+ Title: "emailSender resource type"
+description: "Email sender common properties."
Last updated : 11/11/2022+
+ms.localizationpriority: medium
++
+# emailSender resource type
+
+Namespace: microsoft.graph.security
+
+Email sender common properties.
+
+## Properties
+|Property|Type|Description|
+|:|:|:|
+|displayName|String|The name of the sender.|
+|domainName|String|Sender domain.|
+|emailAddress|String|Sender email address.|
+
+## Relationships
+None.
+
+## JSON representation
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.security.emailSender"
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.security.emailSender",
+ "emailAddress": "String",
+ "displayName": "String",
+ "domainName": "String"
+}
+```
+
v1.0 Security Filedetails https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/security-filedetails.md
+
+ Title: "fileDetails resource type"
+description: "File common properties."
Last updated : 11/11/2022+
+ms.localizationpriority: medium
++
+# fileDetails resource type
+
+Namespace: microsoft.graph.security
+
+File common properties.
+
+## Properties
+|Property|Type|Description|
+|:|:|:|
+|fileName|String|The name of the file.|
+|filePath|String|The file path (location) of the file instance. |
+|filePublisher|String|The publisher of the file.|
+|fileSize|Int64|The size of the file in bytes.|
+|issuer|String|The certificate authority (CA) that issued the certificate.|
+|sha1|String|The Sha1 cryptographic hash of the file content.|
+|sha256|String|The Sha256 cryptographic hash of the file content.|
+|signer|String|The signer of the signed file.|
+
+## Relationships
+None.
+
+## JSON representation
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.security.fileDetails"
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.security.fileDetails",
+ "sha1": "String",
+ "sha256": "String",
+ "fileName": "String",
+ "filePath": "String",
+ "fileSize": "Integer",
+ "filePublisher": "String",
+ "signer": "String",
+ "issuer": "String"
+}
+```
+
v1.0 Security Fileevidence https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/security-fileevidence.md
+
+ Title: "fileEvidence resource type"
+description: "A file that is reported in the alert as evidence."
Last updated : 11/11/2022+
+ms.localizationpriority: medium
+++
+# fileEvidence resource type
+
+Namespace: microsoft.graph.security
+
+A file that is reported in the alert as evidence.
+
+Inherits from [alertEvidence](../resources/security-alertevidence.md).
+
+## Properties
+|Property|Type|Description|
+|:|:|:|
+|detectionStatus|microsoft.graph.security.detectionStatus|The status of the detection.The possible values are: `detected`, `blocked`, `prevented`, `unknownFutureValue`.|
+|fileDetails|[microsoft.graph.security.fileDetails](../resources/security-filedetails.md)|The file details.|
+|mdeDeviceId|String|A unique identifier assigned to a device by Microsoft Defender for Endpoint.|
+
+## Relationships
+None.
+
+## JSON representation
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.security.fileEvidence"
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.security.fileEvidence",
+ "createdDateTime": "String (timestamp)",
+ "verdict": "String",
+ "remediationStatus": "String",
+ "remediationStatusDetails": "String",
+ "roles": [
+ "String"
+ ],
+ "tags": [
+ "String"
+ ],
+ "fileDetails": {
+ "@odata.type": "microsoft.graph.security.fileDetails"
+ },
+ "detectionStatus": "String",
+ "mdeDeviceId": "String"
+}
+```
v1.0 Security Huntingqueryresults https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/security-huntingqueryresults.md
+
+ Title: "huntingQueryResults resource type"
+description: "The results of the hunting query API"
Last updated : 11/11/2022+
+ms.localizationpriority: medium
++
+# huntingQueryResults resource type
+
+Namespace: microsoft.graph.security
+
+The results of running a [query for advanced hunting](../api/security-security-runhuntingquery.md).
+
+## Properties
+|Property|Type|Description|
+|:|:|:|
+|schema|[microsoft.graph.security.singlePropertySchema](../resources/security-singlepropertyschema.md) collection|The schema for the response.|
+|results|[microsoft.graph.security.huntingRowResult](../resources/security-huntingrowresult.md) collection|The results of the hunting query.|
+
+## JSON representation
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.security.huntingQueryResults"
+}
+-->
+``` json
+{
+ "schema": [{"@odata.type": "microsoft.graph.security.singlePropertySchema"}],
+ "results": [{"@odata.type": "microsoft.graph.security.huntingRowResult"}]
+}
+```
v1.0 Security Huntingrowresult https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/security-huntingrowresult.md
+
+ Title: "huntingRowResult resource type"
+description: "One row results of hunting query API"
Last updated : 11/11/2022+
+ms.localizationpriority: medium
++
+# huntingRowResult resource type
+
+Namespace: microsoft.graph.security
+
+Represents a row of the [results](../resources/security-huntingqueryresults.md) from running an [advanced hunting query](../api/security-security-runhuntingquery.md).
+
+The content of the results is depended on the submitted KQL query, see [KQL quick reference](/azure/data-explorer/kql-quick-reference).
++
+## JSON representation
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.security.huntingRowResult",
+ "openType": true
+}
+-->
+``` json
+{
+}
+```
v1.0 Security Incident https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/security-incident.md
+
+ Title: "incident resource type"
+description: "An incident in Microsoft 365 Defender is a collection of correlated alerts and associated metadata that reflects the story of an attack."
Last updated : 11/11/2022+
+ms.localizationpriority: medium
++
+# incident resource type
+
+Namespace: microsoft.graph.security
+
+An incident in Microsoft 365 Defender is a collection of correlated [alert](../resources/security-alert.md) instances and associated metadata that reflects the story of an attack in a tenant.
+
+Microsoft 365 services and apps create alerts when they detect a suspicious or malicious event or activity. Individual alerts provide valuable clues about a completed or ongoing attack. However, attacks typically employ various techniques against different types of entities, such as devices, users, and mailboxes. The result is multiple alerts for multiple entities in your tenant.
+Because piecing the individual alerts together to gain insight into an attack can be challenging and time-consuming, Microsoft 365 Defender automatically aggregates the alerts and their associated information into an incident.
+
+## Methods
+|Method|Return type|Description|
+|:|:|:|
+|[List incidents](../api/security-list-incidents.md)|[microsoft.graph.security.incident](../resources/security-incident.md) collection|Get a list of [incident](../resources/security-incident.md) objects that Microsoft 365 Defender has created to track attacks in an organization.|
+|[Get incident](../api/security-incident-get.md)|[microsoft.graph.security.incident](../resources/security-incident.md)|Read the properties and relationships of an [incident](../resources/security-incident.md) object.|
+|[Update incident](../api/security-incident-update.md)|[microsoft.graph.security.incident](../resources/security-incident.md)|Update the properties of an [incident](../resources/security-incident.md) object.|
+|[Create comment for incident](../api/security-incident-post-comments.md)| [alertComment](../resources/security-alertcomment.md) | Create a comment for an existing [incident](../resources/security-incident.md) based on the specified incident **id** property.|
++
+## Properties
+|Property|Type|Description|
+|:|:|:|
+|assignedTo|String|Owner of the incident, or null if no owner is assigned. Free editable text.|
+|classification|microsoft.graph.security.alertClassification|The specification for the incident. Possible values are: `unknown`, `falsePositive`, `truePositive`, `informationalExpectedActivity`, `unknownFutureValue`.|
+|comments|[microsoft.graph.security.alertComment](security-alertcomment.md) collection|Array of comments created by the Security Operations (SecOps) team when the incident is managed.|
+|createdDateTime|DateTimeOffset|Time when the incident was first created.|
+|customTags|String collection|Array of custom tags associated with an incident.|
+|determination|microsoft.graph.security.alertDetermination|Specifies the determination of the incident. Possible values are: `unknown`, `apt`, `malware`, `securityPersonnel`, `securityTesting`, `unwantedSoftware`, `other`, `multiStagedAttack`, `compromisedUser`, `phishing`, `maliciousUserActivity`, `clean`, `insufficientData`, `confirmedUserActivity`, `lineOfBusinessApplication`, `unknownFutureValue`.|
+|displayName|String|The incident name.|
+|id|String|Unique identifier to represent the incident.|
+|incidentWebUrl|String|The URL for the incident page in the Microsoft 365 Defender portal.|
+|lastUpdateDateTime|DateTimeOffset|Time when the incident was last updated.|
+|redirectIncidentId|String|Only populated in case an incident is grouped together with another incident, as part of the logic that processes incidents. In such a case, the **status** property is `redirected`. |
+|severity|alertSeverity|Indicates the possible impact on assets. The higher the severity, the bigger the impact. Typically higher severity items require the most immediate attention. Possible values are: `unknown`, `informational`, `low`, `medium`, `high`, `unknownFutureValue`.|
+|status|[microsoft.graph.security.incidentStatus](#incidentstatus-values)|The status of the incident. Possible values are: `active`, `resolved`, `inProgress`, `redirected`, `unknownFutureValue`.|
+|tenantId|String|The Azure Active Directory tenant in which the alert was created.|
+++
+### incidentStatus values
+
+| Member | Description |
+| :-| :-- |
+| active | The incident is in active state. |
+| resolved | The incident is in resolved state. |
+| inProgress | The incident is in mitigation progress. |
+| redirected | The incident was merged with another incident. The target incident ID appears in the **redirectIncidentId** property. |
+| unknownFutureValue | Evolvable enumeration sentinel value. Do not use. |
+++
+## Relationships
+|Relationship|Type|Description|
+|:|:|:|
+|alerts|[microsoft.graph.security.alert](security-alert.md) collection|The list of related alerts. Supports `$expand`.|
+
+## JSON representation
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "keyProperty": "id",
+ "@odata.type": "microsoft.graph.security.incident",
+ "baseType": "microsoft.graph.entity",
+ "openType": false
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.security.incident",
+ "id": "String (identifier)",
+ "incidentWebUrl": "String",
+ "tenantId": "String",
+ "redirectIncidentId": "String",
+ "displayName": "String",
+ "createdDateTime": "String (timestamp)",
+ "lastUpdateDateTime": "String (timestamp)",
+ "assignedTo": "String",
+ "classification": "String",
+ "determination": "String",
+ "status": "String",
+ "severity": "String",
+ "customTags": [
+ "String"
+ ],
+ "comments": [
+ {
+ "@odata.type": "microsoft.graph.security.alertComment"
+ }
+ ]
+}
+```
+
+<!--
+{
+ "type": "#page.annotation",
+ "namespace": "microsoft.graph.security"
+}
+-->
v1.0 Security Ipevidence https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/security-ipevidence.md
+
+ Title: "ipEvidence resource type"
+description: "An IP Address that is reported in the alert as evidence."
Last updated : 11/11/2022+
+ms.localizationpriority: medium
+++
+# ipEvidence resource type
+
+Namespace: microsoft.graph.security
+
+An IP Address that is reported in the alert as evidence.
+
+Inherits from [alertEvidence](../resources/security-alertevidence.md).
+
+## Properties
+|Property|Type|Description|
+|:|:|:|
+|countryLetterCode|String|The two-letter country code according to ISO 3166 format, for example: `US`, `UK`, `CA`, etc..).|
+|ipAddress|String|The value of the IP Address, can be either in V4 address or V6 address format.|
++
+## Relationships
+None.
+
+## JSON representation
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.security.ipEvidence"
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.security.ipEvidence",
+ "createdDateTime": "String (timestamp)",
+ "verdict": "String",
+ "remediationStatus": "String",
+ "remediationStatusDetails": "String",
+ "roles": [
+ "String"
+ ],
+ "tags": [
+ "String"
+ ],
+ "ipAddress": "String",
+ "countryLetterCode": "String"
+}
+```
v1.0 Security Loggedonuser https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/security-loggedonuser.md
+
+ Title: "loggedOnUser resource type"
+description: "User that was loggen on the machine during the time of the alert."
Last updated : 11/11/2022+
+ms.localizationpriority: medium
++
+# loggedOnUser resource type
+
+Namespace: microsoft.graph.security
+
+User that was loggen on the machine during the time of the alert.
+
+## Properties
+|Property|Type|Description|
+|:|:|:|
+|accountName|String|User account name of the logged-on user.|
+|domainName|String|User account domain of the logged-on user.|
+
+## Relationships
+None.
+
+## JSON representation
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.security.loggedOnUser"
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.loggedOnUser",
+ "accountName": "String",
+ "domainName": "String"
+}
+```
v1.0 Security Mailboxevidence https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/security-mailboxevidence.md
+
+ Title: "mailboxEvidence resource type"
+description: "A mailbox that is reported in the alert as evidence."
Last updated : 11/11/2022+
+ms.localizationpriority: medium
++
+# mailboxEvidence resource type
+
+Namespace: microsoft.graph.security
+
+A mailbox that is reported in the alert as evidence.
+
+Inherits from [alertEvidence](../resources/security-alertevidence.md).
+
+## Properties
+|Property|Type|Description|
+|:|:|:|
+|displayName|String|The name associated with the mailbox.|
+|primaryAddress|String|The primary email address of the mailbox.|
+|userAccount|[microsoft.graph.security.userAccount](../resources/security-useraccount.md)|The user account of the mailbox.|
+
+## Relationships
+None.
+
+## JSON representation
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.security.mailboxEvidence"
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.security.mailboxEvidence",
+ "createdDateTime": "String (timestamp)",
+ "verdict": "String",
+ "remediationStatus": "String",
+ "remediationStatusDetails": "String",
+ "roles": [
+ "String"
+ ],
+ "tags": [
+ "String"
+ ],
+ "primaryAddress": "String",
+ "displayName": "String",
+ "userAccount": {
+ "@odata.type": "microsoft.graph.security.userAccount"
+ }
+}
+```
v1.0 Security Mailclusterevidence https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/security-mailclusterevidence.md
+
+ Title: "mailClusterEvidence resource type"
+description: "A mail cluster that is reported in the alert as evidence."
Last updated : 11/11/2022+
+ms.localizationpriority: medium
+
+# mailClusterEvidence resource type
+
+Namespace: microsoft.graph.security
+
+A group or cluster of emails that is created or identified based on a machine learning or AI model in relation to a malicious email that is reported in the alert as evidence.
+The mail cluster is suspicious and the emails may be malicious and if so are expected to be remediated.
+
+Inherits from [alertEvidence](../resources/security-alertevidence.md).
+
+## Properties
+|Property|Type|Description|
+|:|:|:|
+|clusterBy|String|The clustering logic of the emails inside the cluster.|
+|clusterByValue|String|The value utilized to cluster the similar emails.|
+|emailCount|Int64|Count of emails in the email cluster.|
+|networkMessageIds|String collection|Unique identifiers for the emails in the cluster, generated by Microsoft 365.|
+|query|String|The query used to identify the email cluster.|
+|urn|String|Uniform resource name (URN) of the automated investigation where the cluster was identified.|
+
+## Relationships
+None.
+
+## JSON representation
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.security.mailClusterEvidence"
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.security.mailClusterEvidence",
+ "createdDateTime": "String (timestamp)",
+ "verdict": "String",
+ "remediationStatus": "String",
+ "remediationStatusDetails": "String",
+ "roles": [
+ "String"
+ ],
+ "tags": [
+ "String"
+ ],
+ "clusterBy": "String",
+ "clusterByValue": "String",
+ "query": "String",
+ "urn": "String",
+ "emailCount": "Integer",
+ "networkMessageIds": [
+ "String"
+ ]
+}
+```
+
v1.0 Security Oauthapplicationevidence https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/security-oauthapplicationevidence.md
+
+ Title: "oauthApplicationEvidence resource type"
+description: "An OAuth application that is reported in the alert as evidence."
Last updated : 11/11/2022+
+ms.localizationpriority: medium
++
+# oauthApplicationEvidence resource type
+
+Namespace: microsoft.graph.security
+
+An OAuth application that is reported in the alert.
+
+Inherits from [alertEvidence](../resources/security-alertevidence.md).
+
+## Properties
+|Property|Type|Description|
+|:|:|:|
+|appId|String|Unique identifier of the application.|
+|displayName|String|Name of the application.|
+|objectId|String|The unique identifier of the application object in Azure AD.|
+|publisher|String|The name of the application publisher.|
+
+## Relationships
+None.
+
+## JSON representation
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.security.oauthApplicationEvidence"
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.security.oauthApplicationEvidence",
+ "createdDateTime": "String (timestamp)",
+ "verdict": "String",
+ "remediationStatus": "String",
+ "remediationStatusDetails": "String",
+ "roles": [
+ "String"
+ ],
+ "tags": [
+ "String"
+ ],
+ "appId": "String",
+ "displayName": "String",
+ "objectId": "String",
+ "publisher": "String"
+}
+```
v1.0 Security Processevidence https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/security-processEvidence.md
+
+ Title: "processEvidence resource type"
+description: "A process that is reported in the alert as evidence."
Last updated : 11/11/2022+
+ms.localizationpriority: medium
++
+# processEvidence resource type
+
+Namespace: microsoft.graph.security
+
+A process that is reported in the alert as evidence.
+
+Inherits from [alertEvidence](../resources/security-alertevidence.md).
+
+## Properties
+|Property|Type|Description|
+|:|:|:|
+|detectionStatus|microsoft.graph.security.detectionStatus|The status of the detection.The possible values are: `detected`, `blocked`, `prevented`, `unknownFutureValue`.|
+|imageFile|[microsoft.graph.security.fileDetails](../resources/security-filedetails.md)|Image file details.|
+|mdeDeviceId|String|A unique identifier assigned to a device by Microsoft Defender for Endpoint.|
+|parentProcessCreationDateTime|DateTimeOffset|Date and time when the parent of the process was created.|
+|parentProcessId|Int64|Process ID (PID) of the parent process that spawned the process.|
+|parentProcessImageFile|[microsoft.graph.security.fileDetails](../resources/security-filedetails.md)|Parent process image file details.|
+|processCommandLine|String|Command line used to create the new process.|
+|processCreationDateTime|DateTimeOffset|Date and time the process was created.|
+|processId|Int64|Process ID (PID) of the newly created process.|
+|userAccount|[microsoft.graph.security.userAccount](../resources/security-useraccount.md)|User details of the user that ran the process.|
+
+## Relationships
+None.
+
+## JSON representation
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.security.processEvidence"
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.security.processEvidence",
+ "createdDateTime": "String (timestamp)",
+ "verdict": "String",
+ "remediationStatus": "String",
+ "remediationStatusDetails": "String",
+ "roles": [
+ "String"
+ ],
+ "tags": [
+ "String"
+ ],
+ "processId": "Integer",
+ "parentProcessId": "Integer",
+ "processCommandLine": "String",
+ "processCreationDateTime": "String (timestamp)",
+ "parentProcessCreationDateTime": "String (timestamp)",
+ "detectionStatus": "String",
+ "mdeDeviceId": "String",
+ "imageFile": {
+ "@odata.type": "microsoft.graph.security.fileDetails"
+ },
+ "parentProcessImageFile": {
+ "@odata.type": "microsoft.graph.security.fileDetails"
+ },
+ "userAccount": {
+ "@odata.type": "microsoft.graph.security.userAccount"
+ }
+}
+```
v1.0 Security Registrykeyevidence https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/security-registrykeyevidence.md
+
+ Title: "registryKeyEvidence resource type"
+description: "A registry key that is reported in the alert as evidence."
Last updated : 11/11/2022+
+ms.localizationpriority: medium
++
+# registryKeyEvidence resource type
+
+Namespace: microsoft.graph.security
+
+A registry key that is reported in the alert as evidence.
+
+Inherits from [alertEvidence](../resources/security-alertevidence.md).
+
+## Properties
+|Property|Type|Description|
+|:|:|:|
+|registryHive|String|Registry hive of the key that the recorded action was applied to.|
+|registryKey|String|Registry key that the recorded action was applied to.|
+
+## Relationships
+None.
+
+## JSON representation
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.security.registryKeyEvidence"
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.security.registryKeyEvidence",
+ "createdDateTime": "String (timestamp)",
+ "verdict": "String",
+ "remediationStatus": "String",
+ "remediationStatusDetails": "String",
+ "roles": [
+ "String"
+ ],
+ "tags": [
+ "String"
+ ],
+ "registryKey": "String",
+ "registryHive": "String"
+}
+```
v1.0 Security Registryvalueevidence https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/security-registryvalueevidence.md
+
+ Title: "registryValueEvidence resource type"
+description: "A registry value that is reported in the alert as evidence."
Last updated : 11/11/2022+
+ms.localizationpriority: medium
++
+# registryValueEvidence resource type
+
+Namespace: microsoft.graph.security
+
+A registry value that is reported in the alert as evidence.
+
+Inherits from [alertEvidence](../resources/security-alertevidence.md).
+
+## Properties
+|Property|Type|Description|
+|:|:|:|
+|registryHive|String|Registry hive of the key that the recorded action was applied to.|
+|registryKey|String|Registry key that the recorded action was applied to.|
+|registryValue|String|Data of the registry value that the recorded action was applied to.|
+|registryValueName|String|Name of the registry value that the recorded action was applied to.|
+|registryValueType|String|Data type, such as binary or string, of the registry value that the recorded action was applied to.|
+
+## Relationships
+None.
+
+## JSON representation
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.security.registryValueEvidence"
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.security.registryValueEvidence",
+ "createdDateTime": "String (timestamp)",
+ "verdict": "String",
+ "remediationStatus": "String",
+ "remediationStatusDetails": "String",
+ "roles": [
+ "String"
+ ],
+ "tags": [
+ "String"
+ ],
+ "registryKey": "String",
+ "registryHive": "String",
+ "registryValue": "String",
+ "registryValueName": "String",
+ "registryValueType": "String"
+}
+```
v1.0 Security Securitygroupevidence https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/security-securitygroupevidence.md
+
+ Title: "securityGroupEvidence resource type"
+description: "A security group that is reported in the alert as evidence."
Last updated : 11/11/2022+
+ms.localizationpriority: medium
++
+# securityGroupEvidence resource type
+
+Namespace: microsoft.graph.security
+
+A security group that is reported in the alert as evidence.
+
+Inherits from [alertEvidence](../resources/security-alertevidence.md).
+
+## Properties
+|Property|Type|Description|
+|:|:|:|
+|displayName|String|The name of the security group.|
+|securityGroupId|String|Unique identifier of the security group.|
+
+## Relationships
+None.
+
+## JSON representation
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.security.securityGroupEvidence"
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.security.securityGroupEvidence",
+ "createdDateTime": "String (timestamp)",
+ "verdict": "String",
+ "remediationStatus": "String",
+ "remediationStatusDetails": "String",
+ "roles": [
+ "String"
+ ],
+ "tags": [
+ "String"
+ ],
+ "securityGroupId": "String",
+ "displayName": "String"
+}
+```
v1.0 Security Singlepropertyschema https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/security-singlepropertyschema.md
+
+ Title: "singlePropertySchema resource type"
+description: "The schema of one property from the results of hunting query API"
Last updated : 11/11/2022+
+ms.localizationpriority: medium
++
+# singlePropertySchema resource type
+
+Namespace: microsoft.graph.security
+
+The schema of one property in the results of running an [advanced hunting query](../api/security-security-runhuntingquery.md).
+
+## Properties
+|Property|Type|Description|
+|:|:|:|
+|name|String|The name of the property.|
+|type|String|The type of the property.|
+
+## JSON representation
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.security.singlePropertySchema"
+}
+-->
+``` json
+{
+ "Name": "Timestamp",
+ "Type": "DateTime"
+}
+```
v1.0 Security Unifiedgroupsource https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/security-unifiedgroupsource.md
None.
|createdBy|[identitySet](../resources/identityset.md)|The user who created the **unifiedGroupSource**.| |createdDateTime|DateTimeOffset|The date and time the **unifiedGroupSource** was created.| |displayName|String|The display name of the unified group, which is the name of the group.|
+|holdStatus|microsoft.graph.security.dataSourceHoldStatus|The hold status of the **unifiedGroupSource**. The possible values are: `notApplied`, `applied`, `applying`, `removing`, `partial`|
|id|String|The ID of the **unifiedGroupSource**. This is not the ID of the actual group.| |includedSources|microsoft.graph.security.sourceType|Specifies which sources are included in this group. Possible values are: `mailbox`, `site`.|
-|holdStatus|microsoft.graph.security.dataSourceHoldStatus|The hold status of the **unifiedGroupSource**. The possible values are: `notApplied`, `applied`, `applying`, `removing`, `partial`|
+ ### sourceType values |Member|Description|
v1.0 Security Urlevidence https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/security-urlevidence.md
+
+ Title: "urlEvidence resource type"
+description: "A url that is reported in the alert as evidence."
Last updated : 11/11/2022+
+ms.localizationpriority: medium
++
+# urlEvidence resource type
+
+Namespace: microsoft.graph.security
+
+A URL that is reported in the alert as evidence.
+
+Inherits from [alertEvidence](../resources/security-alertevidence.md).
+
+## Properties
+|Property|Type|Description|
+|:|:|:|
+|url|String|The Unique Resource Locator (URL).|
+
+## Relationships
+None.
+
+## JSON representation
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.security.urlEvidence"
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.security.urlEvidence",
+ "createdDateTime": "String (timestamp)",
+ "verdict": "String",
+ "remediationStatus": "String",
+ "remediationStatusDetails": "String",
+ "roles": [
+ "String"
+ ],
+ "tags": [
+ "String"
+ ],
+ "url": "String"
+}
+```
v1.0 Security Useraccount https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/security-useraccount.md
+
+ Title: "userAccount resource type"
+description: "User account common properties."
Last updated : 11/11/2022+
+ms.localizationpriority: medium
++
+# userAccount resource type
+
+Namespace: microsoft.graph.security
+
+User account common properties.
+
+## Properties
+|Property|Type|Description|
+|:|:|:|
+|accountName|String|The user account's displayed name.|
+|azureAdUserId|String|The user object identifier in Azure AD.|
+|domainName|String|The name of the Active Directory domain of which the user is a member.|
+|userPrincipalName|String|The user principal name of the account in Azure AD.|
+|userSid|String|The local security identifier of the user account.|
+
+## Relationships
+None.
+
+## JSON representation
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.security.userAccount"
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.security.userAccount",
+ "accountName": "String",
+ "domainName": "String",
+ "userSid": "String",
+ "azureAdUserId": "String",
+ "userPrincipalName": "String"
+}
+```
v1.0 Security Userevidence https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/security-userevidence.md
+
+ Title: "userEvidence resource type"
+description: "A user that is reported in the alert as evidence."
Last updated : 11/11/2022+
+ms.localizationpriority: medium
++
+# userEvidence resource type
+
+Namespace: microsoft.graph.security
+
+A user that is reported in the alert as evidence.
+
+Inherits from [alertEvidence](../resources/security-alertevidence.md).
+
+## Properties
+|Property|Type|Description|
+|:|:|:|
+|userAccount|[microsoft.graph.security.userAccount](../resources/security-useraccount.md)|The user account details.|
+
+## Relationships
+None.
+
+## JSON representation
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.security.userEvidence"
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.security.userEvidence",
+ "createdDateTime": "String (timestamp)",
+ "verdict": "String",
+ "remediationStatus": "String",
+ "remediationStatusDetails": "String",
+ "roles": [
+ "String"
+ ],
+ "tags": [
+ "String"
+ ],
+ "userAccount": {
+ "@odata.type": "microsoft.graph.security.userAccount"
+ }
+}
+```
v1.0 Security Usersource https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/security-usersource.md
None.
|createdDateTime|DateTimeOffset|The date and time the **userSource** was created.| |displayName|String|The display name associated with the mailbox and site.| |email|String|Email address of the user's mailbox.|
+|holdStatus|microsoft.graph.security.dataSourceHoldStatus|The hold status of the **userSource**. The possible values are: `notApplied`, `applied`, `applying`, `removing`, `partial`.|
|id|String|The ID of the **userSource**. This is not the ID of the actual group.| |includedSources|microsoft.graph.security.sourceType|Specifies which sources are included in this group. Possible values are: `mailbox`, `site`.| |siteWebUrl|String|The URL of the user's OneDrive for Business site. Read-only.|
-|holdStatus|microsoft.graph.security.dataSourceHoldStatus|The hold status of the **userSource**. The possible values are: `notApplied`, `applied`, `applying`, `removing`, `partial`.|
+ ### userSourceHoldStatus values
v1.0 Security Vmmetadata https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/security-vmmetadata.md
+
+ Title: "vmMetadata resource type"
+description: "Metadata of the Virtual Machine (VM) Microsoft Defender for Endpoint is running on."
Last updated : 11/11/2022+
+ms.localizationpriority: medium
++
+# vmMetadata resource type
+
+Namespace: microsoft.graph.security
+
+Metadata of the virtual machine (VM) Microsoft Defender for Endpoint is running on.
+
+## Properties
+|Property|Type|Description|
+|:|:|:|
+|cloudProvider|[microsoft.graph.security.vmCloudProvider](#vmcloudprovider-values)|The cloud provider hosting the virtual machine. The possible values are: `unknown`, `azure`, `unknownFutureValue`.|
+|resourceId|String|Unique identifier of the Azure resource.|
+|subscriptionId|String|Unique identifier of the Azure subscription the customer tenant belongs to.|
+|vmId|String|Unique identifier of the virtual machine instance.|
++
+### vmCloudProvider values
+
+| Member | Description |
+| :--| : |
+| unknown | Unknown provider. |
+| azure | The virtual machine is hosted in the Microsoft Azure cloud. |
+| unknownFutureValue | Evolvable enumeration sentinel value. Do not use.|
++
+## Relationships
+None.
+
+## JSON representation
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.security.vmMetadata"
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.security.vmMetadata",
+ "vmId": "String",
+ "cloudProvider": "String",
+ "resourceId": "String",
+ "subscriptionId": "String"
+}
+```
v1.0 Security https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/security.md
The security resource is the entry point for the Security object model. It retur
| Method | Return Type | Description | |:-|:|:|
-| [List alerts](../api/alert-list.md) | [alert](alert.md) collection | Get a alert object collection. |
-| [get alerts](../api/alert-get.md) | [alert](alert.md) collection | Get a alert object. |
-| [Update alerts](../api/alert-update.md) | [alert](alert.md) collection | Get a alert object. |
+|[runHuntingQuery](../api/security-security-runhuntingquery.md)|[microsoft.graph.security.huntingQueryResults](../resources/security-huntingqueryresults.md)|Queries a specified set of event, activity, or entity data supported by Microsoft 365 Defender to proactively look for specific threats in your environment.|
+ ## Properties None
None
| Relationship | Type | Description | |:-|:|:| |alerts|[alert](alert.md) collection| Read-only. Nullable.|
+|alerts_v2 | [microsoft.graph.security.alert](security-alert.md) collection | A collection of alerts in Microsoft 365 Defender.|
+|incidents | [microsoft.graph.security.incident](security-incident.md) collection | A collection of incidents in Microsoft 365 Defender, each of which is a set of correlated alerts and associated metadata that reflects the story of an attack.|
## JSON representation
v1.0 Selfsignedcertificate https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/selfsignedcertificate.md
Property|Type|Description
|customKeyIdentifier|Binary| Custom key identifier. | | displayName | String | The friendly name for the key. | |endDateTime|DateTimeOffset|The date and time at which the credential expires. 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`.|
+|key|Binary| The value for the key credential. Should be a Base-64 encoded value. |
|keyId|Guid|The unique identifier (GUID) for the key.| |startDateTime|DateTimeOffset|The date and time at which the credential becomes valid. 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`. | |type|String|The type of key credential. "AsymmetricX509Cert".| |usage|String|A string that describes the purpose for which the key can be used. The possible value is `Verify`.|
-|key|Binary| The value for the key credential. Should be a Base-64 encoded value. |
|thumbprint| String | The thumbprint value for the key.| ## JSON representation
v1.0 Serviceannouncement https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/serviceannouncement.md
A top-level container for service communications resources.
|[List issues](../api/serviceannouncement-list-issues.md)|[serviceHealthIssue](../resources/servicehealthissue.md) collection|Get the serviceHealthIssue resources from the issues navigation property.| |[List messages](../api/serviceannouncement-list-messages.md)|[serviceUpdateMessage](../resources/serviceupdatemessage.md) collection|Get the serviceUpdateMessage resources from the messages navigation property.| + ## Properties None. ## Relationships |Relationship|Type|Description| |-|-|-|
-|messages|Collection([serviceUpdateMessage](serviceupdatemessage.md))|A collection of service messages for tenant. This property is a contained navigation property, it is nullable and readonly.|
|healthOverviews|Collection([serviceHealth](servicehealth.md))|A collection of service health information for tenant. This property is a contained navigation property, it is nullable and readonly.| |issues|Collection([serviceHealthIssue](servicehealthissue.md))|A collection of service issues for tenant. This property is a contained navigation property, it is nullable and readonly.|
+|messages|Collection([serviceUpdateMessage](serviceupdatemessage.md))|A collection of service messages for tenant. This property is a contained navigation property, it is nullable and readonly.|
## JSON representation The following is a JSON representation of the resource.
v1.0 Serviceplaninfo https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/serviceplaninfo.md
Contains information about a service plan associated with a subscribed SKU. The
## Properties | Property | Type |Description| |:|:--|:-|
+|appliesTo|String|The object the service plan can be assigned to. The possible values are:<br/>`User` - service plan can be assigned to individual users.<br/>`Company` - service plan can be assigned to the entire tenant.|
+|provisioningStatus|String|The provisioning status of the service plan. The possible values are:<br/>`Success` - Service is fully provisioned.<br/>`Disabled` - Service has been disabled.<br/>`ErrorStatus` - The service plan has not been provisioned and is in an error state.<br/>`PendingInput` - Service is not yet provisioned; awaiting service confirmation.<br/>`PendingActivation` - Service is provisioned but requires explicit activation by administrator (for example, Intune_O365 service plan)<br/>`PendingProvisioning` - Microsoft has added a new service to the product SKU and it has not been activated in the tenant, yet.|
|servicePlanId|Guid|The unique identifier of the service plan.| |servicePlanName|String|The name of the service plan.|
-|provisioningStatus|String|The provisioning status of the service plan. The possible values are:<br/>`Success` - Service is fully provisioned.<br/>`Disabled` - Service has been disabled.<br/>`ErrorStatus` - The service plan has not been provisioned and is in an error state.<br/>`PendingInput` - Service is not yet provisioned; awaiting service confirmation.<br/>`PendingActivation` - Service is provisioned but requires explicit activation by administrator (for example, Intune_O365 service plan)<br/>`PendingProvisioning` - Microsoft has added a new service to the product SKU and it has not been activated in the tenant, yet.|
-|appliesTo|String|The object the service plan can be assigned to. The possible values are:<br/>`User` - service plan can be assigned to individual users.<br/>`Company` - service plan can be assigned to the entire tenant.|
+ ## JSON representation
v1.0 Sharepointidentityset https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/sharepointidentityset.md
For usage information, see [driveItem][].
| device | [identity][] | The device associated with this action. Optional. | | group | [identity][] | The group associated with this action. Optional. | | user | [identity][] | The user associated with this action. Optional. |
-| siteUser | [sharePointIdentity][] | The SharePoint user associated with this action. Optional. |
| siteGroup | [sharePointIdentity][] | The SharePoint group associated with this action. Optional. |
+| siteUser | [sharePointIdentity][] | The SharePoint user associated with this action. Optional. |
## JSON representation
v1.0 Sharinglink https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/sharinglink.md
Here is a JSON representation of the resource.
| Property | Type | Description |:|:--|:- | application | [identity][] | The app the link is associated with.
-| type | String | The type of the link created.
-| scope | String | The scope of the link represented by this permission. Value `anonymous` indicates the link is usable by anyone, `organization` indicates the link is only usable for users signed into the same tenant.
| preventsDownload | Boolean | If true then the user can only use this link to view the item on the web, and cannot use it to download the contents of the item. Only for OneDrive for Business and SharePoint.
+| scope | String | The scope of the link represented by this permission. Value `anonymous` indicates the link is usable by anyone, `organization` indicates the link is only usable for users signed into the same tenant.
+| type | String | The type of the link created.
| webHtml | String | For `embed` links, this property contains the HTML code for an `<iframe>` element that will embed the item in a webpage. | webUrl | String | A URL that opens the item in the browser on the OneDrive website.
v1.0 Shiftactivity https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/shiftactivity.md
Represents an activity in a [shift](shift.md).
## Properties | Property | Type | Description | ||-||
-| isPaid | `bool` | Indicates whether the `microsoft.graph.user` should be paid for the activity during their `shift`. Required. |
-| startDateTime | `DateTimeOffset` | The start date and time for the `shiftActivity`. 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`. Required. |
-| endDateTime | `DateTimeOffset` | The end date and time for the `shiftActivity`. 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`. Required. |
| code | `string` | Customer defined code for the `shiftActivity`. Required. | | displayName | `string` | The name of the `shiftActivity`. Required. |
+| endDateTime | `DateTimeOffset` | The end date and time for the `shiftActivity`. 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`. Required. |
+| isPaid | `bool` | Indicates whether the `microsoft.graph.user` should be paid for the activity during their `shift`. Required. |
+| startDateTime | `DateTimeOffset` | The start date and time for the `shiftActivity`. 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`. Required. |
+ ## JSON representation
v1.0 Shiftitem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/shiftitem.md
Represents a version of a [shift](shift.md).
## Properties | Property | Type | Description | ||-||
-| notes | string | The shift notes for the `shiftItem`. |
+| activities | [shiftActivity](shiftactivity.md) collection | An incremental part of a shift which can cover details of when and where an employee is during their shift. For example, an assignment or a scheduled break or lunch. Required. |
| displayName | string | The shift label of the `shiftItem`. |
-| startDateTime | DateTimeOffset | The start date and time for the `shiftItem`. 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`. Required. |
| endDateTime | DateTimeOffset | The end date and time for the `shiftItem`. Required. 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`. |
+| notes | string | The shift notes for the `shiftItem`. |
+| startDateTime | DateTimeOffset | The start date and time for the `shiftItem`. 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`. Required. |
| theme | scheduleEntityTheme | Supported colors: white; blue; green; purple; pink; yellow; gray; darkBlue; darkGreen; darkPurple; darkPink; darkYellow. |
-| activities | [shiftActivity](shiftactivity.md) collection | An incremental part of a shift which can cover details of when and where an employee is during their shift. For example, an assignment or a scheduled break or lunch. Required. |
+ ## JSON representation
v1.0 Shiftpreferences https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/shiftpreferences.md
Represents a user's availability to be assigned shifts in the [schedule](schedul
|Property |Type |Description | |--||-|
-| id | `Edm.String` | The identifier of the entity. |
-| @odata.etag | `Edm.String` | The change key for the entity. |
| availability | [shiftAvailability](shiftavailability.md) collection | Availability of the user to be scheduled for work and its recurrence pattern. | | createdDateTime | `Edm.DateTimeOffset` | Timestamp corresponding to when the entity was created. |
-| lastModifiedDateTime | `Edm.DateTimeOffset` | Timestamp corresponding to when the entity was last modified. |
+| id | `Edm.String` | The identifier of the entity. |
| lastModifiedBy | [identitySet](identityset.md) | Identity of the person who last modified the entity. |
+| lastModifiedDateTime | `Edm.DateTimeOffset` | Timestamp corresponding to when the entity was last modified. |
+| @odata.etag | `Edm.String` | The change key for the entity. |
## Relationships
v1.0 Signin https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/signin.md
The availability of sign-in logs is governed by the [Azure AD data retention pol
|:|:--|:-| |appDisplayName|String|App name displayed in the Azure Portal. Supports `$filter` (`eq` and `startsWith` operators only).| |appId|String|Unique GUID representing the app ID in the Azure Active Directory. Supports `$filter` (`eq` operator only).|
-|appliedConditionalAccessPolicy|[appliedConditionalAccessPolicy](appliedconditionalaccesspolicy.md) collection|Provides a list of conditional access policies that are triggered by the corresponding sign-in activity.|
+|appliedConditionalAccessPolicies|[appliedConditionalAccessPolicy](appliedconditionalaccesspolicy.md) collection|Provides a list of conditional access policies that are triggered by the corresponding sign-in activity.|
|clientAppUsed|String|Identifies the client used for the sign-in activity. Modern authentication clients include `Browser` and `modern clients`. Legacy authentication clients include `Exchange ActiveSync`, `IMAP`, `MAPI`, `SMTP`, `POP`, and `other clients`. Supports `$filter` (`eq` operator only).| |conditionalAccessStatus|conditionalAccessStatus| Reports status of an activated conditional access policy. Possible values are: `success`, `failure`, `notApplied`, and `unknownFutureValue`. Supports `$filter` (`eq` operator only).| |correlationId|String|The request ID sent from the client when the sign-in is initiated; used to troubleshoot sign-in activity. Supports `$filter` (`eq` operator only).|
v1.0 Signinfrequencysessioncontrol https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/signinfrequencysessioncontrol.md
Session control to enforce sign-in frequency. Inherits from [conditionalAccessSe
| Property | Type | Description | |:-|:|:|
+|authenticationType |signInFrequencyAuthenticationType | The possible values are `primaryAndSecondaryAuthentication`, `secondaryAuthentication`, `unknownFutureValue`.|
+|frequencyInterval |signInFrequencyInterval | The possible values are `timeBased`, `everyTime`, `unknownFutureValue`.|
|isEnabled |Boolean | Specifies whether the session control is enabled. | |type |signinFrequencyType| Possible values are: `days`, `hours`.| |value |Int32 | The number of `days` or `hours`.|
-|authenticationType |signInFrequencyAuthenticationType | The possible values are `primaryAndSecondaryAuthentication`, `secondaryAuthentication`, `unknownFutureValue`.|
-|frequencyInterval |signInFrequencyInterval | The possible values are `timeBased`, `everyTime`, `unknownFutureValue`.|
+ ## Relationships
v1.0 Signingcertificateupdatestatus https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/signingcertificateupdatestatus.md
Title: "signingCertificateUpdateStatus resource type" description: "Provides status of the last update of the signing certificate."-+ ms.localizationpriority: medium ms.prod: "identity-and-sign-in" doc_type: resourcePageType
v1.0 Singlevaluelegacyextendedproperty https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/singlevaluelegacyextendedproperty.md
Title: "singleValueLegacyExtendedProperty resource type"
description: "An extended property that contains a single value. " ms.localizationpriority: medium doc_type: resourcePageType
v1.0 Site https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/site.md
The **site** resource provides metadata and relationships for a SharePoint site.
| Property | Type | Description | | :-- | :- | : |
-| **id** | string | The unique identifier of the item. Read-only. |
| **createdDateTime** | DateTimeOffset | The date and time the item was created. Read-only. | | **description** | string | The descriptive text for the site. | | **displayName** | string | The full title for the site. Read-only. | | **eTag** | string | ETag for the item. Read-only. |
+| **id** | string | The unique identifier of the item. Read-only. |
| **lastModifiedDateTime** | DateTimeOffset | The date and time the item was last modified. Read-only. | | **name** | string | The name / title of the item. | | **root** | [root](root.md) | If present, indicates that this is the root site in the site collection. Read-only. |
v1.0 Sitecollection https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/sitecollection.md
Here is a JSON representation of the resource.
| Property name | Type | Description |:|:|:
-| **hostname** | string | The hostname for the site collection. Read-only.
| **dataLocationCode** | string | The geographic region code for where this site collection resides. Read-only.
+| **hostname** | string | The hostname for the site collection. Read-only.
| **root** | [root][] | If present, indicates that this is a root site collection in SharePoint. Read-only. [root]: root.md
v1.0 Sizerange https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/sizerange.md
Title: "sizeRange resource type"
description: "Specifies the maximum and minimum sizes (in kilobytes) that an incoming message must have in order for a condition or exception to apply." ms.localizationpriority: medium doc_type: resourcePageType
v1.0 Socialidentityprovider https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/socialidentityprovider.md
Configuring an identity provider in your Azure AD B2C tenant enables users to si
|:|:--|:-| |clientId|String|The identifier for the client application obtained when registering the application with the identity provider. Required.| |clientSecret|String|The client secret for the application that is obtained when the application is registered with the identity provider. This is write-only. A read operation returns `****`. Required.|
-|id|String|The identifier of the identity provider. Inherited from [identityProviderBase](../resources/identityproviderbase.md). Read-only.|
|displayName|String|The display name of the identity provider. Inherited from [identityProviderBase](../resources/identityproviderbase.md).|
+|id|String|The identifier of the identity provider. Inherited from [identityProviderBase](../resources/identityproviderbase.md). Read-only.|
|identityProviderType|String|For a B2B scenario, possible values: `Google`, `Facebook`. For a B2C scenario, possible values: `Microsoft`, `Google`, `Amazon`, `LinkedIn`, `Facebook`, `GitHub`, `Twitter`, `Weibo`, `QQ`, `WeChat`. Required.| ### Where to get the client identifier and secret
v1.0 Softwareoathauthenticationmethod https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/softwareoathauthenticationmethod.md
Namespace: microsoft.graph
Represents a software OATH token registered to a user. A software OATH token is a software-based number generator that uses the OATH Time-Based One Time Password (TOTP) standard for multi-factor authentication. This API will not return Microsoft Authenticator authentication method entities, though it will return an entity if Microsoft Authenticator was set up via the third-party software authenticator flow.
+This is a derived type that inherits from the [authenticationMethod](authenticationmethod.md) resource type.
+ ## Methods |Method|Return type|Description| |:|:|:|
v1.0 Sortfield https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/sortfield.md
Title: "SortField resource type"
description: "Represents a condition in a sorting operation." ms.localizationpriority: medium doc_type: resourcePageType
Represents a condition in a sorting operation.
|ascending|boolean|Represents whether the sorting is done in an ascending fashion.| |color|string|Represents the color that is the target of the condition if the sorting is on font or cell color.| |dataOption|string|Represents additional sorting options for this field. The possible values are: `Normal`, `TextAsNumber`.|
+|icon|[WorkbookIcon](icon.md)|Represents the icon that is the target of the condition if the sorting is on the cell's icon.|
|key|int|Represents the column (or row, depending on the sort orientation) that the condition is on. Represented as an offset from the first column (or row).| |sortOn|string|Represents the type of sorting of this condition. The possible values are: `Value`, `CellColor`, `FontColor`, `Icon`.|
-|icon|[WorkbookIcon](icon.md)|Represents the icon that is the target of the condition if the sorting is on the cell's icon.|
## JSON representation
v1.0 Sortproperty https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/sortproperty.md
Indicates the order to sort search results.
| Property | Type | Description | |:-|:|:|
-|name|String|The name of the property to sort on. Required.|
|isDescending|Boolean|`True` if the sort order is descending. Default is `false`, with the sort order as ascending. Optional.|
+|name|String|The name of the property to sort on. Required.|
+ ## JSON representation
v1.0 Specialfolder https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/specialfolder.md
Last updated 09/10/2017
Title: SpecialFolder ms.localizationpriority: medium description: "The SpecialFolder resource groups special folder-related data items into a single structure." doc_type: resourcePageType
v1.0 Standardtimezoneoffset https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/standardtimezoneoffset.md
Title: "standardTimeZoneOffset resource type"
description: "Specifies when a time zone switches from daylight saving time to standard time." ms.localizationpriority: medium doc_type: resourcePageType
v1.0 Stspolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/stspolicy.md
None
| Property | Type | Description | |:-|:|:|
-|id|String| Unique identifier for this policy. Read-only. Inherited from [policyBase](policyBase.md).|
|description|String| Description for this policy. Inherited from [policyBase](policyBase.md).| |displayName|String| Display name for this policy. Inherited from [policyBase](policyBase.md).| |definition|String collection| A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required.|
+|id|String| Unique identifier for this policy. Read-only. Inherited from [policyBase](policyBase.md).|
|isOrganizationDefault|Boolean|If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false.| ## Relationships
v1.0 Subscription https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/subscription.md
Namespace: microsoft.graph
A subscription allows a client app to receive change notifications about changes to data in Microsoft Graph. For the possible resource path values for each supported resource, see [Use the Microsoft Graph API to get change notifications](webhooks.md). To learn how to use lifecycle notifications, see [Reduce missing subscriptions and change notifications](/graph/webhooks-lifecycle).
For the possible resource path values for each supported resource, see [Use the
## Properties
-| Property | Type | Description | Supported Resources |
-|:|:--|:|:--|
-| applicationId | String | Optional. Identifier of the application used to create the subscription. Read-only. | All |
-| changeType | String | Required. Indicates the type of change in the subscribed resource that will raise a change notification. The supported values are: `created`, `updated`, `deleted`. Multiple values can be combined using a comma-separated list. <br><br>**Note:** <li> Drive root item and list change notifications support only the `updated` changeType. <li>[User](../resources/user.md) and [group](../resources/user.md) change notifications support `updated` and `deleted` changeType. Use `updated` to receive notifications when user or group is created, updated or soft deleted. Use `deleted` to receive notifications when user or group is permanently deleted. | All |
-| clientState | String | Optional. Specifies the value of the `clientState` property sent by the service in each change notification. The maximum length is 128 characters. The client can check that the change notification came from the service by comparing the value of the `clientState` property sent with the subscription with the value of the `clientState` property received with each change notification. | All |
-| creatorId | String | Optional. Identifier of the user or service principal that created the subscription. If the app used delegated permissions to create the subscription, this field contains the id of the signed-in user the app called on behalf of. If the app used application permissions, this field contains the id of the service principal corresponding to the app. Read-only. | All |
-| encryptionCertificate | String | Optional. A base64-encoded representation of a certificate with a public key used to encrypt resource data in change notifications. Optional but required when **includeResourceData** is `true`. | All |
-| encryptionCertificateId | String | Optional. A custom app-provided identifier to help identify the certificate needed to decrypt resource data. | All |
-| expirationDateTime | DateTimeOffset | Required. Specifies the date and time when the webhook subscription expires. The time is in UTC, and can be an amount of time from subscription creation that varies for the resource subscribed to. For the maximum supported subscription length of time, see [the table below](#maximum-length-of-subscription-per-resource-type). | All |
-| id | String | Optional. Unique identifier for the subscription. Read-only. | All |
-| includeResourceData | Boolean | Optional. When set to `true`, change notifications [include resource data](/graph/webhooks-with-resource-data) (such as content of a chat message). | All |
-| latestSupportedTlsVersion | String | Optional. Specifies the latest version of Transport Layer Security (TLS) that the notification endpoint, specified by **notificationUrl**, supports. The possible values are: `v1_0`, `v1_1`, `v1_2`, `v1_3`. </br></br>For subscribers whose notification endpoint supports a version lower than the currently recommended version (TLS 1.2), specifying this property by a set [timeline](https://developer.microsoft.com/graph/blogs/microsoft-graph-subscriptions-deprecating-tls-1-0-and-1-1/) allows them to temporarily use their deprecated version of TLS before completing their upgrade to TLS 1.2. For these subscribers, not setting this property per the timeline would result in subscription operations failing. </br></br>For subscribers whose notification endpoint already supports TLS 1.2, setting this property is optional. In such cases, Microsoft Graph defaults the property to `v1_2`. | All |
-| lifecycleNotificationUrl | String | Optional. The URL of the endpoint that receives lifecycle notifications, including `subscriptionRemoved` and `missed` notifications. This URL must make use of the HTTPS protocol. | All |
-| notificationQueryOptions | String | Optional. OData query options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property. For example, when the print job is completed or when a print job resource `isFetchable` property value becomes `true` etc. | [Universal Print Service](/graph/universal-print-webhook-notifications) |
-| notificationUrl | String | Required. The URL of the endpoint that will receive the change notifications. This URL must make use of the HTTPS protocol. | All |
-| notificationUrlAppId| String | Optional. The app ID that the subscription service can use to generate the validation token. This allows the client to validate the authenticity of the notification received. | All |
-| resource | String | Required. Specifies the resource that will be monitored for changes. Do not include the base URL (`https://graph.microsoft.com/v1.0/`). See the possible resource path [values](webhooks.md) for each supported resource.| All |
+| Property | Type | Description |
+||||
+| applicationId | String | Optional. Identifier of the application used to create the subscription. Read-only. |
+| changeType | String | Required. Indicates the type of change in the subscribed resource that will raise a change notification. The supported values are: `created`, `updated`, `deleted`. Multiple values can be combined using a comma-separated list. <br><br>**Note:** <li> Drive root item and list change notifications support only the `updated` changeType. <li>[User](../resources/user.md) and [group](../resources/user.md) change notifications support `updated` and `deleted` changeType. Use `updated` to receive notifications when user or group is created, updated or soft deleted. Use `deleted` to receive notifications when user or group is permanently deleted. |
+| clientState | String | Optional. Specifies the value of the `clientState` property sent by the service in each change notification. The maximum length is 128 characters. The client can check that the change notification came from the service by comparing the value of the `clientState` property sent with the subscription with the value of the `clientState` property received with each change notification. |
+| creatorId | String | Optional. Identifier of the user or service principal that created the subscription. If the app used delegated permissions to create the subscription, this field contains the id of the signed-in user the app called on behalf of. If the app used application permissions, this field contains the id of the service principal corresponding to the app. Read-only. |
+| encryptionCertificate | String | Optional. A base64-encoded representation of a certificate with a public key used to encrypt resource data in change notifications. Optional but required when **includeResourceData** is `true`. |
+| encryptionCertificateId | String | Optional. A custom app-provided identifier to help identify the certificate needed to decrypt resource data. |
+| expirationDateTime | DateTimeOffset | Required. Specifies the date and time when the webhook subscription expires. The time is in UTC, and can be an amount of time from subscription creation that varies for the resource subscribed to. For the maximum supported subscription length of time, see [the table below](#maximum-length-of-subscription-per-resource-type). |
+| id | String | Optional. Unique identifier for the subscription. Read-only. |
+| includeResourceData | Boolean | Optional. When set to `true`, change notifications [include resource data](/graph/webhooks-with-resource-data) (such as content of a chat message). |
+| latestSupportedTlsVersion | String | Optional. Specifies the latest version of Transport Layer Security (TLS) that the notification endpoint, specified by **notificationUrl**, supports. The possible values are: `v1_0`, `v1_1`, `v1_2`, `v1_3`. </br></br>For subscribers whose notification endpoint supports a version lower than the currently recommended version (TLS 1.2), specifying this property by a set [timeline](https://developer.microsoft.com/graph/blogs/microsoft-graph-subscriptions-deprecating-tls-1-0-and-1-1/) allows them to temporarily use their deprecated version of TLS before completing their upgrade to TLS 1.2. For these subscribers, not setting this property per the timeline would result in subscription operations failing. </br></br>For subscribers whose notification endpoint already supports TLS 1.2, setting this property is optional. In such cases, Microsoft Graph defaults the property to `v1_2`. |
+| lifecycleNotificationUrl | String | Optional. The URL of the endpoint that receives lifecycle notifications, including `subscriptionRemoved`, `reauthorizationRequired`, and `missed` notifications. This URL must make use of the HTTPS protocol. |
+| notificationQueryOptions | String | Optional. OData query options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property. For example, when the print job is completed or when a print job resource `isFetchable` property value becomes `true` etc. <br/><br/> Supported only for Universal Print Service. For more information, see [Subscribe to change notifications from cloud printing APIs using Microsoft Graph](/graph/universal-print-webhook-notifications). |
+| notificationUrl | String | Required. The URL of the endpoint that will receive the change notifications. This URL must make use of the HTTPS protocol. |
+| notificationUrlAppId | String | Optional. The app ID that the subscription service can use to generate the validation token. This allows the client to validate the authenticity of the notification received. |
+| resource | String | Required. Specifies the resource that will be monitored for changes. Do not include the base URL (`https://graph.microsoft.com/v1.0/`). See the possible resource path [values](webhooks.md) for each supported resource. |
### Maximum length of subscription per resource type
v1.0 Table https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/table.md
Represents an Excel table.
## Properties | Property | Type |Description| |:|:--|:-|
+|highlightFirstColumn|Boolean|Indicates whether the first column contains special formatting. |
+|highlightLastColumn|Boolean|Indicates whether the last column contains special formatting. |
|id|string|Returns a value that uniquely identifies the table in a given workbook. The value of the identifier remains the same even when the table is renamed. This property should be interpreted as an opaque string value and should not be parsed to any other type. Read-only.|
+|legacyId|String|Legacy Id used in older Excle clients. The value of the identifier remains the same even when the table is renamed. This property should be interpreted as an opaque string value and should not be parsed to any other type. Read-only.
|name|string|Name of the table.|
+|showBandedRows|Boolean|Indicates whether the rows show banded formatting in which odd rows are highlighted differently from even ones to make reading the table easier. |
+|showBandedColumns|Boolean|Indicates whether the columns show banded formatting in which odd columns are highlighted differently from even ones to make reading the table easier. |
+|showFilterButton|Boolean|Indicates whether the filter buttons are visible at the top of each column header. Setting this is only allowed if the table contains a header row. |
|showHeaders|boolean|Indicates whether the header row is visible or not. This value can be set to show or remove the header row.| |showTotals|boolean|Indicates whether the total row is visible or not. This value can be set to show or remove the total row.| |style|string|Constant value that represents the Table style. The possible values are: TableStyleLight1 thru TableStyleLight21, TableStyleMedium1 thru TableStyleMedium28, TableStyleStyleDark1 thru TableStyleStyleDark11. A custom user-defined style present in the workbook can also be specified.|
-|highlightFirstColumn|Boolean|Indicates whether the first column contains special formatting. |
-|highlightLastColumn|Boolean|Indicates whether the last column contains special formatting. |
-|showBandedColumns|Boolean|Indicates whether the columns show banded formatting in which odd columns are highlighted differently from even ones to make reading the table easier. |
-|showBandedRows|Boolean|Indicates whether the rows show banded formatting in which odd rows are highlighted differently from even ones to make reading the table easier. |
-|showFilterButton|Boolean|Indicates whether the filter buttons are visible at the top of each column header. Setting this is only allowed if the table contains a header row. |
-|legacyId|String|Legacy Id used in older Excle clients. The value of the identifier remains the same even when the table is renamed. This property should be interpreted as an opaque string value and should not be parsed to any other type. Read-only. |
## Relationships | Relationship | Type |Description|
v1.0 Targetresource https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/targetresource.md
Represents target resource types associated with audit activity.
| Property | Type |Description| |:|:--|:-|
-|id|String|Indicates the unique ID of the resource.|
|displayName|String|Indicates the visible name defined for the resource. Typically specified when the resource is created.|
-|type|String|Describes the resource type. Example values include `Application`, `Group`, `ServicePrincipal`, and `User`.|
-|userPrincipalName|String|When **type** is set to `User`, this includes the user name that initiated the action; `null` for other types.|
|groupType|groupType|When **type** is set to `Group`, this indicates the group type. Possible values are: `unifiedGroups`, `azureAD`, and `unknownFutureValue`|
+|id|String|Indicates the unique ID of the resource.|
|modifiedProperties|[modifiedProperty](modifiedproperty.md) collection|Indicates name, old value and new value of each attribute that changed. Property values depend on the operation **type**.|
+|type|String|Describes the resource type. Example values include `Application`, `Group`, `ServicePrincipal`, and `User`.|
+|userPrincipalName|String|When **type** is set to `User`, this includes the user name that initiated the action; `null` for other types.|
## JSON representation
v1.0 Taskfileattachment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/taskfileattachment.md
+
+ Title: "taskFileAttachment resource type"
+description: "Represents a file, such as a text file or Word document, attached to a todoTask."
+
+ms.localizationpriority: medium
++
+# taskFileAttachment resource type
+
+Namespace: microsoft.graph
+
+Represents a file, such as a text file or Word document, attached to a [todoTask](../resources/todotask.md).
+When you create a file attachment on a task, include `"@odata.type": "#microsoft.graph.taskFileAttachment"` and the properties **name** and **contentBytes**.
+
+Inherits from [attachmentBase](../resources/attachmentbase.md).
+
+## Methods
+|Method|Return type|Description|
+|:|:|:|
+|[List attachments](../api/todotask-list-attachments.md)|[taskFileAttachment](../resources/taskfileattachment.md) collection|Get a list of the [taskFileAttachment](../resources/taskfileattachment.md) objects and their properties.|
+|[Create attachment](../api/todotask-post-attachments.md)|[taskFileAttachment](../resources/taskfileattachment.md) collection|Add a new [taskFileAttachment](../resources/taskfileattachment.md) object to a [todoTask](../resources/todotask.md).|
+|[Create upload session](../api/taskfileattachment-createuploadsession.md)|[taskFileAttachment](../resources/taskfileattachment.md) collection|Create an upload session to iteratively upload ranges of a file as an attachment to a [todoTask](../resources/todotask.md).|
+|[Get attachment](../api/taskfileattachment-get.md)|[taskFileAttachment](../resources/taskfileattachment.md)|Read the properties and relationships of a [taskFileAttachment](../resources/taskfileattachment.md) object.|
+|[Delete attachment](../api/taskfileattachment-delete.md)|None|Delete a [taskFileAttachment](../resources/taskfileattachment.md) object.|
+
+## Properties
+|Property|Type|Description|
+|:|:|:|
+|contentBytes|Binary|The base64-encoded contents of the file.|
+|contentType|String|The content type of the attachment. Inherited from [attachmentBase](../resources/attachmentbase.md).|
+|id|String|The ID of the attachment. Inherited from [entity](../resources/entity.md).|
+|lastModifiedDateTime|DateTimeOffset|The date and time when the attachment was last modified. Inherited from [attachmentBase](../resources/attachmentbase.md).|
+|name|String|The name of the text displayed under the icon that represents the embedded attachment. This does not need to be the actual file name. Inherited from [attachmentBase](../resources/attachmentbase.md).|
+|size|Int32|The size in bytes of the attachment. Inherited from [attachmentBase](../resources/attachmentbase.md).|
++
+## Relationships
+None.
+
+## JSON representation
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "keyProperty": "id",
+ "@odata.type": "microsoft.graph.taskFileAttachment",
+ "baseType": "microsoft.graph.attachmentBase",
+ "openType": false
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.taskFileAttachment",
+ "contentBytes": "Binary",
+ "contentType": "String",
+ "id": "String (identifier)",
+ "lastModifiedDateTime": "String (timestamp)",
+ "name": "String",
+ "size": "Int32"
+}
+```
+
v1.0 Team https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/team.md
For more information about working with groups and members in teams, see [Use th
| Property | Type | Description | |:|:--|:-|
-|classSettings|[teamClassSettings](teamclasssettings.md) |Configure settings of a class. Available only when the team represents a class.|
+| id | string | The unique identifier of the team. The group has the same ID as the team. This property is read-only, and is inherited from the base entity type. |
|classification|string| An optional label. Typically describes the data or business sensitivity of the team. Must match one of a pre-configured set in the tenant's directory. |
+|classSettings|[teamClassSettings](teamclasssettings.md) |Configure settings of a class. Available only when the team represents a class.|
|createdDateTime|dateTimeOffset|Timestamp at which the team was created.| |description|string| An optional description for the team. Maximum length: 1024 characters. | |displayName|string| The name of the team. |
For more information about working with groups and members in teams, see [Use th
|memberSettings|[teamMemberSettings](teammembersettings.md) |Settings to configure whether members can perform certain actions, for example, create channels and add bots, in the team.| |messagingSettings|[teamMessagingSettings](teammessagingsettings.md) |Settings to configure messaging and mentions in the team.| |specialization|[teamSpecialization](teamspecialization.md)| Optional. Indicates whether the team is intended for a particular use case. Each team specialization has access to unique behaviors and experiences targeted to its use case. |
+|summary|[teamSummary](teamsummary.md)| Contains summary information about the team, including number of owners, members, and guests. |
|tenantId |string | The ID of the Azure Active Directory tenant. | |visibility|[teamVisibilityType](teamvisibilitytype.md)| The visibility of the group and team. Defaults to Public. | |webUrl|string (readonly) | A hyperlink that will go to the team in the Microsoft Teams client. This is the URL that you get when you right-click a team in the Microsoft Teams client and select **Get link to team**. This URL should be treated as an opaque blob, and not parsed. |
v1.0 Teamfunsettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/teamfunsettings.md
Settings to configure use of Giphy, memes, and stickers in the [team](team.md).
## Properties | Property | Type |Description| |:|:--|:-|
+|allowCustomMemes|Boolean|If set to true, enables users to include custom memes.|
|allowGiphy|Boolean|If set to true, enables Giphy use.|
-|giphyContentRating|String (enum)|Giphy content rating. Possible values are: `moderate`, `strict`.|
|allowStickersAndMemes|Boolean|If set to true, enables users to include stickers and memes.|
-|allowCustomMemes|Boolean|If set to true, enables users to include custom memes.|
+|giphyContentRating|String (enum)|Giphy content rating. Possible values are: `moderate`, `strict`.|
## JSON representation
v1.0 Teammembersettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/teammembersettings.md
Settings to configure whether members can perform certain actions, for example,
## Properties | Property | Type |Description| |:|:--|:-|
+|allowAddRemoveApps|Boolean|If set to true, members can add and remove apps.|
|allowCreatePrivateChannels|Boolean|If set to true, members can add and update private channels.| |allowCreateUpdateChannels|Boolean|If set to true, members can add and update channels.|
-|allowDeleteChannels|Boolean|If set to true, members can delete channels.|
-|allowAddRemoveApps|Boolean|If set to true, members can add and remove apps.|
-|allowCreateUpdateRemoveTabs|Boolean|If set to true, members can add, update, and remove tabs. |
|allowCreateUpdateRemoveConnectors|Boolean|If set to true, members can add, update, and remove connectors.|
+|allowCreateUpdateRemoveTabs|Boolean|If set to true, members can add, update, and remove tabs. |
+|allowDeleteChannels|Boolean|If set to true, members can delete channels.|
## JSON representation
v1.0 Teammessagingsettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/teammessagingsettings.md
Settings to configure messaging and mentions in the [team](team.md).
## Properties | Property | Type |Description| |:|:--|:-|
-|allowUserEditMessages|Boolean|If set to true, users can edit their messages.|
-|allowUserDeleteMessages|Boolean|If set to true, users can delete their messages.|
+|allowChannelMentions|Boolean|If set to true, @channel mentions are allowed.|
|allowOwnerDeleteMessages|Boolean|If set to true, owners can delete any message.|
+|allowUserDeleteMessages|Boolean|If set to true, users can delete their messages.|
+|allowUserEditMessages|Boolean|If set to true, users can edit their messages.|
|allowTeamMentions|Boolean|If set to true, @team mentions are allowed.|
-|allowChannelMentions|Boolean|If set to true, @channel mentions are allowed.|
## JSON representation
v1.0 Teamsapp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/teamsapp.md
Users can see these apps in the Microsoft Teams Store, and these apps can be ins
| Property | Type | Description | |:- |:-- |:-- |
-| id | string | The catalog app's generated app ID (different from the developer-provided ID in the [Microsoft Teams zip app package](/microsoftteams/platform/concepts/apps/apps-package). |
-| externalId | string | The ID of the catalog provided by the app developer in the [Microsoft Teams zip app package](/microsoftteams/platform/concepts/apps/apps-package). |
| displayName | string | The name of the catalog app provided by the app developer in the [Microsoft Teams zip app package](/microsoftteams/platform/concepts/apps/apps-package). | | distributionMethod | teamsAppDistributionMethod | The method of distribution for the app. Read-only.|
+| externalId | string | The ID of the catalog provided by the app developer in the [Microsoft Teams zip app package](/microsoftteams/platform/concepts/apps/apps-package). |
+| id | string | The catalog app's generated app ID (different from the developer-provided ID in the [Microsoft Teams zip app package](/microsoftteams/platform/concepts/apps/apps-package). |
### teamsAppDistributionMethod values
Users can see these apps in the Microsoft Teams Store, and these apps can be ins
## Relationships
-| Relationship | Type | Description |
+| Relationship | Type | Description |
|:|:--|:-| |appDefinitions|[teamsAppDefinition](teamsappdefinition.md) collection| The details for each version of the app. |
Users can see these apps in the Microsoft Teams Store, and these apps can be ins
- [teamsAppInstallation](teamsappinstallation.md) - [teamsAppDefinition](teamsappdefinition.md) - [teamsTab](../resources/teamstab.md)
+- [App catalog sample (C#)](https://github.com/OfficeDev/Microsoft-Teams-Samples/tree/main/samples/graph-appcatalog-lifecycle/csharp)
+- [App catalog sample (Node.JS)](https://github.com/OfficeDev/Microsoft-Teams-Samples/tree/main/samples/graph-appcatalog-lifecycle/nodejs)
<!-- uuid: 8fcb5dbc-d5aa-4681-8e31-b001d5168d79 2015-10-25 14:57:30 UTC -->
v1.0 Teamsappdefinition https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/teamsappdefinition.md
Represents the details of a version of a [teamsApp](teamsapp.md).
| Property | Type | Description | |:- |:-- |:-- |
+| description | string | Verbose description of the application. |
+| displayName | string | The name of the app provided by the app developer. |
| id | string | A unique ID (not the Teams app ID). |
-| teamsAppId | string | The ID from the Teams app manifest. |
| publishingState| string|The published status of a specific version of a Teams app. Possible values are:</br>`submitted` ΓÇö The specific version of the Teams app has been submitted and is under review. </br>`published` ΓÇö The request to publish the specific version of the Teams app has been approved by the admin and the app is published. </br> `rejected` ΓÇö The request to publish the specific version of the Teams app was rejected by the admin. |
-| displayName | string | The name of the app provided by the app developer. |
-| version | string | The version number of the application. |
| shortDescription | string | Short description of the application. |
-| description | string | Verbose description of the application. |
+| teamsAppId | string | The ID from the Teams app manifest. |
+| version | string | The version number of the application. |
+ ## Relationships
v1.0 Teamsasyncoperation https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/teamsasyncoperation.md
When the request completes successfully, the status will be "succeeded" and the
| Property | Type | Description | |:|:--|:-|
+|attemptsCount|Int32|Number of times the operation was attempted before being marked successful or failed.|
+|createdDateTime|DateTimeOffset |Time when the operation was created.|
+|error|[operationError](operationerror.md)|Any error that causes the async operation to fail.|
|id|string |Unique operation id.|
+|lastActionDateTime|DateTimeOffset |Time when the async operation was last updated.|
|operationType|[teamsAsyncOperationType](teamsasyncoperationtype.md) |Denotes which type of operation is being described.|
-|createdDateTime|DateTimeOffset |Time when the operation was created.|
|status|[teamsAsyncOperationStatus](teamsasyncoperationstatus.md)| Operation status.|
-|lastActionDateTime|DateTimeOffset |Time when the async operation was last updated.|
-|attemptsCount|Int32|Number of times the operation was attempted before being marked successful or failed.|
|targetResourceId|guid |The ID of the object that's created or modified as result of this async operation, typically a [team](../resources/team.md).| |targetResourceLocation|string|The location of the object that's created or modified as result of this async operation. This URL should be treated as an opaque value and not parsed into its component paths.|
-|error|[operationError](operationerror.md)|Any error that causes the async operation to fail.|
## JSON representation
v1.0 Teamstab https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/teamstab.md
A teamsTab is a [tab](../resources/teamstab.md) that's pinned (attached) to a [c
|Property|Type|Description| |:|:--|:-|
-| id | string | Identifier that uniquely identifies a specific instance of a channel tab. Read only. |
+| configuration | [teamsTabConfiguration](teamstabconfiguration.md) | Container for custom settings applied to a tab. The tab is considered configured only once this property is set. |
| displayName | string | Name of the tab. |
+| id | string | Identifier that uniquely identifies a specific instance of a channel tab. Read only. |
| webUrl | string | Deep link URL of the tab instance. Read only. |
-| configuration | [teamsTabConfiguration](teamstabconfiguration.md) | Container for custom settings applied to a tab. The tab is considered configured only once this property is set. |
## Relationships
v1.0 Teamstabconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/teamstabconfiguration.md
In addition to the properties below, some tab provider applications specify addi
|Property|Type|Description| |-|-|-|
-| entityId | string | Identifier for the entity hosted by the tab provider. |
| contentUrl | string | Url used for rendering tab contents in Teams. Required. |
+| entityId | string | Identifier for the entity hosted by the tab provider. |
| removeUrl | string | Url called by Teams client when a Tab is removed using the Teams Client. | | websiteUrl | string | Url for showing tab contents outside of Teams. |
v1.0 Teamsummary https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/teamsummary.md
+
+ Title: "teamSummary resource type"
+description: "Contains information about a team in Microsoft Teams, including numbers of owners, members, and guests."
+ms.localizationpriority: medium
+++
+# teamSummary resource type
+
+Contains information about a team in Microsoft Teams, including number of owners, members, and guests.
+
+## Properties
+| Property | Type |Description|
+|:|:--|:-|
+|guestsCount|Int32|Count of guests in a team.|
+|membersCount|Int32|Count of members in a team.|
+|ownersCount|Int32|Count of owners in a team.|
+
+## JSON representation
+
+The following is a JSON representation of the resource.
+
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.teamSummary"
+}-->
+
+```json
+{
+ "guestsCount": "Integer",
+ "membersCount": "Integer",
+ "ownersCount": "Integer",
+}
+```
v1.0 Teamvisibilitytype https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/teamvisibilitytype.md
Describes the visibility of a [team](../resources/team.md).
|:|:--|:-| |private|0|Anyone can see the team but only the owner can add a user to the team.| |public|1|Anyone can join the team.|
+|hiddenMembership|2|Only the administrators (global, company, user, and helpdesk) can view the members of a team.<br>Owner permissions are required to join a team.|
v1.0 Temporaryaccesspassauthenticationmethod https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/temporaryaccesspassauthenticationmethod.md
Namespace: microsoft.graph
Represents a Temporary Access Pass registered to a user. A Temporary Access Pass is a time-limited passcode that serves as a strong credential and allows onboarding of passwordless credentials. The availability and settings that can be configured for the **temporaryAccessPassAuthenticationMethod** depends on the [Temporary Access Pass methods policy](temporaryaccesspassauthenticationmethodconfiguration.md).
+This is a derived type that inherits from the [authenticationMethod](authenticationmethod.md) resource type.
+ ## Methods |Method|Return type|Description|
Represents a Temporary Access Pass registered to a user. A Temporary Access Pass
|:|:|:| |createdDateTime|DateTimeOffset|The date and time when the Temporary Access Pass was created.| |id|String|The identifier of the Temporary Access Pass registered to this user. Inherited from [entity](../resources/entity.md).|
-|isUsableOnce|Boolean|Determines whether the pass is limited to a one-time use. If `true`, the pass can be used once; if `false`, the pass can be used multiple times within the Temporary Access Pass lifetime.|
|isUsable|Boolean|The state of the authentication method that indicates whether it's currently usable by the user.|
+|isUsableOnce|Boolean|Determines whether the pass is limited to a one-time use. If `true`, the pass can be used once; if `false`, the pass can be used multiple times within the Temporary Access Pass lifetime.|
|lifetimeInMinutes|Int32|The lifetime of the Temporary Access Pass in minutes starting at **startDateTime**. Must be between 10 and 43200 inclusive (equivalent to 30 days).| |methodUsabilityReason|String|Details about the usability state (**isUsable**). Reasons can include: `EnabledByPolicy`, `DisabledByPolicy`, `Expired`, `NotYetValid`, `OneTimeUsed`.| |startDateTime|DateTimeOffset|The date and time when the Temporary Access Pass becomes available to use and when **isUsable** is `true` is enforced.|
v1.0 Temporaryaccesspassauthenticationmethodconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/temporaryaccesspassauthenticationmethodconfiguration.md
Represents a Temporary Access Pass authentication methods policy that defines th
|defaultLifetimeInMinutes|Int|Default lifetime in minutes for a Temporary Access Pass. Value can be any integer between the **minimumLifetimeInMinutes** and **maximumLifetimeInMinutes**.| |id|String|The identifier of the authentication method policy. Inherited from [entity](entity.md).| |isUsableOnce|Boolean |If `true`, all the passes in the tenant will be restricted to one-time use. If `false`, passes in the tenant can be created to be either one-time use or reusable.|
-|minimumLifetimeInMinutes|Int|Minimum lifetime in minutes for any Temporary Access Pass created in the tenant. Value can be between 10 and 43200 minutes (equivalent to 30 days).|
|maximumLifetimeInMinutes|Int|Maximum lifetime in minutes for any Temporary Access Pass created in the tenant. Value can be between 10 and 43200 minutes (equivalent to 30 days).|
+|minimumLifetimeInMinutes|Int|Minimum lifetime in minutes for any Temporary Access Pass created in the tenant. Value can be between 10 and 43200 minutes (equivalent to 30 days).|
|state|authenticationMethodState|Whether the Temporary Access Pass method is enabled in the tenant. Possible values are: `enabled`, `disabled`. Inherited from [authenticationMethodConfiguration](authenticationmethodconfiguration.md). | ## Relationships |Relationship|Type|Description| |:|:|:|
-|includeTargets|[authenticationMethodTarget](../resources/authenticationmethodtarget.md) collection|A collection of users or groups who are enabled to use the authentication method.|
+|includeTargets|[authenticationMethodTarget](../resources/authenticationmethodtarget.md) collection|A collection of groups that are enabled to use the authentication method.|
## JSON representation The following is a JSON representation of the resource.
v1.0 Termsexpiration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/termsexpiration.md
Provides additional settings for the scheduled expiration of the agreement.
| Property | Type | Description | | : | : | :- |
-| startDateTime|DateTimeOffset | The DateTime when the agreement is set to expire for all users. 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`.|
| frequency| Duration | Represents the frequency at which the terms will expire, after its first expiration as set in **startDateTime**. The value is represented in ISO 8601 format for durations. For example, `PT1M` represents a time period of 1 month.|
+| startDateTime|DateTimeOffset | The DateTime when the agreement is set to expire for all users. 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`.|
+ ## JSON representation
v1.0 Textcolumn https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/textcolumn.md
Last updated 09/11/2017
Title: TextColumn ms.localizationpriority: medium description: "The textColumn on a columnDefinition resource indicates that the column's values are text." doc_type: resourcePageType
v1.0 Thumbnail https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/thumbnail.md
Last updated 09/10/2017
Title: Thumbnail ms.localizationpriority: medium description: "The thumbnail resource type represents a thumbnail for an image, video, document, or any item that has a bitmap representation." doc_type: resourcePageType
The **thumbnail** resource type represents a thumbnail for an image, video, docu
| Property | Type | Description| | :-- | :-- | :-|
+| content | Stream | The content stream for the thumbnail.|
| height | Int32 | The height of the thumbnail, in pixels.| | sourceItemId | String | The unique identifier of the item that provided the thumbnail. This is only available when a folder thumbnail is requested.| | url | String | The URL used to fetch the thumbnail content.| | width | Int32 | The width of the thumbnail, in pixels.|
-| content | Stream | The content stream for the thumbnail.|
+ ## JSON representation
v1.0 Thumbnailset https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/thumbnailset.md
Last updated 09/10/2017
Title: ThumbnailSet ms.localizationpriority: medium description: "The ThumbnailSet resource is a keyed collection of thumbnail resources." doc_type: resourcePageType
v1.0 Timeoffitem https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/timeoffitem.md
Represents a version of the [timeOff](timeoff.md).
## Properties | Property | Type | Description | ||-||
-| timeOffReasonId | string | ID of the `timeOffReason` for this `timeOffItem`. Required. |
-| startDateTime | DateTimeOffset | The start date and time for the `timeOffItem`. Required. 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`. |
| endDateTime | DateTimeOffset | The end date and time for the `timeOffItem`. Required. 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`. |
+| startDateTime | DateTimeOffset | The start date and time for the `timeOffItem`. Required. 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`. |
| theme | scheduleEntityTheme | Supported colors: white; blue; green; purple; pink; yellow; gray; darkBlue; darkGreen; darkPurple; darkPink; darkYellow. |
+| timeOffReasonId | string | ID of the `timeOffReason` for this `timeOffItem`. Required. |
+ ## JSON representation
v1.0 Timestamp https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/timestamp.md
Title: "timeStamp resource type"
description: "Date and time information for a point in time." ms.localizationpriority: medium doc_type: resourcePageType
v1.0 Timezonebase https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/timezonebase.md
Title: "timeZoneBase resource type"
description: "The basic representation of a time zone." ms.localizationpriority: medium doc_type: resourcePageType
v1.0 Timezoneinformation https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/timezoneinformation.md
Title: "timeZoneInformation resource type"
description: "Represents a time zone. The supported format is Windows, and Internet Assigned Numbers Authority (IANA) time zone (also known as Olson time zone)" ms.localizationpriority: medium doc_type: resourcePageType
v1.0 Todo Overview https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/todo-overview.md
Use the Microsoft Graph To Do API to create an app that connects with tasks acro
* Sync your appΓÇÖs existing tasks with To Do and create a single task view for better prioritization and manageability. * Manage To Do tasks in a custom business application.
-Currently, the API supports only permissions delegated by the signed-in user.
+The API supports both delegated and application permissions.
Before starting with the To Do API, take a look at the resources and how they relate to one another.
v1.0 Todotask https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/todotask.md
This resource supports the following:
|completedDateTime|[dateTimeTimeZone](../resources/datetimetimezone.md)|The date and time in the specified time zone that the task was finished.| |createdDateTime|DateTimeOffset|The date and time when the task was created. By default, it is in UTC. You can provide a custom time zone in the request header. The property value uses ISO 8601 format. For example, midnight UTC on Jan 1, 2020 would look like this: '2020-01-01T00:00:00Z'.| |dueDateTime|[dateTimeTimeZone](../resources/datetimetimezone.md)|The date and time in the specified time zone that the task is to be finished.|
+|hasAttachments|Boolean|Indicates whether the task has attachments.|
|id|String|Unique identifier for the task. By default, this value changes when the item is moved from one list to another.| |importance|importance|The importance of the task. Possible values are: `low`, `normal`, `high`.| |isReminderOn|Boolean|Set to true if an alert is set to remind the user of the task.| |lastModifiedDateTime|DateTimeOffset|The date and time when the task was last modified. By default, it is in UTC. You can provide a custom time zone in the request header. The property value uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2020 would look like this: '2020-01-01T00:00:00Z'.| |recurrence|[patternedRecurrence](../resources/patternedrecurrence.md)|The recurrence pattern for the task.| |reminderDateTime|[dateTimeTimeZone](../resources/datetimetimezone.md)|The date and time in the specified time zone for a reminder alert of the task to occur.|
+|startDateTime|[dateTimeTimeZone](../resources/datetimetimezone.md)|The date and time in the specified time zone at which the task is scheduled to start.|
|status|taskStatus|Indicates the state or progress of the task. Possible values are: `notStarted`, `inProgress`, `completed`, `waitingOnOthers`, `deferred`.| |title|String|A brief description of the task.| ## Relationships |Relationship|Type|Description| |:|:|:|
+|attachments|[taskFileAttachment](../resources/taskfileattachment.md) collection| A collection of file attachments for the task.|
|checklistItems|[checklistItem](../resources/checklistitem.md) collection|A collection of checklistItems linked to a task. | |extensions|[extension](extension.md) collection| The collection of open extensions defined for the task. Nullable.| |linkedResources|[linkedResource](../resources/linkedresource.md) collection|A collection of resources linked to the task.|
v1.0 Tokenissuancepolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/tokenissuancepolicy.md
Inherits from [stsPolicy](stsPolicy.md).
| Property | Type | Description | |:-|:|:|
-|id|String| Unique identifier for this policy. Read-only.|
|definition|String collection| A string collection containing a JSON string that defines the rules and settings for this policy. See below for more details about the JSON schema for this property. Required.| |description|String| Description for this policy.| |displayName|String| Display name for this policy. Required.|
+|id|String| Unique identifier for this policy. Read-only.|
|isOrganizationDefault|Boolean|Ignore this property. The token-issuance policy can only be applied to service principals and can't be set globally for the organization.|
The properties form the JSON object that represents a token issuance policy. Thi
| Property | Type |Description| |:|:--|:-|
-|TokenResponseSigningPolicy|String|Represents the certificate signing options available in Azure AD. Supported values are: `ResponseOnly`, `TokenOnly`, `ResponseAndToken`. |
+| EmitSamlNameFormat | Boolean | If selected, Azure Active Directory will add an additional attribute called "NameFormat" that describes the format of the name to restricted, core, and optional claims for this application. [Learn more](/azure/active-directory/develop/reference-claims-mapping-policy-type#claim-sets) |
|SamlTokenVersion|String|Version of the SAML token. Supported values are: `1.1`, `2.0`. | |SigningAlgorithm|String|Signing algorithm use by Azure AD to sign the SAML token. Supported values are: `http://www.w3.org/2001/04/xmldsig-more#rsa-sha256`, `http://www.w3.org/2000/09/xmldsig#rsa-sha1`.| |Version|Integer|Set value of 1. Required.|
-| EmitSamlNameFormat | Boolean | If selected, Azure Active Directory will add an additional attribute called "NameFormat" that describes the format of the name to restricted, core, and optional claims for this application. [Learn more](/azure/active-directory/develop/reference-claims-mapping-policy-type#claim-sets) |
+|TokenResponseSigningPolicy|String|Represents the certificate signing options available in Azure AD. Supported values are: `ResponseOnly`, `TokenOnly`, `ResponseAndToken`. |
## Relationships
v1.0 Tokenlifetimepolicy https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/tokenlifetimepolicy.md
Inherits from [stsPolicy](stsPolicy.md).
| Property | Type | Description | |:-|:|:|
-|id|String| Unique identifier for this policy. Read-only.|
|definition|String collection| A string collection containing a JSON string that defines the rules and settings for this policy. See below for more details about the JSON schema for this property. Required.| |description|String| Description for this policy.| |displayName|String| Display name for this policy. Required.|
+|id|String| Unique identifier for this policy. Read-only.|
|isOrganizationDefault|Boolean|If set to `true`, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is `false`.|
v1.0 Unifiedroleassignment https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/unifiedroleassignment.md
Inherits from [entity](entity.md).
| Property | Type | Description | |:-|:|:|
+|appScopeId|String|Identifier of the app-specific scope when the assignment scope is app-specific. Either this property or **directoryScopeId** is required. App scopes are scopes that are defined and understood by this application only. Use `/` for tenant-wide app scopes. Use **directoryScopeId** to limit the scope to particular directory objects, for example, administrative units. Supports $filter (`eq`, `in`).|
+|directoryScopeId|String|Identifier of the directory object representing the scope of the assignment. Either this property or **appScopeId** is required. The scope of an assignment determines the set of resources for which the principal has been granted access. Directory scopes are shared scopes stored in the directory that are understood by multiple applications. Use `/` for tenant-wide scope. Use **appScopeId** to limit the scope to an application only. Supports $filter (`eq`, `in`).|
|id|String| The unique identifier for the role assignment. Key, not nullable, Read-only. Inherited from [entity](entity.md).| |roleDefinitionId|String| Identifier of the role definition the assignment is for. Read only. Supports $filter (`eq`, `in`).| |principalId|String| Identifier of the principal to which the assignment is granted. Supports $filter (`eq`, `in`).|
-|directoryScopeId|String|Identifier of the directory object representing the scope of the assignment. Either this property or **appScopeId** is required. The scope of an assignment determines the set of resources for which the principal has been granted access. Directory scopes are shared scopes stored in the directory that are understood by multiple applications. Use `/` for tenant-wide scope. Use **appScopeId** to limit the scope to an application only. Supports $filter (`eq`, `in`).|
-|appScopeId|String|Identifier of the app-specific scope when the assignment scope is app-specific. Either this property or **directoryScopeId** is required. App scopes are scopes that are defined and understood by this application only. Use `/` for tenant-wide app scopes. Use **directoryScopeId** to limit the scope to particular directory objects, for example, administrative units. Supports $filter (`eq`, `in`).|
+ ## Relationships | Relationship | Type | Description | |:-|:|:|
+|appScope|[appScope](appscope.md)|Read-only property with details of the app specific scope when the assignment scope is app specific. Containment entity. Supports `$expand`.|
+|directoryScope|[directoryObject](directoryobject.md)|The directory object that is the scope of the assignment. Read-only. Supports `$expand`.|
|principal|[directoryObject](directoryobject.md)| Referencing the assigned principal. Read-only. Supports `$expand`.| |roleDefinition|[unifiedRoleDefinition](unifiedroledefinition.md)|The roleDefinition the assignment is for. Supports `$expand`. roleDefinition.Id will be auto expanded.
-|directoryScope|[directoryObject](directoryobject.md)|The directory object that is the scope of the assignment. Read-only. Supports `$expand`.|
-|appScope|[appScope](appscope.md)|Read-only property with details of the app specific scope when the assignment scope is app specific. Containment entity. Supports `$expand`.|
+ ## JSON representation
v1.0 Uploadsession https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/uploadsession.md
Last updated 09/10/2017
Title: UploadSession ms.localizationpriority: medium description: "The UploadSession resource provides information about how to upload large files to OneDrive, OneDrive for Business, or SharePoint document libraries, or as file attachments to Outlook event and message objects." doc_type: resourcePageType
v1.0 Urlassessmentrequest https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/urlassessmentrequest.md
Used to create and retrieve a URL threat assessment, derived from [threatAssessm
| Property | Type | Description | |:-|:|:|
-|url|String|The URL string.|
|category|[threatCategory](enums.md#threatcategory-values)|The threat category. Possible values are: `spam`, `phishing`, `malware`.| |contentType|[threatAssessmentContentType](enums.md#threatassessmentcontenttype-values)|The content type of the threat assessment. Possible values are: `mail`, `url`, `file`.| |createdBy|[identitySet](identityset.md)|The threat assessment request creator.|
Used to create and retrieve a URL threat assessment, derived from [threatAssessm
|id|String|The threat assessment request ID is a globally unique identifier (GUID).| |requestSource|[threatAssessmentRequestSource](enums.md#threatassessmentrequestsource-values)|The source of the threat assessment request. Possible values are: `administrator`.| |status|[threatAssessmentStatus](enums.md#threatassessmentstatus-values)|The assessment process status. Possible values are: `pending`, `completed`.|
+|url|String|The URL string.|
+ ## Relationships
v1.0 User https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/user.md
This resource supports:
|onPremisesUserPrincipalName|String| Contains the on-premises `userPrincipalName` synchronized from the on-premises directory. The property is only populated for customers who are synchronizing their on-premises directory to Azure Active Directory via Azure AD Connect. Read-only. <br><br>Returned only on `$select`. Supports `$filter` (`eq`, `ne`, `not`, `ge`, `le`, `in`, `startsWith`).| |otherMails|String collection| A list of additional email addresses for the user; for example: `["bob@contoso.com", "Robert@fabrikam.com"]`. <br>NOTE: This property cannot contain accent characters. <br><br>Returned only on `$select`. Supports `$filter` (`eq`, `not`, `ge`, `le`, `in`, `startsWith`, `endsWith`, `/$count eq 0`, `/$count ne 0`).| |passwordPolicies|String|Specifies password policies for the user. This value is an enumeration with one possible value being `DisableStrongPassword`, which allows weaker passwords than the default policy to be specified. `DisablePasswordExpiration` can also be specified. The two may be specified together; for example: `DisablePasswordExpiration, DisableStrongPassword`. <br><br>Returned only on `$select`. For more information on the default password policies, see [Azure AD pasword policies](/azure/active-directory/authentication/concept-sspr-policy#password-policies-that-only-apply-to-cloud-user-accounts). Supports `$filter` (`ne`, `not`, and `eq` on `null` values).|
-|passwordProfile|[passwordProfile](passwordprofile.md)|Specifies the password profile for the user. The profile contains the userΓÇÖs password. This property is required when a user is created. The password in the profile must satisfy minimum requirements as specified by the **passwordPolicies** property. By default, a strong password is required. **NOTE:** For Azure B2C tenants, the **forceChangePasswordNextSignIn** property should be set to `false` and instead use custom policies and user flows to force password reset at first logon. See [Force password reset at first logon](https://github.com/azure-ad-b2c/samples/tree/master/policies/force-password-reset-first-logon).<br><br>Returned only on `$select`. Supports `$filter` (`eq`, `ne`, `not`, `in`, and `eq` on `null` values).|
+|passwordProfile|[passwordProfile](passwordprofile.md)|Specifies the password profile for the user. The profile contains the userΓÇÖs password. This property is required when a user is created. The password in the profile must satisfy minimum requirements as specified by the **passwordPolicies** property. By default, a strong password is required. <br><br>Returned only on `$select`. Supports `$filter` (`eq`, `ne`, `not`, `in`, and `eq` on `null` values).|
|pastProjects|String collection|A list for the user to enumerate their past projects. <br><br>Returned only on `$select`.| |postalCode|String|The postal code for the user's postal address. The postal code is specific to the user's country/region. In the United States of America, this attribute contains the ZIP code. Maximum length is 40 characters. <br><br>Returned only on `$select`. Supports `$filter` (`eq`, `ne`, `not`, `ge`, `le`, `in`, `startsWith`, and `eq` on `null` values).| | preferredDataLocation | String | The preferred data location for the user. For more information, see [OneDrive Online Multi-Geo](/sharepoint/dev/solution-guidance/multigeo-introduction).|
This resource supports:
|schools|String collection|A list for the user to enumerate the schools they have attended. <br><br>Returned only on `$select`.| |securityIdentifier| String | Security identifier (SID) of the user, used in Windows scenarios. <br><br>Read-only. Returned by default. <br>Supports `$select` and `$filter` (`eq`, `not`, `ge`, `le`, `startsWith`). | |showInAddressList|Boolean|**Do not use in Microsoft Graph. Manage this property through the Microsoft 365 admin center instead.** Represents whether the user should be included in the Outlook global address list. See [Known issue](/graph/known-issues#showinaddresslist-property-is-out-of-sync-with-microsoft-exchange).|
-|skills|String collection|A list for the user to enumerate their skills. <br><br>Returned only on `$select`.|
|signInSessionsValidFromDateTime|DateTimeOffset| Any refresh tokens or sessions tokens (session cookies) issued before this time are invalid, and applications will get an error when using an invalid refresh or sessions token to acquire a delegated access token (to access APIs such as Microsoft Graph). If this happens, the application will need to acquire a new refresh token by making a request to the authorize endpoint. Read-only. Use [revokeSignInSessions](../api/user-revokesigninsessions.md) to reset. <br><br>Returned only on `$select`.|
+|skills|String collection|A list for the user to enumerate their skills. <br><br>Returned only on `$select`.|
|state|String|The state or province in the user's address. Maximum length is 128 characters. <br><br>Returned only on `$select`. Supports `$filter` (`eq`, `ne`, `not`, `ge`, `le`, `in`, `startsWith`, and `eq` on `null` values).| |streetAddress|String|The street address of the user's place of business. Maximum length is 1024 characters. <br><br>Returned only on `$select`. Supports `$filter` (`eq`, `ne`, `not`, `ge`, `le`, `in`, `startsWith`, and `eq` on `null` values).| |surname|String|The user's surname (family name or last name). Maximum length is 64 characters. <br><br>Returned by default. Supports `$filter` (`eq`, `ne`, `not`, `ge`, `le`, `in`, `startsWith`, and `eq` on `null` values).|
For example: Cameron is administrator of a directory for an elementary school in
| Relationship | Type |Description| |:|:--|:-|
-|agreementAcceptances|[agreementAcceptance](agreementacceptance.md) collection| The user's terms of use acceptance statuses. Read-only. Nullable.|
|activities|[userActivity](projectrome-activity.md) collection|The user's activities across devices. Read-only. Nullable.|
+|agreementAcceptances|[agreementAcceptance](agreementacceptance.md) collection| The user's terms of use acceptance statuses. Read-only. Nullable.|
|appRoleAssignments|[appRoleAssignment](approleassignment.md) collection|Represents the app roles a user has been granted for an application. Supports `$expand`. | |authentication|[authentication](../resources/authentication.md)| The authentication methods that are supported for the user.| |calendar|[calendar](calendar.md)|The user's primary calendar. Read-only.| |calendarGroups|[calendarGroup](calendargroup.md) collection|The user's calendar groups. Read-only. Nullable.|
-|calendarView|[event](event.md) collection|The calendar view for the calendar. Read-only. Nullable.|
|calendars|[calendar](calendar.md) collection|The user's calendars. Read-only. Nullable.|
+|calendarView|[event](event.md) collection|The calendar view for the calendar. Read-only. Nullable.|
|contactFolders|[contactFolder](contactfolder.md) collection|The user's contacts folders. Read-only. Nullable.| |contacts|[contact](contact.md) collection|The user's contacts. Read-only. Nullable.| |createdObjects|[directoryObject](directoryobject.md) collection|Directory objects that were created by the user. Read-only. Nullable.|
v1.0 Userflowapiconnectorconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/userflowapiconnectorconfiguration.md
Defines the APIs that are called at specific points in the user flow. Each rela
| Relationship | Type | Description | | :- | :- | : |
+| postAttributeCollection | [identityApiConnector](identityapiconnector.md) | Specifies an API to call after a user submits the collected attributes and before the user account is created during sign-up.|
| postFederationSignup | [identityApiConnector](identityapiconnector.md) | Specifies an API to call after federation with an external identity provider. For example, a Google, Facebook, or Azure AD API is completed when the user is signing up (does not apply to sign-in). |
-| postAttributeCollection | [identityApiConnector](identityapiconnector.md) | Specifies an API to call after a user submits the collected attributes and before the user account is created during sign-up. |
## JSON representation
v1.0 Userflowlanguageconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/userflowlanguageconfiguration.md
For [Azure Active Directory user flows](/azure/active-directory/external-identit
|Property|Type|Description| |:|:|:|
+|displayName|String|The language name to display. This property is read-only.|
|id|String|The identifier of the language. This field is Language ID tag [RFC 5646](https://tools.ietf.org/html/rfc5646) compliant and must be a documented Language ID.| |isEnabled|Boolean|Indicates whether the language is enabled within the user flow.|
-|displayName|String|The language name to display. This property is read-only.|
+ ## Relationships
v1.0 Users https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/users.md
ms.localizationpriority: high
ms.prod: "users" doc_type: conceptualPageType Last updated : 11/16/2022 # Working with users in Microsoft Graph
v1.0 Userscopeteamsappinstallation https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/userscopeteamsappinstallation.md
This type inherits from [teamsAppInstallation](teamsappinstallation.md).
| Relationship | Type | Description | |:|:--|:-|
+|chat |[chat](chat.md) | The chat between the user and Teams app. |
|teamsApp|[teamsApp](teamsapp.md)| The app that is installed. | |teamsAppDefinition|[teamsAppDefinition](teamsappdefinition.md)| The details of this version of the app. |
-|chat |[chat](chat.md) | The chat between the user and Teams app. |
+ ## JSON representation
v1.0 Usersettings https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/usersettings.md
This resource supports:
| Property | Type |Description| |:|:--|:-|
-|contributionToContentDiscoveryDisabled|Boolean|When set to true, the delegate access to the user's [trending](/graph/api/resources/insights-trending) API is disabled. When set to true, documents in the user's Office Delve are disabled. When set to true, the relevancy of the content displayed in Microsoft 365, for example in Suggested sites in SharePoint Home and the Discover view in OneDrive for Business is affected. Users can control this setting in [Office Delve](https://support.office.com/en-us/article/are-my-documents-safe-in-office-delve-f5f409a2-37ed-4452-8f61-681e5e1836f3?ui=en-US&rs=en-US&ad=US#bkmk_optout). |
|contributionToContentDiscoveryAsOrganizationDisabled|Boolean|Reflects the [organization level setting](https://support.office.com/en-us/article/office-delve-for-office-365-admins-54f87a42-15a4-44b4-9df0-d36287d9531b#bkmk_delveonoff) controlling delegate access to the [trending](/graph/api/resources/insights-trending) API. When set to true, the organization doesn't have access to Office Delve. The relevancy of the content displayed in Microsoft 365, for example in Suggested sites in SharePoint Home and the Discover view in OneDrive for Business is affected for the whole organization. This setting is read-only and can only be changed by administrators in the [SharePoint admin center](https://support.office.com/article/about-the-office-365-admin-center-758befc4-0888-4009-9f14-0d147402fd23?ui=en-US&rs=en-US&ad=US).|
+|contributionToContentDiscoveryDisabled|Boolean|When set to true, the delegate access to the user's [trending](/graph/api/resources/insights-trending) API is disabled. When set to true, documents in the user's Office Delve are disabled. When set to true, the relevancy of the content displayed in Microsoft 365, for example in Suggested sites in SharePoint Home and the Discover view in OneDrive for Business is affected. Users can control this setting in [Office Delve](https://support.office.com/en-us/article/are-my-documents-safe-in-office-delve-f5f409a2-37ed-4452-8f61-681e5e1836f3?ui=en-US&rs=en-US&ad=US#bkmk_optout). |
|id|String|Unique identifier of the user setting. Read-only. Inherited from [entity](entity.md).|
v1.0 Webhooks https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/webhooks.md
ms.localizationpriority: high
ms.prod: "change-notifications" doc_type: conceptualPageType Last updated : 09/10/2022 # Use the Microsoft Graph API to get change notifications
Namespace: microsoft.graph
The Microsoft Graph REST API uses a webhook mechanism to deliver change notifications to clients. A client is a web service that configures its own URL to receive notifications. Client apps use notifications to update their state upon changes. For more details, including how to subscribe to and handle incoming notifications, see [Set up notifications for changes in user data](/graph/webhooks).
-Using the Microsoft Graph API, an app can subscribe to changes in the resources in the table below. Apply the resource path corresponding to your scenario as specified when [creating a subscription](/graph/api/subscription-post-subscriptions).
-
-| **Resource** | **Supported resource paths** | **Resource data can be included in notifications** |
-|:-|:|:--|
-| Cloud printing [printer][] | Changes when a print job is ready to be downloaded (JobFetchable event):<br>`/print/printers/{id}/jobs` | No |
-| Cloud printing [printTaskDefinition][] | Changes when there is a valid job in the queue (JobStarted event) :<br>`/print/printtaskdefinition/{id}/tasks` | No |
-| [driveItem][] on OneDrive (personal) | Changes to content within the hierarchy of _any folder_:<br>`/users/{id}/drive/root` | No |
-| [driveItem][] on OneDrive for Business | Changes to content within the hierarchy of the _root folder_:<br>`/drives/{id}/root`<br> `/users/{id}/drive/root` | No |
-| [group][] | Changes to all groups:<br>`/groups` <br>Changes to a specific group:<br>`/groups/{id}`<br>Changes to owners of a specific group:<br>`/groups/{id}/owners`<br>Changes to members of a specific group:<br>`/groups/{id}/members` | No |
-| [list][] under a SharePoint [site][] | Changes to content within the _list_: <br>`/sites/{id}/lists/{id}` | No |
-| Microsoft 365 group [conversation][] | Changes to a group's conversations:<br>`groups/{id}/conversations` | No |
-| Outlook [message][] | Changes to all messages in a user's mailbox: <br>`/users/{id}/messages`<br>Changes to messages in a user's Inbox:<br>`/users/{id}/mailFolders('inbox')/messages` | No |
-| Outlook [event][] | Changes to all events in a user's mailbox:<br>`/users/{id}/events` | No |
-| Outlook personal [contact][] | Changes to all personal contacts in a user's mailbox:<br>`/users/{id}/contacts` | No |
-| Security [alert][] | Changes to a specific alert:<br>`/security/alerts/{id}` <br>Changes to filtered alerts:<br> `/security/alerts/?$filter`| No |
-| Teams [callRecord][] | Changes to _all_ call records: `/communications/callRecords` | No |
-| Teams [chat][] | Changes to any chat in the tenant:<br>`/chats` <br>Changes to a specific chat:<br>`/chats/{id}` | Yes |
-| Teams [chatMessage][] | Changes to chat messages in all channels in all teams:<br>`/teams/getAllMessages` <br>Changes to chat messages in a specific channel:<br>`/teams/{id}/channels/{id}/messages`<br>Changes to chat messages in all chats:<br>`/chats/getAllMessages` <br>Changes to chat messages in a specific chat:<br>`/chats/{id}/messages` <br>Changes to chat messages in all chats a particular user is part of:<br>`/users/{id}/chats/getAllMessages` | Yes |
-| Teams [channel][] | Changes to channels in all teams:<br>`/teams/getAllChannels` <br>Changes to channel in a specific team:<br>`/teams/{id}/channels` | Yes |
-| Teams [conversationMember][] | Changes to membership in a specific team:<br>`/teams/{id}/members` <br> Changes to membership in all channels under a specific team:<br>`teams/{id}/channels/getAllMembers` <br> Changes to membership in a specific chat:<br>`/chats/{id}/members` <br> Changes to membership in all chats:<br>`/teams/getAllMembers` | Yes |
-| Teams [team][] | Changes to any team in the tenant:<br>`/teams` <br>Changes to a specific team:<br>`/teams/{id}` | Yes |
-| [To Do task][] | Changes to all task in a specific task list:<br>`/me/todo/lists/{todoTaskListId}/tasks` | No |
-| [user][] | Changes to all users:<br>`/users` <br>Changes to a specific user:<br>`/users/{id}`| No |
> **Note**: Any resource path that begins with `/users/{id}` can also accept `/me` to reference the signed-in user.
In general, subscription operations require read permission to the resource. For
## See also -- [Subscription resource type](./subscription.md)-- [List subscriptions](../api/subscription-list.md)-- [Get subscription](../api/subscription-get.md)-- [Create subscription](../api/subscription-post-subscriptions.md)-- [Update subscription](../api/subscription-update.md)-- [Delete subscription](../api/subscription-delete.md)
+- [subscription resource type](./subscription.md)
+- [Training module: Use change notifications and track changes with Microsoft Graph](/training/modules/msgraph-changenotifications-trackchanges)
+- [Lifecycle notifications](/graph/webhooks-lifecycle)
+<!-- Links -->
[chat]: ./chat.md [chatMessage]: ./chatmessage.md [contact]: ./contact.md
In general, subscription operations require read permission to the resource. For
[printTaskDefinition]: ./printtaskdefinition.md [team]: ./team.md [To Do task]: ./todotask.md
-[todoTask]: ./todotask.md
-
+[todoTask]: ./todotask.md
v1.0 Website https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/website.md
Represents a website.
## Properties | Property | Type |Description| |:|:--|:-|
-|type|websiteType| The possible values are: `other`, `home`, `work`, `blog`, `profile`.|
|address|string|The URL of the website.| |displayName|string|The display name of the web site.|
+|type|websiteType| The possible values are: `other`, `home`, `work`, `blog`, `profile`.|
## JSON representation
The following is a JSON representation of the resource.
```json {
- "type": "String",
"address": "string",
- "displayName": "string"
+ "displayName": "string",
+ "type": "String"
} ```
v1.0 Windowshelloforbusinessauthenticationmethod https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/windowshelloforbusinessauthenticationmethod.md
Namespace: microsoft.graph
A representation of a Windows Hello for Business authentication method registered to a user. Windows Hello for Business is a sign-in authentication method for Windows devices.
-Inherits from [authenticationMethod](../resources/authenticationmethod.md).
+This is a derived type that inherits from the [authenticationMethod](authenticationmethod.md) resource type.
## Methods |Method|Return type|Description|
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.windowsHelloForBusinessAuthenticationMethod",
- "id": "String (Identifier)",
"displayName": "String", "createdDateTime": "String",
+ "id": "String (Identifier)",
"keyStrength": {"@odata.type": "microsoft.graph.authenticationMethodKeyStrength"} } ```
v1.0 Workbook https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/workbook.md
None.
| Relationship | Type |Description| |:|:--|:-| |names|[workbookNamedItem](nameditem.md) collection|Represents a collection of workbooks scoped named items (named ranges and constants). Read-only.|
+|operations|[workbookOperation](workbookoperation.md) collection|The status of workbook operations. Getting an operation collection is not supported, but you can get the status of a long-running operation if the `Location` header is returned in the response. Read-only.|
|tables|[workbookTable](table.md) collection|Represents a collection of tables associated with the workbook. Read-only.| |worksheets|[workbookWorksheet](worksheet.md) collection|Represents a collection of worksheets associated with the workbook. Read-only.|
-|operations|[workbookOperation](workbookoperation.md) collection|The status of workbook operations. Getting an operation collection is not supported, but you can get the status of a long-running operation if the `Location` header is returned in the response. Read-only.|
## Functions
v1.0 Workbookoperation https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/workbookoperation.md
Represents the status of a long-running workbook operation.
| Property | Type | Description | |:-|:|:|
-|status|String| The current status of the operation. Possible values are: `NotStarted`, `Running`, `Completed`, `Failed`.|
-|id|String| The operation id. Read-only.|
|error|[workbookOperationError](workbookoperationerror.md)| The error returned by the operation.|
+|id|String| The operation id. Read-only.|
|resourceLocation|String| The resource URI for the result.|
+|status|String| The current status of the operation. Possible values are: `NotStarted`, `Running`, `Completed`, `Failed`.|
+|StatusCode| integer| Status code of the operation. |
## Relationships
The following is a JSON representation of the resource.
```json { "@odata.type": "#microsoft.graph.workbookOperation",
- "id": "String (identifier)",
- "status": "String",
- "resourceLocation": "String",
- "statusCode": "Integer",
"error": { "@odata.type": "microsoft.graph.workbookOperationError"
- }
+ },
+ "id": "String (identifier)",
+ "resourceLocation": "String",
+ "status": "String",
+ "statusCode": "Integer"
} ```
v1.0 Workbookoperationerror https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/workbookoperationerror.md
Represents an error from a failed workbook operation.
| Property | Type | Description | |:-|:|:| |code|String| The error code.|
-|message|String| The error message.|
|innererror|error object| Optional. Additional error objects that may be more specific than the top level error.|
+|message|String| The error message.|
## JSON representation
The following is a JSON representation of the resource.
```json { "code": "String",
- "message": "String",
- "innererror": { "@odata.type": "odata.error" }
+ "innererror": { "@odata.type": "odata.error" },
+ "message": "String"
} ```
v1.0 Workinghours https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/workinghours.md
appropriate time zone.
| Property | Type |Description| |:|:--|:-| | daysOfWeek | dayOfWeek collection | The days of the week on which the user works. |
-| startTime | Edm.TimeOfDay | The time of the day that the user starts working. |
| endTime | Edm.TimeOfDay | The time of the day that the user stops working. |
+| startTime | Edm.TimeOfDay | The time of the day that the user starts working. |
| timeZone | [timeZoneBase](timezonebase.md) | The time zone to which the working hours apply. | ## JSON representation
Here is a JSON representation of the resource.
```json { "daysOfWeek": ["string"],
- "startTime": "String (timeofday)",
"endTime": "String (timeofday)",
+ "startTime": "String (timeofday)",
"timeZone": {"@odata.type": "microsoft.graph.timeZoneBase"} } ```
v1.0 Worksheetprotection https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/worksheetprotection.md
Here is a JSON representation of the resource.
```json {
- "protected": true,
- "options": { "@odata.type": "microsoft.graph.workbookWorksheetProtectionOptions" }
+ "options": { "@odata.type": "microsoft.graph.workbookWorksheetProtectionOptions" },
+ "protected": true
} ```
v1.0 X509certificateauthenticationmethodconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/x509certificateauthenticationmethodconfiguration.md
Inherits from [authenticationMethodConfiguration](../resources/authenticationmet
## Properties |Property|Type|Description| |:|:|:|
-|id|String|The identifier for the authentication method policy. The value is always `X509Certificate`. Inherited from [authenticationMethodConfiguration](../resources/authenticationmethodconfiguration.md).|
-|state|authenticationMethodState|The possible values are: `enabled`, `disabled`. Inherited from [authenticationMethodConfiguration](../resources/authenticationmethodconfiguration.md).|
-|certificateUserBindings|[x509CertificateUserBinding](../resources/x509certificateuserbinding.md) collection|Defines fields in the X.509 certificate that map to attributes of the Azure AD user object in order to bind the certificate to the user. The **priority** of the object determines the order in which the binding is carried out. The first binding that matches will be used and the rest ignored. |
|authenticationModeConfiguration|[x509CertificateAuthenticationModeConfiguration](../resources/x509certificateauthenticationmodeconfiguration.md)|Defines strong authentication configurations. This configuration includes the default authentication mode and the different rules for strong authentication bindings. |
+|certificateUserBindings|[x509CertificateUserBinding](../resources/x509certificateuserbinding.md) collection|Defines fields in the X.509 certificate that map to attributes of the Azure AD user object in order to bind the certificate to the user. The **priority** of the object determines the order in which the binding is carried out. The first binding that matches will be used and the rest ignored. |
+|id|String|The identifier for the authentication method policy. The value is always `X509Certificate`. Inherited from
+|state|authenticationMethodState|The possible values are: `enabled`, `disabled`. Inherited from [authenticationMethodConfiguration](../resources/authenticationmethodconfiguration.md).|
## Relationships |Relationship|Type|Description| |:|:|:|
-|includeTargets|[authenticationMethodTarget](../resources/authenticationmethodtarget.md) collection|A collection of users or groups who are enabled to use the authentication method.|
+|includeTargets|[authenticationMethodTarget](../resources/authenticationmethodtarget.md) collection|A collection of groups that are enabled to use the authentication method.|
## JSON representation The following is a JSON representation of the resource.
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.x509CertificateAuthenticationMethodConfiguration",
- "id": "String (identifier)",
- "state": "String",
+ "authenticationModeConfiguration": {
+ "@odata.type": "microsoft.graph.x509CertificateAuthenticationModeConfiguration"
+ },
"certificateUserBindings": [ { "@odata.type": "microsoft.graph.x509CertificateUserBinding" } ],
- "authenticationModeConfiguration": {
- "@odata.type": "microsoft.graph.x509CertificateAuthenticationModeConfiguration"
- }
+ "id": "String (identifier)",
+ "state": "String"
} ```
v1.0 X509certificateauthenticationmodeconfiguration https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/x509certificateauthenticationmodeconfiguration.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.x509CertificateAuthenticationModeConfiguration",
- "x509CertificateAuthenticationDefaultMode": "String",
"rules": [ { "@odata.type": "microsoft.graph.x509CertificateRule" }
- ]
+ ],
+ "x509CertificateAuthenticationDefaultMode": "String",
} ```
v1.0 X509certificaterule https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/x509certificaterule.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.x509CertificateRule",
- "x509CertificateRuleType": "String",
"identifier": "String",
+ "x509CertificateRuleType": "String",
"x509CertificateAuthenticationMode": "String" } ```
v1.0 X509certificateuserbinding https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/x509certificateuserbinding.md
The following is a JSON representation of the resource.
``` json { "@odata.type": "#microsoft.graph.x509CertificateUserBinding",
- "x509CertificateField": "String",
+ "priority": "Integer",
"userProperty": "String",
- "priority": "Integer"
+ "x509CertificateField": "String"
} ```
v1.0 Toc.Yml https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/toc.yml a/api-reference/v1.0/toc.yml
items:
href: resources/intune-apps-mobileappinstalltimesettings.md - name: Mobile app publishing state href: resources/intune-apps-mobileapppublishingstate.md
+ - name: Mobile contained app
+ href: resources/intune-apps-mobilecontainedapp.md
+ items:
+ - name: List
+ href: api/intune-apps-mobilecontainedapp-list.md
+ - name: Get
+ href: api/intune-apps-mobilecontainedapp-get.md
- name: Mobile LOB app href: resources/intune-apps-mobilelobapp.md items:
items:
href: resources/intune-apps-win32lobappruleoperator.md - name: Win32 LOB app rule type href: resources/intune-apps-win32lobappruletype.md
+ - name: Windows AppX app assignment settings
+ href: resources/intune-apps-windowsappxappassignmentsettings.md
- name: Windows architecture href: resources/intune-apps-windowsarchitecture.md - name: Windows device type href: resources/intune-apps-windowsdevicetype.md
+ - name: Windows microsoft edge app
+ href: resources/intune-apps-windowsmicrosoftedgeapp.md
+ items:
+ - name: List
+ href: api/intune-apps-windowsmicrosoftedgeapp-list.md
+ - name: Get
+ href: api/intune-apps-windowsmicrosoftedgeapp-get.md
+ - name: Create
+ href: api/intune-apps-windowsmicrosoftedgeapp-create.md
+ - name: Delete
+ href: api/intune-apps-windowsmicrosoftedgeapp-delete.md
+ - name: Update
+ href: api/intune-apps-windowsmicrosoftedgeapp-update.md
- name: Windows minimum operating system href: resources/intune-apps-windowsminimumoperatingsystem.md - name: Windows mobile MSI
items:
href: api/intune-apps-windowsuniversalappx-delete.md - name: Update href: api/intune-apps-windowsuniversalappx-update.md
+ - name: Windows universal AppX contained app
+ href: resources/intune-apps-windowsuniversalappxcontainedapp.md
+ items:
+ - name: List
+ href: api/intune-apps-windowsuniversalappxcontainedapp-list.md
+ - name: Get
+ href: api/intune-apps-windowsuniversalappxcontainedapp-get.md
+ - name: Create
+ href: api/intune-apps-windowsuniversalappxcontainedapp-create.md
+ - name: Delete
+ href: api/intune-apps-windowsuniversalappxcontainedapp-delete.md
+ - name: Update
+ href: api/intune-apps-windowsuniversalappxcontainedapp-update.md
- name: Company terms href: resources/intune-company-conceptual.md items:
items:
href: api/orgcontact-get-manager.md - name: Get member objects href: api/directoryobject-getmemberobjects.md
- - name: Subscribed SKU
- href: resources/subscribedsku.md
- items:
- - name: List subscribedSkus
- href: api/subscribedsku-list.md
- - name: Get subscribedSku
- href: api/subscribedsku-get.md
- name: Role management href: resources/rolemanagement.md items:
items:
href: api/unifiedroleassignment-get.md - name: Delete href: api/unifiedroleassignment-delete.md
+ - name: Subscribed SKU
+ href: resources/subscribedsku.md
+ items:
+ - name: List subscribedSkus
+ href: api/subscribedsku-list.md
+ - name: Get subscribedSku
+ href: api/subscribedsku-get.md
- name: Identity and sign-in items: - name: Authentication methods
items:
items: - name: Overview href: resources/security-api-overview.md
- - name: Alert
- href: resources/alert.md
- items:
- - name: List alerts
- href: api/alert-list.md
- - name: Get alert
- href: api/alert-get.md
- - name: Update alert
- href: api/alert-update.md
+ - name: Advanced hunting
+ items:
+ - name: Run hunting query
+ href: api/security-security-runhuntingquery.md
+ - name: Hunting query results
+ href: resources/security-huntingqueryresults.md
+ - name: Hunting row result
+ href: resources/security-huntingrowresult.md
+ - name: Single property schema
+ href: resources/security-singlepropertyschema.md
+ - name: Alerts and incidents
+ items:
+ - name: Alert
+ items:
+ - name: Alert
+ href: resources/security-alert.md
+ - name: List alerts
+ href: api/security-list-alerts_v2.md
+ - name: Get alert
+ href: api/security-alert-get.md
+ - name: Update alert
+ href: api/security-alert-update.md
+ - name: Create comment for alert
+ href: api/security-alert-post-comments.md
+ - name: Alert evidence
+ items:
+ - name: Alert evidence
+ href: resources/security-alertevidence.md
+ - name: Analyzed message evidence
+ href: resources/security-analyzedMessageEvidence.md
+ - name: Cloud application evidence
+ href: resources/security-cloudApplicationEvidence.md
+ - name: Device evidence
+ href: resources/security-deviceEvidence.md
+ - name: File evidence
+ href: resources/security-fileEvidence.md
+ - name: IP evidence
+ href: resources/security-ipEvidence.md
+ - name: Mailbox evidence
+ href: resources/security-mailboxEvidence.md
+ - name: Mail cluster evidence
+ href: resources/security-mailClusterEvidence.md
+ - name: OAuth application evidence
+ href: resources/security-oauthApplicationEvidence.md
+ - name: Process evidence
+ href: resources/security-processEvidence.md
+ - name: Registry key evidence
+ href: resources/security-registryKeyEvidence.md
+ - name: Registry value evidence
+ href: resources/security-registryValueEvidence.md
+ - name: Security group evidence
+ href: resources/security-securityGroupEvidence.md
+ - name: URL evidence
+ href: resources/security-urlEvidence.md
+ - name: User evidence
+ href: resources/security-userEvidence.md
+ - name: Incident
+ items:
+ - name: Incident
+ href: resources/security-incident.md
+ - name: List incidents
+ href: api/security-list-incidents.md
+ - name: Get incident
+ href: api/security-incident-get.md
+ - name: Update incident
+ href: api/security-incident-update.md
+ - name: Create comment for incident
+ href: api/security-incident-post-comments.md
- name: eDiscovery items: - name: Case
items:
href: api/informationprotection-post-threatassessmentrequests.md - name: Get href: api/threatassessmentrequest-get.md
+ - name: Legacy alert
+ items:
+ - name: Alert
+ href: resources/alert.md
+ - name: List alerts
+ href: api/alert-list.md
+ - name: Get alert
+ href: api/alert-get.md
+ - name: Update alert
+ href: api/alert-update.md
- name: Secure score href: resources/securescore.md items:
items:
href: api/sharedwithchannelteaminfo-delete.md - name: List allowed members href: api/sharedwithchannelteaminfo-list-allowedmembers.md
+ - name: Delete message
+ href: api/chatmessage-softdelete.md
+ - name: Undo message deletion
+ href: api/chatmessage-undosoftdelete.md
- name: Chat href: resources/chat.md items:
items:
href: api/chatmessage-post-replies.md - name: Update message href: api/chatmessage-update.md
+ - name: Delete message
+ href: api/chatmessage-softdelete.md
+ - name: Undo message deletion
+ href: api/chatmessage-undosoftdelete.md
- name: List hosted content href: api/chatmessage-list-hostedcontents.md - name: Get messages across all channels
items:
href: api/opentypeextension-post-opentypeextension.md - name: Get open extension href: api/opentypeextension-get.md
+ - name: File attachment
+ items:
+ - name: File attachment
+ href: resources/taskfileattachment.md
+ - name: List
+ href: api/todotask-list-attachments.md
+ - name: Get
+ href: api/taskfileattachment-get.md
+ - name: Delete
+ href: api/taskfileattachment-delete.md
+ - name: Attach all file sizes
+ href: api/taskfileattachment-createuploadsession.md
+ - name: Attach small file
+ href: api/todotask-post-attachments.md
- name: Checklist item href: resources/checklistitem.md items: