IntegrationsMicrosoft teamsActions
Archive Microsoft Teams team
Archive a team. May return an async operation reference to poll.
teams.archive · Microsoft Teams · v1
Details
Scopes
TeamSettings.ReadWrite.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 | — |
team_id | string | Yes | — |
status | string | Yes | — |
operation_type | string | No | — |
target_resource_id | string | 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"
},
"team_id": {
"type": "string"
},
"status": {
"type": "string"
},
"operation_type": {
"type": "string"
},
"target_resource_id": {
"type": "string"
}
},
"required": [
"id",
"team_id",
"status"
]
}