appleUserInitiatedEnrollmentProfile 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 for the tenant.

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.

Methods

Method Return Type Description
List appleUserInitiatedEnrollmentProfiles appleUserInitiatedEnrollmentProfile collection List properties and relationships of the appleUserInitiatedEnrollmentProfile objects.
Get appleUserInitiatedEnrollmentProfile appleUserInitiatedEnrollmentProfile Read properties and relationships of the appleUserInitiatedEnrollmentProfile object.
Create appleUserInitiatedEnrollmentProfile appleUserInitiatedEnrollmentProfile Create a new appleUserInitiatedEnrollmentProfile object.
Delete appleUserInitiatedEnrollmentProfile None Deletes a appleUserInitiatedEnrollmentProfile.
Update appleUserInitiatedEnrollmentProfile appleUserInitiatedEnrollmentProfile Update the properties of a appleUserInitiatedEnrollmentProfile object.
setPriority action None

Properties

Property Type Description
defaultEnrollmentType appleUserInitiatedEnrollmentType The default profile enrollment type. Possible values are: unknown, device, user, accountDrivenUserEnrollment, webDeviceEnrollment, unknownFutureValue.
availableEnrollmentTypeOptions appleOwnerTypeEnrollmentType collection List of available enrollment type options
id String The GUID for the object
displayName String Name of the profile
description String Description of the profile
priority Int32 Priority, 0 is highest
platform devicePlatformType The platform of the Device. Possible values are: android, androidForWork, iOS, macOS, windowsPhone81, windows81AndLater, windows10AndLater, androidWorkProfile, unknown, androidAOSP, androidMobileApplicationManagement, iOSMobileApplicationManagement, unknownFutureValue.
createdDateTime DateTimeOffset Profile creation time
lastModifiedDateTime DateTimeOffset Profile last modified time

Relationships

Relationship Type Description
assignments appleEnrollmentProfileAssignment collection The list of assignments for this profile.

JSON Representation

Here is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.appleUserInitiatedEnrollmentProfile",
  "defaultEnrollmentType": "String",
  "availableEnrollmentTypeOptions": [
    {
      "@odata.type": "microsoft.graph.appleOwnerTypeEnrollmentType",
      "ownerType": "String",
      "enrollmentType": "String"
    }
  ],
  "id": "String (identifier)",
  "displayName": "String",
  "description": "String",
  "priority": 1024,
  "platform": "String",
  "createdDateTime": "String (timestamp)",
  "lastModifiedDateTime": "String (timestamp)"
}