IntegrationsMicrosoft teamsActions
List Microsoft Teams chat members
List members of a chat.
chats.members.list · Microsoft Teams · v1
Details
Scopes
Chat.ReadBasic
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
chat_id | string | Yes | minLength 1; maxLength 128 |
cursor | string | No | minLength 1; maxLength 2048 |
limit | integer | No | minimum 1; maximum 100 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
members | array<object> | Yes | — |
members[] | object | Yes | additionalProperties false |
members[].id | string | Yes | — |
members[].user_id | string | Yes | — |
members[].display_name | string | No | — |
members[].email | string | No | — |
members[].roles | array<string> | Yes | — |
members[].roles[] | string | Yes | — |
next_cursor | string | No | minLength 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"
]
}