ManagedDevice
Devices that are managed or pre-enrolled through Intune.
ComplianceConfiguration ManagementDevice ManagementEndpoint ManagementMobile Device ManagementPatch ManagementSoftware Deployment
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier for the device. |
| userId | string | Unique identifier for the user associated with the device. |
| deviceName | string | Name of the device. |
| managedDeviceOwnerType | string | Ownership of the device. |
| enrolledDateTime | string | Enrollment time of the device. |
| lastSyncDateTime | string | The date and time that the device last completed a successful sync with Intune. |
| operatingSystem | string | Operating system of the device (Windows, iOS, etc.). |
| complianceState | string | Compliance state of the device. |
| jailBroken | string | Whether the device is jail broken or rooted. |
| managementAgent | string | Management channel of the device. |
| osVersion | string | Operating system version of the device. |
| easActivated | boolean | Whether the device is Exchange ActiveSync activated. |
| easDeviceId | string | Exchange ActiveSync Id of the device. |
| azureADRegistered | boolean | Whether the device is Azure Active Directory registered. |
| deviceEnrollmentType | string | Enrollment type of the device. |
| emailAddress | string | Email(s) for the user associated with the device. |
| azureADDeviceId | string | The unique identifier for the Azure Active Directory device. |
| deviceRegistrationState | string | Device registration state. |
| isSupervised | boolean | Device supervised status. |
| isEncrypted | boolean | Device encryption status. |
| userPrincipalName | string | Device user principal name. |
| model | string | Model of the device. |
| manufacturer | string | Manufacturer of the device. |
| imei | string | IMEI. |
| serialNumber | string | Serial number of the device. |
| phoneNumber | string | Phone number of the device. |
| androidSecurityPatchLevel | string | Android security patch level. |
| userDisplayName | string | User display name. |
| wiFiMacAddress | string | Wi-Fi MAC address. |
| subscriberCarrier | string | Subscriber carrier. |
| meid | string | MEID. |
| totalStorageSpaceInBytes | integer | Total storage in bytes. |
| freeStorageSpaceInBytes | integer | Free storage in bytes. |
| managedDeviceName | string | Automatically generated name to identify a device. Can be overwritten to a user friendly name. |
| partnerReportedThreatState | string | Threat state of a device when a Mobile Threat Defense partner is in use. |
| physicalMemoryInBytes | integer | Total memory in bytes. |
| enrollmentProfileName | string | Name of the enrollment profile assigned to the device. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ManagedDevice",
"title": "ManagedDevice",
"type": "object",
"description": "Devices that are managed or pre-enrolled through Intune.",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the device.",
"readOnly": true
},
"userId": {
"type": "string",
"description": "Unique identifier for the user associated with the device.",
"readOnly": true
},
"deviceName": {
"type": "string",
"description": "Name of the device.",
"readOnly": true
},
"managedDeviceOwnerType": {
"type": "string",
"description": "Ownership of the device.",
"enum": [
"unknown",
"company",
"personal"
]
},
"enrolledDateTime": {
"type": "string",
"format": "date-time",
"description": "Enrollment time of the device.",
"readOnly": true
},
"lastSyncDateTime": {
"type": "string",
"format": "date-time",
"description": "The date and time that the device last completed a successful sync with Intune.",
"readOnly": true
},
"operatingSystem": {
"type": "string",
"description": "Operating system of the device (Windows, iOS, etc.).",
"readOnly": true
},
"complianceState": {
"type": "string",
"description": "Compliance state of the device.",
"enum": [
"unknown",
"compliant",
"noncompliant",
"conflict",
"error",
"inGracePeriod",
"configManager"
]
},
"jailBroken": {
"type": "string",
"description": "Whether the device is jail broken or rooted.",
"readOnly": true
},
"managementAgent": {
"type": "string",
"description": "Management channel of the device.",
"enum": [
"eas",
"mdm",
"easMdm",
"intuneClient",
"easIntuneClient",
"configurationManagerClient",
"configurationManagerClientMdm",
"configurationManagerClientMdmEas",
"unknown",
"jamf",
"googleCloudDevicePolicyController"
]
},
"osVersion": {
"type": "string",
"description": "Operating system version of the device.",
"readOnly": true
},
"easActivated": {
"type": "boolean",
"description": "Whether the device is Exchange ActiveSync activated.",
"readOnly": true
},
"easDeviceId": {
"type": "string",
"description": "Exchange ActiveSync Id of the device.",
"readOnly": true
},
"azureADRegistered": {
"type": "boolean",
"description": "Whether the device is Azure Active Directory registered.",
"readOnly": true
},
"deviceEnrollmentType": {
"type": "string",
"description": "Enrollment type of the device.",
"enum": [
"unknown",
"userEnrollment",
"deviceEnrollmentManager",
"appleBulkWithUser",
"appleBulkWithoutUser",
"windowsAzureADJoin",
"windowsBulkUserless",
"windowsAutoEnrollment",
"windowsBulkAzureDomainJoin",
"windowsCoManagement",
"windowsAzureADJoinUsingDeviceAuth",
"appleUserEnrollment",
"appleUserEnrollmentWithServiceAccount"
],
"readOnly": true
},
"emailAddress": {
"type": "string",
"description": "Email(s) for the user associated with the device.",
"readOnly": true
},
"azureADDeviceId": {
"type": "string",
"description": "The unique identifier for the Azure Active Directory device.",
"readOnly": true
},
"deviceRegistrationState": {
"type": "string",
"description": "Device registration state.",
"enum": [
"notRegistered",
"registered",
"revoked",
"keyConflict",
"approvalPending",
"certificateReset",
"notRegisteredPendingEnrollment",
"unknown"
],
"readOnly": true
},
"isSupervised": {
"type": "boolean",
"description": "Device supervised status.",
"readOnly": true
},
"isEncrypted": {
"type": "boolean",
"description": "Device encryption status.",
"readOnly": true
},
"userPrincipalName": {
"type": "string",
"description": "Device user principal name.",
"readOnly": true
},
"model": {
"type": "string",
"description": "Model of the device.",
"readOnly": true
},
"manufacturer": {
"type": "string",
"description": "Manufacturer of the device.",
"readOnly": true
},
"imei": {
"type": "string",
"description": "IMEI.",
"readOnly": true
},
"serialNumber": {
"type": "string",
"description": "Serial number of the device.",
"readOnly": true
},
"phoneNumber": {
"type": "string",
"description": "Phone number of the device.",
"readOnly": true
},
"androidSecurityPatchLevel": {
"type": "string",
"description": "Android security patch level.",
"readOnly": true
},
"userDisplayName": {
"type": "string",
"description": "User display name.",
"readOnly": true
},
"wiFiMacAddress": {
"type": "string",
"description": "Wi-Fi MAC address.",
"readOnly": true
},
"subscriberCarrier": {
"type": "string",
"description": "Subscriber carrier.",
"readOnly": true
},
"meid": {
"type": "string",
"description": "MEID.",
"readOnly": true
},
"totalStorageSpaceInBytes": {
"type": "integer",
"format": "int64",
"description": "Total storage in bytes.",
"readOnly": true
},
"freeStorageSpaceInBytes": {
"type": "integer",
"format": "int64",
"description": "Free storage in bytes.",
"readOnly": true
},
"managedDeviceName": {
"type": "string",
"description": "Automatically generated name to identify a device. Can be overwritten to a user friendly name."
},
"partnerReportedThreatState": {
"type": "string",
"description": "Threat state of a device when a Mobile Threat Defense partner is in use.",
"enum": [
"unknown",
"activated",
"deactivated",
"secured",
"lowSeverity",
"mediumSeverity",
"highSeverity",
"unresponsive",
"compromised",
"misconfigured"
],
"readOnly": true
},
"physicalMemoryInBytes": {
"type": "integer",
"format": "int64",
"description": "Total memory in bytes.",
"readOnly": true
},
"enrollmentProfileName": {
"type": "string",
"description": "Name of the enrollment profile assigned to the device.",
"readOnly": true
}
}
}