IntegrationsOktaActions
List Okta user assigned apps
List assigned application links for one Okta user.
users.apps.list · Okta · v1
Details
Scopes
okta.users.read
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
user_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 |
apps | array<object> | Yes | maxItems 200 |
apps[] | object | Yes | additionalProperties false |
apps[].app_instance_id | string | Yes | minLength 1; maxLength 128 |
apps[].app_name | string | Yes | minLength 1; maxLength 256 |
apps[].label | string | Yes | minLength 1; maxLength 256 |
apps[].link_url | string | No | maxLength 2048 |
apps[].hidden | boolean | No | — |
next_cursor | string | No | minLength 1; maxLength 512 |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"user_id": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"page_size": {
"type": "integer",
"minimum": 1,
"maximum": 200
},
"cursor": {
"type": "string",
"minLength": 1,
"maxLength": 512
}
},
"required": [
"user_id"
]
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"apps": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"app_instance_id": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"app_name": {
"type": "string",
"minLength": 1,
"maxLength": 256
},
"label": {
"type": "string",
"minLength": 1,
"maxLength": 256
},
"link_url": {
"type": "string",
"maxLength": 2048
},
"hidden": {
"type": "boolean"
}
},
"required": [
"app_instance_id",
"app_name",
"label"
]
},
"maxItems": 200
},
"next_cursor": {
"type": "string",
"minLength": 1,
"maxLength": 512
}
},
"required": [
"apps"
]
}