Retrieve the list of channels in the given team.

  • Microsoft Graph permissions to access the action via App Registration: Channel.ReadBasic.All, ChannelSettings.Read.All, ChannelSettings.ReadWrite.All, Directory.Read.All, Directory.ReadWrite.All, Group.Read.All, Group.ReadWrite.All.

External Documentation

To learn more, visit the Microsoft Teams documentation.

Parameters

ParameterDescription
FilterFilters results (rows). For example: startswith(displayName,‘S’)
SelectFilters properties (columns). For example: id,displayName.
Team IDThe ID of the team to list the channels of.

Can be obtained by using the List All Teams action.

Example Output

{
	"@odata.context": "https://graph.microsoft.com/v1.0/$metadata#teams('6a720ba5-7373-463b-bc9f-4cd04b5c6742')/channels",
	"@odata.count": 1,
	"value": [
		{
			"id": "19:LpxShHZZh9utjNcEmUS5aOEP9ASw85OUn05NcWYAhX81@thread.tacv2",
			"createdDateTime": null,
			"displayName": "shared channel-01",
			"description": "this is the shared channel description",
			"isFavoriteByDefault": null,
			"email": "",
			"tenantId": "<string>",
			"webUrl": "https://teams.microsoft.com/l/channel/19%3ALpxShHZZh9utjNcEmUS5aOEP9ASw85OUn05NcWYAhX81%40thread.tacv2/shared%20channel-01?groupId=6a720ba5-7373-463b-bc9f-4cd04b5c6742&tenantId=df81db53-c7e2-418a-8803-0e68d4b88607",
			"membershipType": "shared",
			"isArchived": false
		}
	]
}

Workflow Library Example

List Channels with Microsoft Teams and Send Results Via Email

Preview this Workflow on desktop