Skip to main content
Get a list of users in a specified organization with optional filtering.
External DocumentationTo learn more, visit the Flexera documentation.

Parameters

ParameterDescription
FilterA filtering criteria to apply using standard REST query syntax. Supported fields include - email, firstName, lastName, lastUILogin, lastAPILogin.

For additional information about the filter parameter, refer to the Flexera API documentation.
Order ByThe field and sort direction for ordering the results in the format of field asc|desc.

For example: firstName asc or lastName desc.
Org IDThe ID of the organization (tenant).

Example Output

{
	"kind": "iam#org-user-list",
	"nextPage": "/iam/v1/orgs/123/users?skipToken=19u2349",
	"values": [
		{
			"createdAt": "2022-03-24T21:12:13.020627Z",
			"email": "jsmith@flexera.com",
			"firstName": "Juan",
			"id": 1234,
			"kind": "iam#user",
			"lastAPILogin": "2023-02-22T21:11:10.020627Z",
			"lastName": "Smith Collins",
			"lastUILogin": "2023-02-22T21:11:10.020627Z",
			"ref": "iam#user:1234",
			"updatedAt": "2023-02-22T21:11:10.020627Z"
		},
		{
			"createdAt": "2022-03-24T21:12:13.020627Z",
			"email": "djohnson@flexera.com",
			"firstName": "David",
			"id": 567,
			"kind": "iam#user",
			"lastAPILogin": "2023-02-22T21:11:10.020627Z",
			"lastName": "Johnson Brown",
			"lastUILogin": "2023-02-22T21:11:10.020627Z",
			"ref": "iam#user:567",
			"updatedAt": "2023-02-22T21:11:10.020627Z"
		}
	]
}

Workflow Library Example

List Users with Flexera and Send Results Via Email
Workflow LibraryPreview this Workflow on desktop