IntegrationsJamf proActions
Get computer conditional access compliance
Get conditional access device compliance information for a computer.
conditional_access.computer.get · Jamf Pro · v1
Details
Scopes
jamf.conditional_access.read
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
computer_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": {
"computer_id": {
"type": "string",
"minLength": 1,
"maxLength": 128
}
},
"required": [
"computer_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"
]
}