Skip to main content
FuseFuse
IntegrationsMicrosoft teamsActions

List Microsoft Teams chat members

List members of a chat.

Agent markdown

chats.members.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

  • Chat.ReadBasic

Input

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

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
membersarray<object>Yes
members[]objectYesadditionalProperties false
members[].idstringYes
members[].user_idstringYes
members[].display_namestringNo
members[].emailstringNo
members[].rolesarray<string>Yes
members[].roles[]stringYes
next_cursorstringNominLength 1; maxLength 2048

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "chat_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128
    },
    "cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 2048
    },
    "limit": {
      "type": "integer",
      "minimum": 1,
      "maximum": 100
    }
  },
  "required": [
    "chat_id"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "members": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "id": {
            "type": "string"
          },
          "user_id": {
            "type": "string"
          },
          "display_name": {
            "type": "string"
          },
          "email": {
            "type": "string"
          },
          "roles": {
            "type": "array",
            "items": {
              "type": "string"
            }
          }
        },
        "required": [
          "id",
          "user_id",
          "roles"
        ]
      }
    },
    "next_cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 2048
    }
  },
  "required": [
    "members"
  ]
}