Skip to main content
FuseFuse
IntegrationsMicrosoft intuneActions

List Intune managed devices

List managed devices in the connected Intune tenant.

Agent markdown

devices.list · 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
page_sizeintegerNominimum 1; maximum 100
cursorstringNominLength 1; maxLength 2048

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
devicesarray<object>YesmaxItems 100
devices[]objectYesadditionalProperties false
devices[].idstringYesminLength 1; maxLength 128
devices[].device_namestringNomaxLength 512
devices[].operating_systemstringNomaxLength 512
devices[].os_versionstringNomaxLength 128
devices[].compliance_statestringNomaxLength 128
devices[].management_statestringNomaxLength 128
devices[].ownershipstringNomaxLength 128
devices[].azure_ad_device_idstringNominLength 1; maxLength 128
devices[].user_idstringNominLength 1; maxLength 128
devices[].user_principal_namestringNomaxLength 320
devices[].serial_numberstringNomaxLength 128
devices[].last_sync_atstringNominLength 1; maxLength 64
devices[].enrolled_atstringNominLength 1; maxLength 64
next_cursorstringNominLength 1; maxLength 2048

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "page_size": {
      "type": "integer",
      "minimum": 1,
      "maximum": 100
    },
    "cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 2048
    }
  }
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "devices": {
      "type": "array",
      "items": {
        "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"
        ]
      },
      "maxItems": 100
    },
    "next_cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 2048
    }
  },
  "required": [
    "devices"
  ]
}