Skip to main content
FuseFuse
IntegrationsMicrosoft teamsActions

List Microsoft Teams channels

List channels in a team.

Agent markdown

channels.list · Microsoft Teams · v1

Details

Risk
Read
Idempotency
Safe
Availability
Default
Exposure
REST, SDK, MCP
MCP hints
readOnly=true, destructive=false, idempotent=true, openWorld=true

Scopes

  • Channel.ReadBasic.All

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
team_idstringYesminLength 1; maxLength 128
cursorstringNominLength 1; maxLength 2048
limitintegerNominimum 1; maximum 100

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
channelsarray<object>Yes
channels[]objectYesadditionalProperties false
channels[].idstringYes
channels[].team_idstringYes
channels[].display_namestringYes
channels[].descriptionstringNo
channels[].membership_typestringYesenum standard | private | shared
next_cursorstringNominLength 1; maxLength 2048

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "team_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128
    },
    "cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 2048
    },
    "limit": {
      "type": "integer",
      "minimum": 1,
      "maximum": 100
    }
  },
  "required": [
    "team_id"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "channels": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "id": {
            "type": "string"
          },
          "team_id": {
            "type": "string"
          },
          "display_name": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "membership_type": {
            "type": "string",
            "enum": [
              "standard",
              "private",
              "shared"
            ]
          }
        },
        "required": [
          "id",
          "team_id",
          "display_name",
          "membership_type"
        ]
      }
    },
    "next_cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 2048
    }
  },
  "required": [
    "channels"
  ]
}