Create importedAppleDeviceIdentityResult

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.

Create a new importedAppleDeviceIdentityResult object.

This API is available in the following national cloud deployments.

Global service US Government L4 US Government L5 (DOD) China operated by 21Vianet

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) DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All
Delegated (personal Microsoft account) Not supported.
Application DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All

HTTP Request

POST /deviceManagement/depOnboardingSettings/{depOnboardingSettingId}/importedAppleDeviceIdentities

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 importedAppleDeviceIdentityResult object.

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

Property Type Description
id String Key of the entity. Inherited from importedAppleDeviceIdentity
serialNumber String Device serial number Inherited from importedAppleDeviceIdentity
requestedEnrollmentProfileId String Enrollment profile Id admin intends to apply to the device during next enrollment Inherited from importedAppleDeviceIdentity
requestedEnrollmentProfileAssignmentDateTime DateTimeOffset The time enrollment profile was assigned to the device Inherited from importedAppleDeviceIdentity
isSupervised Boolean Indicates if the Apple device is supervised. Inherited from importedAppleDeviceIdentity
discoverySource discoverySource Apple device discovery source. Inherited from importedAppleDeviceIdentity. Possible values are: unknown, adminImport, deviceEnrollmentProgram.
isDeleted Boolean Indicates if the device is deleted from Apple Business Manager Inherited from importedAppleDeviceIdentity
createdDateTime DateTimeOffset Created Date Time of the device Inherited from importedAppleDeviceIdentity
lastContactedDateTime DateTimeOffset Last Contacted Date Time of the device Inherited from importedAppleDeviceIdentity
description String The description of the device Inherited from importedAppleDeviceIdentity
enrollmentState enrollmentState The state of the device in Intune Inherited from importedAppleDeviceIdentity. Possible values are: unknown, enrolled, pendingReset, failed, notContacted, blocked.
platform platform The platform of the Device. Inherited from importedAppleDeviceIdentity. Possible values are: unknown, ios, android, windows, windowsMobile, macOS.
status Boolean Status of imported device identity

Response

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

Example

Request

Here is an example of the request.

POST https://graph.microsoft.com/beta/deviceManagement/depOnboardingSettings/{depOnboardingSettingId}/importedAppleDeviceIdentities
Content-type: application/json
Content-length: 544

{
  "@odata.type": "#microsoft.graph.importedAppleDeviceIdentityResult",
  "serialNumber": "Serial Number value",
  "requestedEnrollmentProfileId": "Requested Enrollment Profile Id value",
  "requestedEnrollmentProfileAssignmentDateTime": "2017-01-01T00:02:32.8167841-08:00",
  "isSupervised": true,
  "discoverySource": "adminImport",
  "isDeleted": true,
  "lastContactedDateTime": "2016-12-31T23:58:44.2908994-08:00",
  "description": "Description value",
  "enrollmentState": "enrolled",
  "platform": "ios",
  "status": true
}

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: 652

{
  "@odata.type": "#microsoft.graph.importedAppleDeviceIdentityResult",
  "id": "557cfb4a-fb4a-557c-4afb-7c554afb7c55",
  "serialNumber": "Serial Number value",
  "requestedEnrollmentProfileId": "Requested Enrollment Profile Id value",
  "requestedEnrollmentProfileAssignmentDateTime": "2017-01-01T00:02:32.8167841-08:00",
  "isSupervised": true,
  "discoverySource": "adminImport",
  "isDeleted": true,
  "createdDateTime": "2017-01-01T00:02:43.5775965-08:00",
  "lastContactedDateTime": "2016-12-31T23:58:44.2908994-08:00",
  "description": "Description value",
  "enrollmentState": "enrolled",
  "platform": "ios",
  "status": true
}