IntegrationsWorkspace one uemActions
Get Workspace ONE app
Get one public or internal application by id.
apps.get · Workspace ONE UEM · v1
Details
Scopes
ws1.apps.read
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
application_id | string | Yes | minLength 1; maxLength 128 |
app_type | string | No | enum public | internal |
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 |
bundle_id | string | No | maxLength 320 |
application_type | string | No | maxLength 128 |
platform | string | No | maxLength 128 |
status | string | No | maxLength 128 |
version | string | No | maxLength 128 |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"application_id": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"app_type": {
"type": "string",
"enum": [
"public",
"internal"
]
}
},
"required": [
"application_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
},
"bundle_id": {
"type": "string",
"maxLength": 320
},
"application_type": {
"type": "string",
"maxLength": 128
},
"platform": {
"type": "string",
"maxLength": 128
},
"status": {
"type": "string",
"maxLength": 128
},
"version": {
"type": "string",
"maxLength": 128
}
},
"required": [
"id"
]
}