Get the members of a team.

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

External Documentation

To learn more, visit the Microsoft Teams documentation.

Parameters

ParameterDescription
FilterFilters results (rows). For example: startswith(displayName,‘S’)
LimitSpecify the number of team members returned per page in the response. Valid range is 1-999.
Return All PagesAutomatically fetch all resources, page by page.
SelectFilters properties (columns). For example: displayName, userId.
Team IDThe ID of the team to list members of.

Can be obtained by using the List All Teams action.

Example Output

{
	"@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

Preview this Workflow on desktop