External DocumentationTo learn more, visit the Okta documentation.
Actions
List Application Users By ID
Enumerates all assigned application users for an application.

Preview this Workflow on desktop
Was this page helpful?
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
| Parameter | Description |
|---|---|
| Application ID | ID of an application. |
| Limit | Specifies the number of results for a page (maximum 500). |
| Query | Returns a filtered list of app users. The value is matched against an application user profile’s userName and email. Note: This operation only supports startsWith that matches what the string starts with to the query. |
| Return All Pages | Automatically fetch all resources, page by page. |
[
{
"id": "<string>",
"externalId": null,
"created": "2005-09-18T10:48:02.184Z",
"lastUpdated": "2004-07-23T13:54:20.647Z",
"scope": "<string>",
"status": "<string>",
"statusChanged": "2018-06-15T16:13:03.340Z",
"passwordChanged": null,
"syncState": "<string>",
"credentials": null,
"profile": {},
"_links": {
"app": {
"href": "<string>"
},
"user": {
"href": "<string>"
}
}
},
{
"id": "<string>",
"externalId": null,
"created": "2021-02-24T10:40:37.286Z",
"lastUpdated": "2015-08-02T15:14:38.682Z",
"scope": "<string>",
"status": "<string>",
"statusChanged": "2020-01-22T13:32:48.380Z",
"passwordChanged": null,
"syncState": "<string>",
"credentials": null,
"profile": {},
"_links": {
"app": {
"href": "<string>"
},
"user": {
"href": "<string>"
}
}
}
]
Was this page helpful?