Get a list of groups in your Blink tenant.

Parameters

ParameterDescription
LimitLimit the number of results.
NameFilter groups by their name. Add % at the beginning of the name tosearch names ending with your input. Add % at the end of the name tosearch for names beginning with your input. Add % both at thebeginning and end of the name to search for names containing yourinput. For example: %name, name%, %name%.
OffsetThe offset of the results.

Example Output

{
	"limit": 100,
	"offset": 0,
	"total": 1,
	"results": [
		{
			"id": "a1b2c3d4-e5f6-7890-abcd-1234567890ef",
			"created_at": 1735689600000,
			"updated_at": 1735776000000,
			"created_by": "john.doe@example.com",
			"updated_by": "jane.smith@example.com",
			"tenant_id": "x9y8z7w6-v5u4-t3s2-r1q0-fedcba098765",
			"name": "Security Team Alpha",
			"description": "Primary security operations team for monitoring and incident response.",
			"managed": false,
			"users": [
				"alice.johnson@example.com",
				"bob.williams@example.com",
				"charlie.brown@example.com",
				"diana.martinez@example.com"
			]
		}
	]
}

Workflow Library Example

List Blink Group Details

Preview this Workflow on desktop