Skip to main content
FuseFuse
IntegrationsWorkspace one uemActions

Get Workspace ONE app

Get one public or internal application by id.

Agent markdown

apps.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.apps.read

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
application_idstringYesminLength 1; maxLength 128
app_typestringNoenum public | internal

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
bundle_idstringNomaxLength 320
application_typestringNomaxLength 128
platformstringNomaxLength 128
statusstringNomaxLength 128
versionstringNomaxLength 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"
  ]
}