Skip to main content
FuseFuse
IntegrationsMicrosoft teamsActions

Create Microsoft Teams channel

Create a channel in a team.

Agent markdown

channels.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

  • Channel.Create

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
team_idstringYesminLength 1; maxLength 128
display_namestringYesminLength 1; maxLength 256
descriptionstringNomaxLength 1024
membership_typestringYesenum standard | private | shared

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
idstringYes
team_idstringYes
display_namestringYes
descriptionstringNo
membership_typestringYesenum standard | private | shared

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "team_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128
    },
    "display_name": {
      "type": "string",
      "minLength": 1,
      "maxLength": 256
    },
    "description": {
      "type": "string",
      "maxLength": 1024
    },
    "membership_type": {
      "type": "string",
      "enum": [
        "standard",
        "private",
        "shared"
      ]
    }
  },
  "required": [
    "team_id",
    "display_name",
    "membership_type"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "id": {
      "type": "string"
    },
    "team_id": {
      "type": "string"
    },
    "display_name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "membership_type": {
      "type": "string",
      "enum": [
        "standard",
        "private",
        "shared"
      ]
    }
  },
  "required": [
    "id",
    "team_id",
    "display_name",
    "membership_type"
  ]
}