Skip to content

Latest commit

 

History

History
141 lines (110 loc) · 5.55 KB

intune-apps-mobileappassignment-create.md

File metadata and controls

141 lines (110 loc) · 5.55 KB
title description author localization_priority ms.subservice doc_type
Create mobileAppAssignment
Create a new mobileAppAssignment object.
jaiprakashmb
Normal
intune
apiPageType

Create mobileAppAssignment

Namespace: microsoft.graph

Note: The Microsoft Graph API for Intune requires an active Intune license for the tenant.

Create a new mobileAppAssignment object.

[!INCLUDE national-cloud-support]

Permissions

One of the following permissions is required to call this API. To learn more, including how to choose permissions, see Permissions.

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

POST /deviceAppManagement/mobileApps/{mobileAppId}/assignments

Request headers

Header Value
Authorization Bearer {token}. Required. Learn more about authentication and authorization.
Accept application/json

Request body

In the request body, supply a JSON representation for the mobileAppAssignment object.

The following table shows the properties that are required when you create the mobileAppAssignment.

Property Type Description
id String Key of the entity.
intent installIntent The install intent defined by the admin. Possible values are: available, required, uninstall, availableWithoutEnrollment.
target deviceAndAppManagementAssignmentTarget The target group assignment defined by the admin.
settings mobileAppAssignmentSettings The settings for target assignment defined by the admin.

Response

If successful, this method returns a 201 Created response code and a mobileAppAssignment object in the response body.

Example

Request

Here is an example of the request.

POST https://graph.microsoft.com/v1.0/deviceAppManagement/mobileApps/{mobileAppId}/assignments
Content-type: application/json
Content-length: 312

{
  "@odata.type": "#microsoft.graph.mobileAppAssignment",
  "intent": "required",
  "target": {
    "@odata.type": "microsoft.graph.allLicensedUsersAssignmentTarget"
  },
  "settings": {
    "@odata.type": "microsoft.graph.windowsUniversalAppXAppAssignmentSettings",
    "useDeviceContext": true
  }
}

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]


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/1.1 201 Created
Content-Type: application/json
Content-Length: 361

{
  "@odata.type": "#microsoft.graph.mobileAppAssignment",
  "id": "591620b7-20b7-5916-b720-1659b7201659",
  "intent": "required",
  "target": {
    "@odata.type": "microsoft.graph.allLicensedUsersAssignmentTarget"
  },
  "settings": {
    "@odata.type": "microsoft.graph.windowsUniversalAppXAppAssignmentSettings",
    "useDeviceContext": true
  }
}