list_users
Retrieve and manage Okta user data with filtering, sorting, and pagination options to streamline user management tasks.
Instructions
List users from Okta with optional filtering and pagination
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| after | No | Cursor for pagination, obtained from previous response | |
| filter | No | SCIM filter expression to filter users | |
| limit | No | Maximum number of users to return (default: 50, max: 200) | |
| search | No | Free-form text search across multiple fields | |
| sortBy | No | Field to sort results by | |
| sortOrder | No | Sort order (asc or desc, default: asc) |
Input Schema (JSON Schema)
{
"properties": {
"after": {
"description": "Cursor for pagination, obtained from previous response",
"type": "string"
},
"filter": {
"description": "SCIM filter expression to filter users",
"type": "string"
},
"limit": {
"description": "Maximum number of users to return (default: 50, max: 200)",
"type": "number"
},
"search": {
"description": "Free-form text search across multiple fields",
"type": "string"
},
"sortBy": {
"description": "Field to sort results by",
"type": "string"
},
"sortOrder": {
"description": "Sort order (asc or desc, default: asc)",
"enum": [
"asc",
"desc"
],
"type": "string"
}
},
"type": "object"
}