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

List all group resources available to the user.

## Example Output

```json theme={"dark"}
{
	"schemas": [
		"urn:ietf:params:scim:api:messages:2.0:ListResponse"
	],
	"totalResults": 2,
	"startIndex": 1,
	"itemsPerPage": 2,
	"Resources": [
		{
			"schemas": [
				"urn:ietf:params:scim:schemas:core:2.0:Group"
			],
			"id": "561631fq14ed41872a8eea4c8aa2b38cda9749812cc55c00",
			"displayName": "Test-API",
			"members": [
				{
					"value": "23a35c2723d34c03b4c56443c09e7173",
					"display": "Taylor Lee"
				}
			],
			"externalId": "1234",
			"meta": {
				"resourceType": "Group",
				"created": "2022-02-22T04:24:13.000Z",
				"lastModified": "2022-02-22T04:24:13.000Z"
			}
		},
		{
			"schemas": [
				"urn:ietf:params:scim:schemas:core:2.0:Group"
			],
			"id": "123775fe15ed41872a8eea4c8aa2b38cda9749812cc55c99",
			"displayName": "Test Group",
			"members": [
				{
					"value": "23a35c2723d34c03b4c56443c09e7173",
					"display": "Taylor Lee"
				},
				{
					"value": "ghc794f24f4c49f4b5d503a4cb2686e90",
					"display": "Alex Cruz"
				}
			],
			"externalId": "4321",
			"meta": {
				"resourceType": "Group",
				"created": "2022-02-22T04:24:13.000Z",
				"lastModified": "2022-02-22T04:24:13.000Z"
			}
		}
	]
}
```

## Workflow Library Example

[List Groups with Postman Scim and Send Results Via Email](https://library.blinkops.com/workflows/list-groups-with-postman-scim-and-send-results-via-email)

<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-groups-with-postman-scim-and-send-results-via-email/canvas" />
</div>
