IntegrationsMicrosoft teamsActions
List Microsoft Teams channels
List channels in a team.
channels.list · Microsoft Teams · v1
Details
Scopes
Channel.ReadBasic.All
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
team_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 |
channels | array<object> | Yes | — |
channels[] | object | Yes | additionalProperties false |
channels[].id | string | Yes | — |
channels[].team_id | string | Yes | — |
channels[].display_name | string | Yes | — |
channels[].description | string | No | — |
channels[].membership_type | string | Yes | enum standard | private | shared |
next_cursor | string | No | minLength 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"
]
}