IntegrationsMicrosoft teamsActions
List Microsoft Teams teams
List teams the connected user can access.
teams.list · Microsoft Teams · v1
Details
Scopes
Team.ReadBasic.All
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 |
teams | array<object> | Yes | — |
teams[] | object | Yes | additionalProperties false |
teams[].id | string | Yes | — |
teams[].display_name | string | Yes | — |
teams[].description | string | No | — |
teams[].visibility | string | No | enum private | public |
teams[].is_archived | boolean | 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": {
"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"
]
}