Skip to main content
FuseFuse
IntegrationsWorkspace one uemActions

Get Workspace ONE organization group

Get one organization group by UUID.

Agent markdown

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

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
organization_group_uuidstringYesminLength 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}$

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
group_idstringNomaxLength 128
location_group_typestringNomaxLength 128
countrystringNomaxLength 128
localestringNomaxLength 64
created_onstringNominLength 1; maxLength 64

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "organization_group_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}$"
    }
  },
  "required": [
    "organization_group_uuid"
  ]
}
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
    },
    "group_id": {
      "type": "string",
      "maxLength": 128
    },
    "location_group_type": {
      "type": "string",
      "maxLength": 128
    },
    "country": {
      "type": "string",
      "maxLength": 128
    },
    "locale": {
      "type": "string",
      "maxLength": 64
    },
    "created_on": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    }
  },
  "required": [
    "id"
  ]
}