List all active, deactivated, and pending users in the organization.

Parameters

ParameterDescription
AfterValue of “nextMarker” in response.
BeforeValue of “previousMarker” in response.
Group IDFilter users to a specific group.
LimitLimit the size of the response. 1-200 are the potential values. Default=50.
StatusFilter users by their status.

Example Output

{
	"data": [
		{
			"id": "<string>",
			"type": "<string>",
			"name": "<string>",
			"email": "<string>",
			"status": "<string>",
			"2fa": false,
			"groups": [
				{
					"id": "<string>",
					"type": "<string>"
				}
			]
		}
	],
	"nextMarker": null,
	"previousMarker": null,
	"limit": 13,
	"count": 1
}

Workflow Library Example

List Users with Split and Send Results Via Email

Preview this Workflow on desktop