IntegrationsOktaActions
List Okta app groups
List group assignments for an Okta application.
apps.groups.list · Okta · v1
Details
Scopes
okta.apps.read
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
app_id | string | Yes | minLength 1; maxLength 128 |
page_size | integer | No | minimum 1; maximum 200 |
cursor | string | No | minLength 1; maxLength 512 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
assignments | array<object> | Yes | maxItems 200 |
assignments[] | object | Yes | additionalProperties false |
assignments[].app_id | string | Yes | minLength 1; maxLength 128 |
assignments[].group_id | string | Yes | minLength 1; maxLength 128 |
assignments[].priority | integer | No | minimum 0; maximum 1000 |
assignments[].last_updated_at | string | No | minLength 1; maxLength 64 |
next_cursor | string | No | minLength 1; maxLength 512 |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"app_id": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"page_size": {
"type": "integer",
"minimum": 1,
"maximum": 200
},
"cursor": {
"type": "string",
"minLength": 1,
"maxLength": 512
}
},
"required": [
"app_id"
]
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"assignments": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"app_id": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"group_id": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"priority": {
"type": "integer",
"minimum": 0,
"maximum": 1000
},
"last_updated_at": {
"type": "string",
"minLength": 1,
"maxLength": 64
}
},
"required": [
"app_id",
"group_id"
]
},
"maxItems": 200
},
"next_cursor": {
"type": "string",
"minLength": 1,
"maxLength": 512
}
},
"required": [
"assignments"
]
}