External DocumentationTo learn more, visit the Rapid7 InsightIDR documentation.
Actions
List Users
Get a list of users.

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 |
|---|---|
| Page | The number of the page to return results from (zero-based). |
| Page Size | The maximum number of results to return per page. Valid range is 1-100 |
| Return All Pages | Automatically fetch all resources, page by page. |
| Search | An array of searching criteria objects to search users with. For Example: Note: Valid searching fields are - first_name,last_name,name and domain. |
| Sort | An array of sorting criteria objects to search users with. For Example: Note: Valid sorting fields are - first_name,last_name and name. |
{
"search": [
{
"field": "name",
"operator": "EQUALS",
"value": {}
}
],
"sort": [
{
"field": "name",
"order": "ASC"
}
]
}
Was this page helpful?