IntegrationsJamf proActions
Get Jamf mobile device
Get one mobile device inventory record by id.
mobile_devices.get · Jamf Pro · v1
Details
Scopes
jamf.mobile_devices.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 |
id | string | Yes | minLength 1; maxLength 128 |
name | string | No | maxLength 512 |
udid | string | No | maxLength 128 |
serial_number | string | No | maxLength 128 |
model | string | No | maxLength 512 |
os_version | string | No | maxLength 128 |
management_id | string | No | minLength 1; maxLength 128 |
last_inventory_update_at | string | No | minLength 1; maxLength 64 |
username | string | No | maxLength 320 |
email | string | No | maxLength 320 |
supervised | boolean | No | — |
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": {
"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"
]
}