Skip to main content
FuseFuse
IntegrationsWorkspace one uemActions

List Workspace ONE device compliance

List compliance evaluation details for a managed device.

Agent markdown

devices.compliance.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_compliance.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
compliance_itemsarray<object>YesmaxItems 100
compliance_items[]objectYesadditionalProperties false
compliance_items[].idstringYesminLength 1; maxLength 128
compliance_items[].policy_namestringNomaxLength 512
compliance_items[].statusstringNomaxLength 128
compliance_items[].last_compliance_check_atstringNominLength 1; maxLength 64
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": {
    "compliance_items": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "id": {
            "type": "string",
            "minLength": 1,
            "maxLength": 128
          },
          "policy_name": {
            "type": "string",
            "maxLength": 512
          },
          "status": {
            "type": "string",
            "maxLength": 128
          },
          "last_compliance_check_at": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          }
        },
        "required": [
          "id"
        ]
      },
      "maxItems": 100
    },
    "next_cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "total_count": {
      "type": "integer",
      "minimum": 0
    }
  },
  "required": [
    "compliance_items"
  ]
}