IntegrationsWorkspace one uemActions
Get Workspace ONE user
Get one enrollment user by id.
users.get · Workspace ONE UEM · v1
Details
Scopes
ws1.users.read
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
user_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}$ |
user_name | string | No | maxLength 320 |
first_name | string | No | maxLength 200 |
last_name | string | No | maxLength 200 |
email | string | No | maxLength 320 |
status | string | No | maxLength 128 |
organization_group_id | string | No | minLength 1; maxLength 128 |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"user_id": {
"type": "string",
"minLength": 1,
"maxLength": 128
}
},
"required": [
"user_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}$"
},
"user_name": {
"type": "string",
"maxLength": 320
},
"first_name": {
"type": "string",
"maxLength": 200
},
"last_name": {
"type": "string",
"maxLength": 200
},
"email": {
"type": "string",
"maxLength": 320
},
"status": {
"type": "string",
"maxLength": 128
},
"organization_group_id": {
"type": "string",
"minLength": 1,
"maxLength": 128
}
},
"required": [
"id"
]
}