Skip to main content
FuseFuse
IntegrationsJamf proActions

Get Jamf mobile device

Get one mobile device inventory record by id.

Agent markdown

mobile_devices.get · Jamf Pro · v1

Details

Risk
Read
Idempotency
Safe
Availability
Default
Exposure
REST, SDK
MCP hints
readOnly=true, destructive=false, idempotent=true, openWorld=true

Scopes

  • jamf.mobile_devices.read

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
mobile_device_idstringYesminLength 1; maxLength 128

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
idstringYesminLength 1; maxLength 128
namestringNomaxLength 512
udidstringNomaxLength 128
serial_numberstringNomaxLength 128
modelstringNomaxLength 512
os_versionstringNomaxLength 128
management_idstringNominLength 1; maxLength 128
last_inventory_update_atstringNominLength 1; maxLength 64
usernamestringNomaxLength 320
emailstringNomaxLength 320
supervisedbooleanNo

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"
  ]
}