Skip to main content
FuseFuse
IntegrationsMicrosoft teamsActions

Create Microsoft Teams team

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

Agent markdown

teams.create · Microsoft Teams · v1

Details

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

Scopes

  • Team.Create

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
display_namestringYesminLength 1; maxLength 256
descriptionstringNomaxLength 1024
visibilitystringNoenum private | public
owner_user_idsarray<string>NominItems 1; maxItems 20
owner_user_ids[]stringYesminLength 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": {
    "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"
  ]
}