IntegrationsJamf proActions
List Jamf computers
List computer inventory records from Jamf Pro.
computers.list · Jamf Pro · v1
Details
Scopes
jamf.computers.read
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
page_size | integer | No | minimum 1; maximum 100 |
cursor | string | No | minLength 1; maxLength 64 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
computers | array<object> | Yes | maxItems 100 |
computers[] | object | Yes | additionalProperties false |
computers[].id | string | Yes | minLength 1; maxLength 128 |
computers[].name | string | No | maxLength 512 |
computers[].udid | string | No | maxLength 128 |
computers[].serial_number | string | No | maxLength 128 |
computers[].platform | string | No | maxLength 128 |
computers[].os_version | string | No | maxLength 128 |
computers[].management_id | string | No | minLength 1; maxLength 128 |
computers[].last_contact_at | string | No | minLength 1; maxLength 64 |
computers[].last_enrolled_at | string | No | minLength 1; maxLength 64 |
computers[].username | string | No | maxLength 320 |
computers[].email | string | No | maxLength 320 |
next_cursor | string | No | minLength 1; maxLength 64 |
total_count | integer | No | minimum 0 |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"page_size": {
"type": "integer",
"minimum": 1,
"maximum": 100
},
"cursor": {
"type": "string",
"minLength": 1,
"maxLength": 64
}
}
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"computers": {
"type": "array",
"items": {
"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"
]
},
"maxItems": 100
},
"next_cursor": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"total_count": {
"type": "integer",
"minimum": 0
}
},
"required": [
"computers"
]
}