IntegrationsJamf proActions
Get Jamf computer
Get one computer inventory record by id.
computers.get · Jamf Pro · v1
Details
Scopes
jamf.computers.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 |
id | string | Yes | minLength 1; maxLength 128 |
name | string | No | maxLength 512 |
udid | string | No | maxLength 128 |
serial_number | string | No | maxLength 128 |
platform | string | No | maxLength 128 |
os_version | string | No | maxLength 128 |
management_id | string | No | minLength 1; maxLength 128 |
last_contact_at | string | No | minLength 1; maxLength 64 |
last_enrolled_at | string | No | minLength 1; maxLength 64 |
username | string | No | maxLength 320 |
email | string | No | maxLength 320 |
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": {
"id": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"name": {
"type": "string",
"maxLength": 512
},
"udid": {
"type": "string",
"maxLength": 128
},
"serial_number": {
"type": "string",
"maxLength": 128
},
"platform": {
"type": "string",
"maxLength": 128
},
"os_version": {
"type": "string",
"maxLength": 128
},
"management_id": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"last_contact_at": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"last_enrolled_at": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"username": {
"type": "string",
"maxLength": 320
},
"email": {
"type": "string",
"maxLength": 320
}
},
"required": [
"id"
]
}