Skip to main content
FuseFuse
IntegrationsWorkspace one uemActions

List Workspace ONE device apps

List applications reported for a managed device.

Agent markdown

devices.apps.list · Workspace ONE UEM · v1

Details

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

Scopes

  • ws1.device_apps.read

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
device_idstringYesminLength 1; maxLength 128
page_sizeintegerNominimum 1; maximum 100
cursorstringNominLength 1; maxLength 64

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
appsarray<object>YesmaxItems 100
apps[]objectYesadditionalProperties false
apps[].idstringYesminLength 1; maxLength 128
apps[].namestringNomaxLength 512
apps[].bundle_idstringNomaxLength 320
apps[].versionstringNomaxLength 128
apps[].statusstringNomaxLength 128
apps[].installedbooleanNo
next_cursorstringNominLength 1; maxLength 64
total_countintegerNominimum 0

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "device_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128
    },
    "page_size": {
      "type": "integer",
      "minimum": 1,
      "maximum": 100
    },
    "cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    }
  },
  "required": [
    "device_id"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "apps": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "id": {
            "type": "string",
            "minLength": 1,
            "maxLength": 128
          },
          "name": {
            "type": "string",
            "maxLength": 512
          },
          "bundle_id": {
            "type": "string",
            "maxLength": 320
          },
          "version": {
            "type": "string",
            "maxLength": 128
          },
          "status": {
            "type": "string",
            "maxLength": 128
          },
          "installed": {
            "type": "boolean"
          }
        },
        "required": [
          "id"
        ]
      },
      "maxItems": 100
    },
    "next_cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "total_count": {
      "type": "integer",
      "minimum": 0
    }
  },
  "required": [
    "apps"
  ]
}