Skip to main content
FuseFuse
IntegrationsMicrosoft intuneActions

List Intune detected apps

List apps detected on managed devices.

Agent markdown

detected_apps.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
detected_appsarray<object>YesmaxItems 100
detected_apps[]objectYesadditionalProperties false
detected_apps[].idstringYesminLength 1; maxLength 128
detected_apps[].display_namestringNomaxLength 512
detected_apps[].versionstringNomaxLength 128
detected_apps[].size_in_bytesintegerNominimum 0
detected_apps[].device_countintegerNominimum 0
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": {
    "detected_apps": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "id": {
            "type": "string",
            "minLength": 1,
            "maxLength": 128
          },
          "display_name": {
            "type": "string",
            "maxLength": 512
          },
          "version": {
            "type": "string",
            "maxLength": 128
          },
          "size_in_bytes": {
            "type": "integer",
            "minimum": 0
          },
          "device_count": {
            "type": "integer",
            "minimum": 0
          }
        },
        "required": [
          "id"
        ]
      },
      "maxItems": 100
    },
    "next_cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 2048
    }
  },
  "required": [
    "detected_apps"
  ]
}