Skip to main content
FuseFuse
IntegrationsMicrosoft teamsActions

Delete Microsoft Teams channel

Delete a channel from a team.

Agent markdown

channels.delete · Microsoft Teams · v1

Details

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

Scopes

  • Channel.Delete.All

Input

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

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
idstringYesminLength 1; maxLength 128

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "team_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128
    },
    "channel_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128
    }
  },
  "required": [
    "team_id",
    "channel_id"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128
    }
  },
  "required": [
    "id"
  ]
}