Skip to main content
FuseFuse
IntegrationsMicrosoft teamsActions

Update Microsoft Teams channel

Update a channel display name or description.

Agent markdown

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

  • ChannelSettings.ReadWrite.All

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
team_idstringYesminLength 1; maxLength 128
channel_idstringYesminLength 1; maxLength 128
display_namestringNominLength 1; maxLength 256
descriptionstringNomaxLength 1024

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
    },
    "channel_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128
    },
    "display_name": {
      "type": "string",
      "minLength": 1,
      "maxLength": 256
    },
    "description": {
      "type": "string",
      "maxLength": 1024
    }
  },
  "required": [
    "team_id",
    "channel_id"
  ]
}
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"
  ]
}