IntegrationsWorkspace one uemActions
List Workspace ONE profiles
Search device profiles in Workspace ONE UEM.
profiles.list · Workspace ONE UEM · v1
Details
Scopes
ws1.profiles.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 |
profiles | array<object> | Yes | maxItems 100 |
profiles[] | object | Yes | additionalProperties false |
profiles[].id | string | Yes | minLength 1; maxLength 128 |
profiles[].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}$ |
profiles[].name | string | No | maxLength 512 |
profiles[].platform | string | No | maxLength 128 |
profiles[].status | string | No | maxLength 128 |
profiles[].organization_group_id | string | No | minLength 1; maxLength 128 |
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": {
"profiles": {
"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
},
"platform": {
"type": "string",
"maxLength": 128
},
"status": {
"type": "string",
"maxLength": 128
},
"organization_group_id": {
"type": "string",
"minLength": 1,
"maxLength": 128
}
},
"required": [
"id"
]
},
"maxItems": 100
},
"next_cursor": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"total_count": {
"type": "integer",
"minimum": 0
}
},
"required": [
"profiles"
]
}