IntegrationsJamf proActions
Get mobile device conditional access compliance
Get conditional access device compliance information for a mobile device.
conditional_access.mobile_device.get · Jamf Pro · v1
Details
Scopes
jamf.conditional_access.read
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
mobile_device_id | string | Yes | minLength 1; maxLength 128 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
device_id | string | Yes | minLength 1; maxLength 128 |
compliance_status | string | No | maxLength 128 |
last_compliance_check_at | string | No | minLength 1; maxLength 64 |
applicable | boolean | No | — |
compliance_vendor | string | No | maxLength 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"
]
}