External DocumentationTo learn more, visit the Flexera documentation.
Actions
List Users
Get a list of users in a specified organization with optional filtering.

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 |
|---|---|
| Filter | A 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 By | The field and sort direction for ordering the results in the format of field asc|desc.For example: firstName asc or lastName desc. |
| Org ID | The ID of the organization (tenant). |
{
"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"
}
]
}
Was this page helpful?