IntegrationsJamf proActions
List Jamf mobile devices
List mobile device inventory records from Jamf Pro.
mobile_devices.list · Jamf Pro · v1
Details
Scopes
jamf.mobile_devices.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 |
mobile_devices | array<object> | Yes | maxItems 100 |
mobile_devices[] | object | Yes | additionalProperties false |
mobile_devices[].id | string | Yes | minLength 1; maxLength 128 |
mobile_devices[].name | string | No | maxLength 512 |
mobile_devices[].udid | string | No | maxLength 128 |
mobile_devices[].serial_number | string | No | maxLength 128 |
mobile_devices[].model | string | No | maxLength 512 |
mobile_devices[].os_version | string | No | maxLength 128 |
mobile_devices[].management_id | string | No | minLength 1; maxLength 128 |
mobile_devices[].last_inventory_update_at | string | No | minLength 1; maxLength 64 |
mobile_devices[].username | string | No | maxLength 320 |
mobile_devices[].email | string | No | maxLength 320 |
mobile_devices[].supervised | boolean | No | — |
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": {
"mobile_devices": {
"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
},
"model": {
"type": "string",
"maxLength": 512
},
"os_version": {
"type": "string",
"maxLength": 128
},
"management_id": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"last_inventory_update_at": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"username": {
"type": "string",
"maxLength": 320
},
"email": {
"type": "string",
"maxLength": 320
},
"supervised": {
"type": "boolean"
}
},
"required": [
"id"
]
},
"maxItems": 100
},
"next_cursor": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"total_count": {
"type": "integer",
"minimum": 0
}
},
"required": [
"mobile_devices"
]
}