IntegrationsMicrosoft teamsActions
Create Microsoft Teams team
Create a team. May return an async operation reference to poll.
teams.create · Microsoft Teams · v1
Details
Scopes
Team.Create
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
display_name | string | Yes | minLength 1; maxLength 256 |
description | string | No | maxLength 1024 |
visibility | string | No | enum private | public |
owner_user_ids | array<string> | No | minItems 1; maxItems 20 |
owner_user_ids[] | string | Yes | minLength 1; maxLength 128 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
id | string | Yes | — |
team_id | string | Yes | — |
status | string | Yes | — |
operation_type | string | No | — |
target_resource_id | string | No | — |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"display_name": {
"type": "string",
"minLength": 1,
"maxLength": 256
},
"description": {
"type": "string",
"maxLength": 1024
},
"visibility": {
"type": "string",
"enum": [
"private",
"public"
]
},
"owner_user_ids": {
"type": "array",
"items": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"minItems": 1,
"maxItems": 20
}
},
"required": [
"display_name"
]
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string"
},
"team_id": {
"type": "string"
},
"status": {
"type": "string"
},
"operation_type": {
"type": "string"
},
"target_resource_id": {
"type": "string"
}
},
"required": [
"id",
"team_id",
"status"
]
}