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

Team search with paging.

## Parameters

<div className="integrations-table">
  | Parameter      | Description                                                                                                                                                                            |
  | -------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Name           | The name parameter returns a single team if the parameter matches the name field.                                                                                                      |
  | Page           | The page number. The default value is 1.                                                                                                                                               |
  | Query          | The query parameter is optional and it will return results where the query value is contained in the name field. Query values with spaces need to be URL encoded e.g. query=my%20team. |
  | Teams Per Page | The number of users to be returned per page. The default value is 1000                                                                                                                 |
</div>

## Example Output

```json theme={"dark"}
{
	"totalCount": 1,
	"teams": [
		{
			"id": 1,
			"orgId": 1,
			"name": "MyTestTeam",
			"email": "",
			"avatarUrl": "\/avatar\/3f49c15916554246daa714b9bd0ee398",
			"memberCount": 1
		}
	],
	"page": 1,
	"perPage": 1000
}
```

## Workflow Library Example

[Get Teams with Grafana and Send Results Via Email](https://library.blinkops.com/workflows/get-teams-with-grafana-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/get-teams-with-grafana-and-send-results-via-email/canvas" />
</div>
