IntegrationsWorkspace one uemActions
List Workspace ONE device apps
List applications reported for a managed device.
devices.apps.list · Workspace ONE UEM · v1
Details
Scopes
ws1.device_apps.read
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
device_id | string | Yes | minLength 1; maxLength 128 |
page_size | integer | No | minimum 1; maximum 100 |
cursor | string | No | minLength 1; maxLength 64 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
apps | array<object> | Yes | maxItems 100 |
apps[] | object | Yes | additionalProperties false |
apps[].id | string | Yes | minLength 1; maxLength 128 |
apps[].name | string | No | maxLength 512 |
apps[].bundle_id | string | No | maxLength 320 |
apps[].version | string | No | maxLength 128 |
apps[].status | string | No | maxLength 128 |
apps[].installed | boolean | No | — |
next_cursor | string | No | minLength 1; maxLength 64 |
total_count | integer | No | minimum 0 |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"device_id": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"page_size": {
"type": "integer",
"minimum": 1,
"maximum": 100
},
"cursor": {
"type": "string",
"minLength": 1,
"maxLength": 64
}
},
"required": [
"device_id"
]
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"apps": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"name": {
"type": "string",
"maxLength": 512
},
"bundle_id": {
"type": "string",
"maxLength": 320
},
"version": {
"type": "string",
"maxLength": 128
},
"status": {
"type": "string",
"maxLength": 128
},
"installed": {
"type": "boolean"
}
},
"required": [
"id"
]
},
"maxItems": 100
},
"next_cursor": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"total_count": {
"type": "integer",
"minimum": 0
}
},
"required": [
"apps"
]
}