IntegrationsMicrosoft teamsActions
Get Microsoft Teams team
Get one team by id.
teams.get · Microsoft Teams · v1
Details
Scopes
Team.ReadBasic.All
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
team_id | string | Yes | minLength 1; maxLength 128 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
id | string | Yes | — |
display_name | string | Yes | — |
description | string | No | — |
visibility | string | No | enum private | public |
is_archived | boolean | No | — |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"team_id": {
"type": "string",
"minLength": 1,
"maxLength": 128
}
},
"required": [
"team_id"
]
}Output
{
"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"
]
}