> ## 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 Team Members

Get the members of a team.

* Microsoft Graph permissions to access the action via **App Registration**: `TeamMember.ReadWrite.All`, `TeamMember.Read.All`.

<Note>
  External Documentation

  To learn more, visit the [Microsoft Teams documentation](https://learn.microsoft.com/en-us/graph/api/team-list-members?view=graph-rest-1.0\&tabs=http).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter        | Description                                                                                             |
  | ---------------- | ------------------------------------------------------------------------------------------------------- |
  | Filter           | Filters results (rows). For example: startswith(displayName,'S')                                        |
  | Limit            | Specify the number of team members returned per page in the response. Valid range is 1-999.             |
  | Return All Pages | Automatically fetch all resources, page by page.                                                        |
  | Select           | Filters properties (columns). For example: displayName, userId.                                         |
  | Team ID          | The ID of the team to list members of.<br /><br />Can be obtained by using the `List All Teams` action. |
</div>

## Example Output

```json theme={"dark"}
{
	"@odata.context": "<string>",
	"@odata.count": 726,
	"value": [
		{
			"@odata.type": "<string>",
			"id": "<string>",
			"roles": [
				"<string>"
			],
			"displayName": "<string>",
			"visibleHistoryStartDateTime": "2021-03-13T08:15:26",
			"userId": "<string>",
			"email": "<string>",
			"tenantId": "<string>"
		}
	]
}
```

## Workflow Library Example

[List Team Members with Microsoft Teams and Send Results Via Email](https://library.blinkops.com/workflows/list-team-members-with-microsoft-teams-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-team-members-with-microsoft-teams-and-send-results-via-email/canvas" />
</div>
