Enumerates all assigned application users for an application.

External Documentation

To learn more, visit the Okta documentation.

Parameters

ParameterDescription
Application IDID of an application.
LimitSpecifies the number of results for a page (maximum 500).
QueryReturns 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 PagesAutomatically fetch all resources, page by page.

Example Output

[
	{
		"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

Preview this Workflow on desktop