iosHomeScreenFolder resource type

Namespace: microsoft.graph

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

A folder containing pages of apps and web clips on the Home Screen.

Inherits from iosHomeScreenItem

Properties

Property Type Description
displayName String Name of the app Inherited from iosHomeScreenItem
pages iosHomeScreenFolderPage collection Pages of Home Screen Layout Icons which must be applications or web clips. This collection can contain a maximum of 500 elements.

Relationships

None

JSON Representation

Here is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.iosHomeScreenFolder",
  "displayName": "String",
  "pages": [
    {
      "@odata.type": "microsoft.graph.iosHomeScreenFolderPage",
      "displayName": "String",
      "apps": [
        {
          "@odata.type": "microsoft.graph.iosHomeScreenApp",
          "displayName": "String",
          "bundleID": "String"
        }
      ]
    }
  ]
}