Skip to main content
FuseFuse
IntegrationsMicrosoft teamsActions

List Microsoft Teams teams

List teams the connected user can access.

Agent markdown

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

  • Team.ReadBasic.All

Input

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

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
teamsarray<object>Yes
teams[]objectYesadditionalProperties false
teams[].idstringYes
teams[].display_namestringYes
teams[].descriptionstringNo
teams[].visibilitystringNoenum private | public
teams[].is_archivedbooleanNo
next_cursorstringNominLength 1; maxLength 2048

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 2048
    },
    "limit": {
      "type": "integer",
      "minimum": 1,
      "maximum": 100
    }
  }
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "teams": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "id": {
            "type": "string"
          },
          "display_name": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "visibility": {
            "type": "string",
            "enum": [
              "private",
              "public"
            ]
          },
          "is_archived": {
            "type": "boolean"
          }
        },
        "required": [
          "id",
          "display_name"
        ]
      }
    },
    "next_cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 2048
    }
  },
  "required": [
    "teams"
  ]
}