> ## 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.

# Get Groups

Get a list of groups in your Blink tenant.

## Parameters

<div className="integrations-table">
  | Parameter | Description                                                                                                                                                                                                                                                                                                                           |
  | --------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Limit     | Limit the number of results.                                                                                                                                                                                                                                                                                                          |
  | Name      | Filter groups by their name. Add % at the beginning of the name to<br />search names ending with your input. Add % at the end of the name to<br />search for names beginning with your input. Add % both at the<br />beginning and end of the name to search for names containing your<br />input. For example: %name, name%, %name%. |
  | Offset    | The offset of the results.                                                                                                                                                                                                                                                                                                            |
</div>

## Example Output

```json theme={"dark"}
{
	"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](https://library.blinkops.com/workflows/list-blink-group-details)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/list-blink-group-details/canvas" />
</div>
