IntegrationsOktaActions
List Okta users
List users in the connected Okta org with curated filters.
users.list · Okta · v1
Details
Scopes
okta.users.read
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
page_size | integer | No | minimum 1; maximum 200 |
cursor | string | No | minLength 1; maxLength 512 |
status | string | No | minLength 1; maxLength 64 |
q | string | No | minLength 1; maxLength 256 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
users | array<object> | Yes | maxItems 200 |
users[] | object | Yes | additionalProperties false |
users[].id | string | Yes | minLength 1; maxLength 128 |
users[].status | string | Yes | minLength 1; maxLength 64 |
users[].transitioning_to_status | string | No | minLength 1; maxLength 64 |
users[].created_at | string | No | minLength 1; maxLength 64 |
users[].activated_at | string | No | minLength 1; maxLength 64 |
users[].last_login_at | string | No | minLength 1; maxLength 64 |
users[].profile | object | Yes | additionalProperties false |
users[].profile.login | string | Yes | minLength 1; maxLength 320 |
users[].profile.email | string | Yes | minLength 3; maxLength 320 |
users[].profile.first_name | string | Yes | minLength 1; maxLength 256 |
users[].profile.last_name | string | Yes | minLength 1; maxLength 256 |
users[].profile.display_name | string | No | minLength 1; maxLength 256 |
users[].profile.title | string | No | maxLength 256 |
users[].profile.department | string | No | maxLength 256 |
users[].profile.manager_id | string | No | minLength 1; maxLength 128 |
users[].profile.employee_number | string | No | maxLength 128 |
users[].profile.organization | string | No | maxLength 256 |
users[].profile.cost_center | string | No | maxLength 128 |
next_cursor | string | No | minLength 1; maxLength 512 |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"page_size": {
"type": "integer",
"minimum": 1,
"maximum": 200
},
"cursor": {
"type": "string",
"minLength": 1,
"maxLength": 512
},
"status": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"q": {
"type": "string",
"minLength": 1,
"maxLength": 256
}
}
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"users": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"status": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"transitioning_to_status": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"created_at": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"activated_at": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"last_login_at": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"profile": {
"type": "object",
"additionalProperties": false,
"properties": {
"login": {
"type": "string",
"minLength": 1,
"maxLength": 320
},
"email": {
"type": "string",
"minLength": 3,
"maxLength": 320
},
"first_name": {
"type": "string",
"minLength": 1,
"maxLength": 256
},
"last_name": {
"type": "string",
"minLength": 1,
"maxLength": 256
},
"display_name": {
"type": "string",
"minLength": 1,
"maxLength": 256
},
"title": {
"type": "string",
"maxLength": 256
},
"department": {
"type": "string",
"maxLength": 256
},
"manager_id": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"employee_number": {
"type": "string",
"maxLength": 128
},
"organization": {
"type": "string",
"maxLength": 256
},
"cost_center": {
"type": "string",
"maxLength": 128
}
},
"required": [
"login",
"email",
"first_name",
"last_name"
]
}
},
"required": [
"id",
"status",
"profile"
]
},
"maxItems": 200
},
"next_cursor": {
"type": "string",
"minLength": 1,
"maxLength": 512
}
},
"required": [
"users"
]
}