> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Import Device Identity List

Import a list of device identities into Intune.

* **Least privileged** Microsoft Graph permission to access the action via **application**: `DeviceManagementServiceConfig.ReadWrite.All`.

<Note>
  External Documentation

  To learn more, visit the [Microsoft Intune documentation](https://learn.microsoft.com/en-us/graph/api/intune-enrollment-importeddeviceidentity-importdeviceidentitylist?view=graph-rest-beta).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter                            | Description                                                                                                                                                                                                                                               |
  | ------------------------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Imported Device Identities           | The list of device identities to import.<br /><br />Example:<br /><pre><code>\[<br />    \{<br />      "importedDeviceIdentifier": "4900",<br />      "importedDeviceIdentityType": "imei",<br />      "platform": "ios"<br />    }<br />  ]</code></pre> |
  | Overwrite Imported Device Identities | Select to overwrite imported device identities that match the imported device identities in the list.                                                                                                                                                     |
</div>

## Example Output

```json theme={"dark"}
{
	"value": [
		{
			"@odata.type": "#microsoft.graph.importedDeviceIdentityResult",
			"id": "9dfd3690-3690-9dfd-9036-fd9d9036fd9d",
			"importedDeviceIdentifier": "Imported Device Identifier value",
			"importedDeviceIdentityType": "imei",
			"lastModifiedDateTime": "2017-01-01T00:00:35.1329464-08:00",
			"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
		}
	]
}
```

## Workflow Library Example

[Import Device Identity List with Microsoft Intune and Send Results Via Email](https://library.blinkops.com/workflows/import-device-identity-list-with-microsoft-intune-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/import-device-identity-list-with-microsoft-intune-and-send-results-via-email/canvas" />
</div>
