Skip to main content
FuseFuse
IntegrationsJamf proActions

Get mobile device conditional access compliance

Get conditional access device compliance information for a mobile device.

Agent markdown

conditional_access.mobile_device.get · Jamf Pro · v1

Details

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

Scopes

  • jamf.conditional_access.read

Input

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

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
device_idstringYesminLength 1; maxLength 128
compliance_statusstringNomaxLength 128
last_compliance_check_atstringNominLength 1; maxLength 64
applicablebooleanNo
compliance_vendorstringNomaxLength 512

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "mobile_device_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128
    }
  },
  "required": [
    "mobile_device_id"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "device_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128
    },
    "compliance_status": {
      "type": "string",
      "maxLength": 128
    },
    "last_compliance_check_at": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "applicable": {
      "type": "boolean"
    },
    "compliance_vendor": {
      "type": "string",
      "maxLength": 512
    }
  },
  "required": [
    "device_id"
  ]
}