> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Application Users By ID

Enumerates all assigned application users for an application.

<Note>
  External Documentation

  To learn more, visit the [Okta documentation](https://developer.okta.com/docs/reference/api/oauth-clients/#list-client-applications).
</Note>

## Parameters

<div className="integrations-table">
  | 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.                                                                                                                                                                          |
</div>

## Example Output

```json theme={"dark"}
[
	{
		"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>"
			}
		}
	}
]
```

## Workflow Library Example

[List Application Users by Id with Okta and Send Results Via Email](https://library.blinkops.com/workflows/list-application-users-by-id-with-okta-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/list-application-users-by-id-with-okta-and-send-results-via-email/canvas" />
</div>
