Skip to main content
FuseFuse
IntegrationsMicrosoft intuneActions

Get Intune managed device

Get one managed device by id.

Agent markdown

devices.get · Microsoft Intune · v1

Details

Risk
Read
Idempotency
Safe
Availability
Default
Exposure
REST, SDK
MCP hints
readOnly=true, destructive=false, idempotent=true, openWorld=true

Scopes

  • intune.devices.read

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
device_idstringYesminLength 1; maxLength 128

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
idstringYesminLength 1; maxLength 128
device_namestringNomaxLength 512
operating_systemstringNomaxLength 512
os_versionstringNomaxLength 128
compliance_statestringNomaxLength 128
management_statestringNomaxLength 128
ownershipstringNomaxLength 128
azure_ad_device_idstringNominLength 1; maxLength 128
user_idstringNominLength 1; maxLength 128
user_principal_namestringNomaxLength 320
serial_numberstringNomaxLength 128
last_sync_atstringNominLength 1; maxLength 64
enrolled_atstringNominLength 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"
  ]
}