IntegrationsWorkspace one uemActions
List Workspace ONE organization groups
Search organization groups in Workspace ONE UEM.
organization_groups.list · Workspace ONE UEM · v1
Details
Scopes
ws1.organization_groups.read
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
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 |
organization_groups | array<object> | Yes | maxItems 100 |
organization_groups[] | object | Yes | additionalProperties false |
organization_groups[].id | string | Yes | minLength 1; maxLength 128 |
organization_groups[].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}$ |
organization_groups[].name | string | No | maxLength 512 |
organization_groups[].group_id | string | No | maxLength 128 |
organization_groups[].location_group_type | string | No | maxLength 128 |
organization_groups[].country | string | No | maxLength 128 |
organization_groups[].locale | string | No | maxLength 64 |
organization_groups[].created_on | string | No | minLength 1; maxLength 64 |
next_cursor | string | No | minLength 1; maxLength 64 |
total_count | integer | No | minimum 0 |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"page_size": {
"type": "integer",
"minimum": 1,
"maximum": 100
},
"cursor": {
"type": "string",
"minLength": 1,
"maxLength": 64
}
}
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"organization_groups": {
"type": "array",
"items": {
"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"
]
},
"maxItems": 100
},
"next_cursor": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"total_count": {
"type": "integer",
"minimum": 0
}
},
"required": [
"organization_groups"
]
}