Skip to main content
FuseFuse
IntegrationsWorkspace one uemActions

Get Workspace ONE device

Get one managed device by id.

Agent markdown

devices.get · Workspace ONE UEM · v1

Details

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

Scopes

  • ws1.devices.read

Input

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

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
idstringYesminLength 1; maxLength 128
uuidstringNominLength 36; maxLength 36; pattern ^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$
namestringNomaxLength 512
serial_numberstringNomaxLength 128
udidstringNomaxLength 128
platformstringNomaxLength 128
modelstringNomaxLength 512
os_versionstringNomaxLength 128
ownershipstringNomaxLength 128
enrollment_statusstringNomaxLength 128
compliance_statusstringNomaxLength 128
user_namestringNomaxLength 320
last_seen_atstringNominLength 1; maxLength 64
organization_group_idstringNominLength 1; maxLength 128

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "device_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128
    }
  },
  "required": [
    "device_id"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128
    },
    "uuid": {
      "type": "string",
      "minLength": 36,
      "maxLength": 36,
      "pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"
    },
    "name": {
      "type": "string",
      "maxLength": 512
    },
    "serial_number": {
      "type": "string",
      "maxLength": 128
    },
    "udid": {
      "type": "string",
      "maxLength": 128
    },
    "platform": {
      "type": "string",
      "maxLength": 128
    },
    "model": {
      "type": "string",
      "maxLength": 512
    },
    "os_version": {
      "type": "string",
      "maxLength": 128
    },
    "ownership": {
      "type": "string",
      "maxLength": 128
    },
    "enrollment_status": {
      "type": "string",
      "maxLength": 128
    },
    "compliance_status": {
      "type": "string",
      "maxLength": 128
    },
    "user_name": {
      "type": "string",
      "maxLength": 320
    },
    "last_seen_at": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "organization_group_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128
    }
  },
  "required": [
    "id"
  ]
}