IntegrationsWorkspace one uemActions
Get Workspace ONE device
Get one managed device by id.
devices.get · Workspace ONE UEM · v1
Details
Scopes
ws1.devices.read
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
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 |
uuid | string | No | 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 | string | No | maxLength 512 |
serial_number | string | No | maxLength 128 |
udid | string | No | maxLength 128 |
platform | string | No | maxLength 128 |
model | string | No | maxLength 512 |
os_version | string | No | maxLength 128 |
ownership | string | No | maxLength 128 |
enrollment_status | string | No | maxLength 128 |
compliance_status | string | No | maxLength 128 |
user_name | string | No | maxLength 320 |
last_seen_at | string | No | minLength 1; maxLength 64 |
organization_group_id | string | No | minLength 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"
]
}