Skip to main content
FuseFuse
IntegrationsMicrosoft teamsActions

Unarchive Microsoft Teams team

Unarchive a team. May return an async operation reference to poll.

Agent markdown

teams.unarchive · Microsoft Teams · v1

Details

Risk
Write
Idempotency
Safe
Availability
Default
Exposure
REST, SDK, MCP
MCP hints
readOnly=false, destructive=false, idempotent=true, openWorld=true

Scopes

  • TeamSettings.ReadWrite.All

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
team_idstringYesminLength 1; maxLength 128

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
idstringYes
team_idstringYes
statusstringYes
operation_typestringNo
target_resource_idstringNo

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"
  ]
}