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

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`.

<Note>
  External Documentation

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

## Parameters

<div className="integrations-table">
  | Parameter | Description                                                                                                  |
  | --------- | ------------------------------------------------------------------------------------------------------------ |
  | Filter    | Filters results (rows). For example: startswith(displayName,'S')                                             |
  | Select    | Filters properties (columns). For example: id,displayName.                                                   |
  | Team ID   | The ID of the team to list the channels of.<br /><br />Can be obtained by using the `List All Teams` action. |
</div>

## Example Output

```json theme={"dark"}
{
	"@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](https://library.blinkops.com/workflows/list-channels-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-channels-with-microsoft-teams-and-send-results-via-email/canvas" />
</div>
