IntegrationsMicrosoft intuneActions
Get Intune managed device
Get one managed device by id.
devices.get · Microsoft Intune · v1
Details
Scopes
intune.devices.read
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
device_id | string | Yes | minLength 1; maxLength 128 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
id | string | Yes | minLength 1; maxLength 128 |
device_name | string | No | maxLength 512 |
operating_system | string | No | maxLength 512 |
os_version | string | No | maxLength 128 |
compliance_state | string | No | maxLength 128 |
management_state | string | No | maxLength 128 |
ownership | string | No | maxLength 128 |
azure_ad_device_id | string | No | minLength 1; maxLength 128 |
user_id | string | No | minLength 1; maxLength 128 |
user_principal_name | string | No | maxLength 320 |
serial_number | string | No | maxLength 128 |
last_sync_at | string | No | minLength 1; maxLength 64 |
enrolled_at | string | No | minLength 1; maxLength 64 |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"device_id": {
"type": "string",
"minLength": 1,
"maxLength": 128
}
},
"required": [
"device_id"
]
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"device_name": {
"type": "string",
"maxLength": 512
},
"operating_system": {
"type": "string",
"maxLength": 512
},
"os_version": {
"type": "string",
"maxLength": 128
},
"compliance_state": {
"type": "string",
"maxLength": 128
},
"management_state": {
"type": "string",
"maxLength": 128
},
"ownership": {
"type": "string",
"maxLength": 128
},
"azure_ad_device_id": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"user_id": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"user_principal_name": {
"type": "string",
"maxLength": 320
},
"serial_number": {
"type": "string",
"maxLength": 128
},
"last_sync_at": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"enrolled_at": {
"type": "string",
"minLength": 1,
"maxLength": 64
}
},
"required": [
"id"
]
}