Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt

Use this file to discover all available pages before exploring further.

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
Workflow LibraryPreview this Workflow on desktop