IntegrationsOktaActions
Assign Okta app group
Assign a group to an Okta application.
apps.groups.assign · Okta · v1
Details
Scopes
okta.apps.manage
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
app_id | string | Yes | minLength 1; maxLength 128 |
group_id | string | Yes | minLength 1; maxLength 128 |
priority | integer | No | minimum 0; maximum 1000 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
app_id | string | Yes | minLength 1; maxLength 128 |
group_id | string | Yes | minLength 1; maxLength 128 |
priority | integer | No | minimum 0; maximum 1000 |
last_updated_at | string | No | minLength 1; maxLength 64 |
Raw schema
Input
{
"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
}
},
"required": [
"app_id",
"group_id"
]
}Output
{
"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"
]
}