IntegrationsOktaActions
Assign Okta app user
Assign a user directly to an Okta application.
apps.users.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 |
user_id | string | Yes | minLength 1; maxLength 128 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
app_id | string | Yes | minLength 1; maxLength 128 |
user_id | string | Yes | minLength 1; maxLength 128 |
scope | string | Yes | enum USER | GROUP |
status | string | No | minLength 1; maxLength 64 |
created_at | string | No | minLength 1; maxLength 64 |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"app_id": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"user_id": {
"type": "string",
"minLength": 1,
"maxLength": 128
}
},
"required": [
"app_id",
"user_id"
]
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"app_id": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"user_id": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"scope": {
"type": "string",
"enum": [
"USER",
"GROUP"
]
},
"status": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"created_at": {
"type": "string",
"minLength": 1,
"maxLength": 64
}
},
"required": [
"app_id",
"user_id",
"scope"
]
}