IntegrationsOktaActions
List Okta app users
List user assignments for an Okta application.
apps.users.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[].user_id | string | Yes | minLength 1; maxLength 128 |
assignments[].scope | string | Yes | enum USER | GROUP |
assignments[].status | string | No | minLength 1; maxLength 64 |
assignments[].created_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
},
"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"
]
},
"maxItems": 200
},
"next_cursor": {
"type": "string",
"minLength": 1,
"maxLength": 512
}
},
"required": [
"assignments"
]
}