IntegrationsMicrosoft teamsActions
List Microsoft Teams chats
List chats for the connected user.
chats.list · Microsoft Teams · v1
Details
Scopes
Chat.ReadBasic
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
cursor | string | No | minLength 1; maxLength 2048 |
limit | integer | No | minimum 1; maximum 100 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
chats | array<object> | Yes | — |
chats[] | object | Yes | additionalProperties false |
chats[].id | string | Yes | — |
chats[].chat_type | string | Yes | enum oneOnOne | group | meeting |
chats[].topic | string | No | — |
next_cursor | string | No | minLength 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": {
"chats": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string"
},
"chat_type": {
"type": "string",
"enum": [
"oneOnOne",
"group",
"meeting"
]
},
"topic": {
"type": "string"
}
},
"required": [
"id",
"chat_type"
]
}
},
"next_cursor": {
"type": "string",
"minLength": 1,
"maxLength": 2048
}
},
"required": [
"chats"
]
}