List Users
List all active, deactivated, and pending users in the organization.
Parameters
Parameter | Description |
---|---|
After | Value of "nextMarker" in response. |
Before | Value of "previousMarker" in response. |
Group ID | Filter users to a specific group. |
Limit | Limit the size of the response. 1-200 are the potential values. Default=50. |
Status | Filter users by their status. |
Example Output
{
"data": [
{
"id": "<user_id>",
"type": "user",
"name": "<display_name>",
"email": "<email>",
"status": "ACTIVE",
"groups": [
{
"type": "group",
"id": "<group_id>"
},
{
"type": "group",
"id": "<group_id>"
}
]
}
],
"nextMarker": null,
"previousMarker": null,
"limit": 20,
"count": 4
}
Workflow Library Example
List Users with Split and Send Results Via Email
Preview this Workflow on desktop